html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;

}

ol, ul {
    padding-left: 30px;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    position: relative;
    height: 100%;
}

html {
    background: url(/p/img/backgrounds/0_2560.jpg) center top fixed no-repeat;
    background-size: cover;
}

body {
    width: 100%;
    background: rgba(67, 51, 3, 0.1);
    color: #756f69;
    font-family: "Philosopher", sans-serif;
    font-size: 14px;
    height: auto;
}

a {
    transition: all 0.3s ease;
    color: #efefef;
    text-decoration: none;
}


table {
    width: 100%;
}

table td {
    border-collapse: collapse;
    padding: 25px 40px 25px 40px;
    border: 1px solid #292929;
    vertical-align: middle;
}

table td img {
    vertical-align: middle;
    margin-right: 7px;
}

table thead {
    background: #351d0c96;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 700;

}

table tr td:first-child {
    border-left: none;
}

table tr td:last-child {
    border-right: none;
}

img {
    max-width: 100%;
}

caption {
    margin-bottom: 15px;
}

select {
    background-color: rgb(0 0 0 / 57%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 40px 12px 18px;
    position: relative;
    -webkit-appearance: none;
    background-image: url(../images/arrow-v.png);
    background-position: right 10px center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 450px;
    font-size: 18px;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    -ms-appearance: none;
    appearance: none !important;
    transition: 0.3s;
    cursor: pointer;
}

select:hover {
    border: 1px solid #bb883b;
    box-shadow: 0px 0px 10px 0px rgba(187, 136, 59, 0.4), inset 0px 0px 10px 0px rgba(187, 136, 59, 0.4);
}

input, textarea {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 18px;
    position: relative;
    font-size: 18px;
    width: 100%;
    max-width: none;
    transition: 0.3s;
}

input:hover, textarea:hover {
    border: 1px solid #d14242;
    box-shadow: 0px 0px 10px 0px rgb(187 59 183 / 40%), inset 0px 0px 10px 0px rgb(255 123 172 / 54%);
}

input:focus, textarea:focus {
    border: 1px solid #d14242;
    box-shadow: 0px 0px 10px 0px rgb(187 59 183 / 40%), inset 0px 0px 10px 0px rgb(255 123 172 / 54%);
}

/* ===== ОБНОВЛЁННЫЕ СТИЛИ КНОПОК (В СТИЛЕ ИГРОВОЙ АНКЕТЫ) ===== */
button,
.button {
    background: linear-gradient(145deg, #a0522d, #8b4513);
    border: none;
    border-radius: 8px;
    padding: 10px 10px;
    color: #f5e6d3;
    font-family: "Philosopher", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    height: auto;
    line-height: 0.8;
    border: 1px solid transparent;
}

button:hover,
.button:hover {
    background: linear-gradient(145deg, #8b4513, #5d2906);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4), 0 0 10px rgba(255, 215, 0, 0.2);
    color: #ffd700;
    filter: brightness(1); /* отключаем старый фильтр */
}

button:active,
.button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

button:disabled,
.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(0.5);
    pointer-events: none;
}

/* Специализированные варианты */
.button-success, .green-button {
    background: linear-gradient(145deg, #27ae60, #229954);
}

.button-success:hover, .green-button :hover {
    background: linear-gradient(145deg, #229954, #1e8449);
    color: #fff;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.4);
}

.button-danger {
    background: linear-gradient(145deg, #e74c3c, #c0392b);
}

.button-danger:hover {
    background: linear-gradient(145deg, #c0392b, #a93226);
    color: #fff;
}

.button-warning {
    background: linear-gradient(145deg, #f39c12, #e67e22);
}

.button-warning:hover {
    background: linear-gradient(145deg, #e67e22, #d35400);
    color: #fff;
}

.button-outline {
    background: transparent;
    border: 2px solid #a0522d;
    color: #a0522d;
    box-shadow: none;
    text-shadow: none;
}

.button-outline:hover {
    background: #a0522d;
    color: #f5e6d3;
    border-color: #a0522d;
}


:focus {
    outline: none;
}

::-webkit-input-placeholder {
    color: #9d7f55;
}

::-moz-placeholder {
    color: #9d7f55;
}

:-moz-placeholder {
    color: #9d7f55;
}

:-ms-input-placeholder {
    color: #9d7f55;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.flex {
    display: flex;
}

.flex-c {
    display: flex;
    /*align-items: center;*/
}

.flex-s {
    display: flex;
    justify-content: space-between;
}

.flex-s-c {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-c-c {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bright:hover {
    filter: brightness(120%);
}

.topPanel {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    padding: 2px 0px 24px;
    background: url(../images/top-line.png) bottom center no-repeat;
    transition: 0.2s;
}

.srvlogo {
    width: 24px;
    height: 24px;
}

.topPanel-top {
    /*background: rgba(0,0,0,.9);
    padding: 10px 0px;*/
}

.topPanel-top input {
    /*  background: rgba(83,79,74,.2);*/
}

.menu {
    margin-left: 0px;
}

.menu li {
    min-height: 70px;
    padding-left: 30px;
    display: flex;
    align-items: center;
}

.menu li a {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    text-shadow: 0px 3px 2px rgba(38, 26, 16, .25);
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu li a span {
    font-size: 11px;
    text-transform: none;
    margin-top: 4px;
    color: #cacaca;
}

.menu li a:hover {
    -webkit-filter: brightness(80%);
    filter: brightness(80%);
}


.langBlock {
    display: none;
    position: relative;
}

.langBlock-active {
    position: relative;
    cursor: pointer;
}

.langBlock-active img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px;
    transition: 0.3s;
}

.langBlock-active:before {
    content: "";
    position: absolute;
    background: url(../images/arrow-v.png) no-repeat;
    width: 10px;
    height: 6px;
    left: -15px;
    top: 50%;
    margin-top: -3px;
    opacity: 0.15;
    transition: 0.3s;
}

.langBlock-active:hover img {
    border: 1px solid white;
}

.langBlock-active:hover:before {
    opacity: 1;
}

.langBlock-active.active img {
    border: 1px solid white;
}

.langBlock-active.active:before {
    opacity: 1;
    transform: rotate(180deg);
}

.langBlock-content {
    background: url(../images/dark-fon.png);
    padding: 15px 0px;
    position: absolute;
    border-radius: 7px;
    top: 100%;
    left: -63px;
    margin-top: 14px;
    z-index: 2;
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.4);
}

.langBlock-content:after {
    content: '';
    border: 6px solid transparent;
    border-bottom-color: #222222;
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
}

.langBlock-content li a {
    min-width: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 25px;
}

.langBlock-content li a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.drop-button {
    cursor: pointer;
}

.drop-content {
    display: none;
}

header {
    height: 100%;
    max-height: 1150px;
    position: relative;
}

header .container {
    height: 1080px;
}

.header-shadow {
    background-image: url(../images/smoke_center.png);
    background-position: center bottom;
    background-repeat: repeat-x;
    height: 1080px;
    animation: smoke 18s linear infinite;
    animation-fill-mode: forwards;
}

@keyframes smoke {
    from {
        background-position: 0 bottom;
    }
    to {
        background-position: 1920px bottom;
    }
}

.langBlock-content {
    display: none;
}

.fastPlayBlock {
    position: absolute;
    left: 0;
    bottom: 470px;
    width: 100%;
}

.download-button, .download-button-log {
    background: url(../images/start__btn.png) no-repeat;
    width: 313px;
    height: 94px;
    -webkit-box-shadow: 0px 10px 10px 0px rgba(57, 49, 73, .5);
    box-shadow: 0px 10px 10px 0px rgba(57, 49, 73, .5);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 10px 0px 0px;
}

.download-button-log {
    background: url(../images/start__btn_log.png) no-repeat;
}

.register-zoom {
    background-size: cover;
    zoom: 100%;
}

.download-button span, .download-button-log span {
    color: #fff29a;
    font-size: 11px;
    margin-top: 3px;
    font-weight: 400;
    transition: 0.2s;
}

.download-button:hover, ..download-button-log:hover {
    filter: brightness(120%);
}

.download-button:hover span, ..download-button-log:hover span {
    margin-top: 7px;
}

.fastPlay {
    background: url(../images/dark-fon.png);
    height: 108px;
    width: 258px;
    position: relative;
}

.fastPlay a {
    font-size: 11px;
    color: #fff;
    height: 100px;
    width: 258px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.fastPlay a:hover {
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.6));
}

.fastPlay img {
    margin-bottom: 7px;
}

.fastPlay:after {
    content: "";
    position: absolute;
    height: 60px;
    width: 1px;
    background: rgba(255, 255, 255, 0.05);
    left: 50%;
    top: 24px;
}

.serverBlock {
    position: absolute;
    left: 0;
    bottom: 0px;
}

.radial-stat {
    position: relative;
}

.circle-online {
    background: url(../images/server-bg.png) no-repeat;
    height: 160px;
    width: 160px;
    margin: 0px 30px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.serverInfo {
    position: absolute;
    width: 100px;
    height: 92px;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    padding-top: 25px;
    background: url(../images/arrow-icon.png) center bottom no-repeat;
}

.serverInfo span {
    display: block;
    text-align: center;
    font-weight: 600;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
}

.serverInfo_x {
    font-size: 12px;
    color: #fff;
    margin-bottom: 7px;
}

.serverInfo_online {
    font-size: 24px;
}

.color-orange {
    color: #db5819;
}

.color-green {
    color: #8cc727;
}

.color-red {
    color: #df3b5a;
}

.color-white {
    color: #fff;
}

.infoSeverBlock {
    position: absolute;
    background: url(../images/dark-fon.png);
    padding: 20px 0px;
    width: 200px;
    border-radius: 20px;
    bottom: -20px;
    left: 10px;
    padding-bottom: 200px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5);
    display: none;
}

.infoSeverBlock ul {
    margin-bottom: 20px;
}

.infoSeverBlock ul li a {
    text-align: center;
    display: block;
    color: #867d86;
    font-size: 13px;
    padding: 10px 0px;
}

.infoSeverBlock ul li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.infoSeverBlock .serverStat > div {
    width: 75px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.infoSeverBlock .serverStat > div:last-child {
    border-left: 0px;
}

.infoSeverBlock .serverStat .login-stat {
    color: #867d86;
    font-size: 9px;
    text-align: center;
    text-transform: uppercase;
    padding-top: 11px;
}

.infoSeverBlock .serverStat .login-stat i {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 auto;
    margin-bottom: 7px;
}

.infoSeverBlock .serverStat .login-stat i.online {
    background: url(../images/on-icon.png) no-repeat;
}

.infoSeverBlock .serverStat .login-stat i.offline {
    background: url(../images/off-icon.png) no-repeat;
}

.paralax {
    margin: 0 auto;
    position: relative;
    max-width: 1170px;
}

.paralax .sparks_1 {
    background: url(../images/sparks_1.png) no-repeat;
    width: 872px;
    height: 320px;
    left: -210px;
    top: 220px;
    filter: blur(2px);
}

.paralax .sparks_11 {
    background: url(../images/eagle.png) no-repeat;
    width: 614px;
    height: 245px;
    left: -110px;
    top: 220px;
    filter: blur(0px);
}

.paralax .sparks_2 {
    background: url(../images/sparks_5.png) no-repeat;
    width: 764px;
    height: 424px;
    left: 410px;
    top: 500px;
    filter: blur(2px);
}

.paralax .feathers {
    background: url(../images/feathers.png) no-repeat;
    width: 352px;
    height: 183px;
    left: 1000px;
    top: 400px;
    filter: blur(2px);
}

.paralax .humans {
    background: url(../images/logo.png) no-repeat;
    width: 300px;
    height: 300px;
    left: 90px;
    top: 120px;
    z-index: 2;
    filter: blur(0px);
    background-size: cover;
    border-radius: 50%;
    -webkit-transition: -webkit-transform .8s ease-in-out;
    transition: transform .8s ease-in-out;
    cursor: pointer;
}

.paralax .humans:hover {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.paralax .humans:active {
    -webkit-filter: brightness(80%);
    filter: brightness(80%);
}

.paralax .magmags {
    background: url(../images/mag.png) no-repeat;
    width: 559px;
    height: 799px;
    left: 600px;
    top: 50px;
    z-index: 2;
    filter: blur(0px);
    background-size: cover;
}

.paralax > div {
    position: absolute;
}

.sparks_3 {
    position: absolute;
    background: url(../images/sparks_2.png) no-repeat;
    width: 128px;
    height: 165px;
    bottom: 150px;
    right: 100px;
    animation: sparks_3 3s linear infinite;
    z-index: 1;
    animation-delay: 0.5s;
}

@keyframes sparks_3 {
    0% {
        bottom: 150px;
        right: 100px;
    }
    50% {
        bottom: 250px;
        right: 50px;
        opacity: 1;
        transform: rotate(45deg);
    }
    100% {
        bottom: 350px;
        right: 0px;
        opacity: 0;
        transform: rotate(45deg);
    }
}

.sparks_4 {
    position: absolute;
    background: url(../images/sparks_3.png) no-repeat;
    width: 94px;
    height: 82px;
    bottom: 220px;
    right: 150px;
    animation: sparks_4 2s linear infinite;
    animation-delay: 1s;
    z-index: 1;
}

@keyframes sparks_4 {
    0% {
        bottom: 220px;
        right: 150px;
    }
    95% {
        bottom: 310px;
        right: 0px;
        transform: rotate(45deg);
    }
    100% {
        bottom: 350px;
        right: -30px;
        opacity: 0;
        transform: rotate(45deg);
    }
}

.sparks_5 {
    position: absolute;
    background: url(../images/sparks_4.png) no-repeat;
    width: 191px;
    height: 143px;
    bottom: 160px;
    right: 300px;
    animation: sparks_5 3s linear infinite;
    z-index: 1;
}

@keyframes sparks_5 {
    0% {
        bottom: 160px;
        right: 300px;
    }
    50% {
        bottom: 260px;
        right: 350px;
        opacity: 1;
        transform: rotate(-15deg);
    }
    100% {
        bottom: 360px;
        right: 400px;
        opacity: 0;
        transform: rotate(-30deg);
    }
}

.sparks_6 {
    position: absolute;
    background: url(../images/sparks_3.png) no-repeat;
    width: 94px;
    height: 82px;
    bottom: 250px;
    right: 340px;
    animation: sparks_6 2s linear infinite;
    animation-delay: 1s;
    z-index: 1;
}

@keyframes sparks_6 {
    0% {
        bottom: 250px;
        right: 340px;
    }
    90% {
        bottom: 380px;
        right: 380px;
        transform: rotate(-25deg);
    }
    100% {
        bottom: 430px;
        right: 430px;
        opacity: 0;
        transform: rotate(-25deg);
    }
}

.shadow {
    background: url(../images/smoke_center.png) no-repeat;
    width: 3743px;
    height: 183px;
    left: 0px;
    top: 400px;
    position: absolute;
}

.newsBlock {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 3;
}

.newsBlock > div {
    width: 100%;
    height: 316px;
}

.swiper-news {
    width: 585px;
    height: 315px;
}

.swiper-news .swiper-slide {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.newsPagination {
    position: absolute;
    background: #0a1218;
    right: 30px;
    bottom: 20px;
    width: 120px;
    height: 35px;
    z-index: 9;
}

.swiper-news .swiper-button-next, .swiper-news .swiper-button-prev {
    width: 7px;
    height: 13px;
    background-size: 7px 13px;
    margin-top: -7px;
    filter: brightness(3) grayscale(1);
}

.swiper-news .swiper-pagination {
    color: #d0dce0;
    font-size: 15px;
}

.swiper-news .swiper-pagination-current {
    color: #ffc66d;
}

.sliderLogo {
    position: absolute;
    right: 30px;
    top: 30px;
    transition: 5s;
    opacity: 0;
}

.playButtonSlider {
    position: absolute;
    left: 70px;
    top: -55px;
    display: block;
    height: 50px;
    width: 50px;
    background: url(../images/play-button.png) center no-repeat;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 1.5s;
}

.slider-title {
    position: absolute;
    left: 20px;
    bottom: -140px;
    font-size: 28px;
    #font-style: italic;
    line-height: 1;
    margin-bottom: 0px;
    background: linear-gradient(to right, #fff, #fff);
    -webkit-background-clip: text;
    color: transparent;
    padding-right: 20px;
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.5));
    transition: 1.5s;
    font-weight: 600;
}

.slider-bg {
    position: fixed;
    bottom: 0px;
    background-color: #0000003b;
    width: 100%;
    height: 76px;
    z-index: 0;
}

.swiper-slide-active .sliderLogo {
    opacity: 1;
}

.swiper-slide-active .playButtonSlider {
    top: 55px;
}

.swiper-slide-active .slider-title {
    bottom: 25px;
    z-index: 1;
}

.streamBlock {
    width: 170px;
}

.streamBlock-video {
    display: block;
    width: 170px;
    height: 105px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    transition: 0.3s;
    z-index: 11;
}

.streamBlock-video_info {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #fff;
    width: 100%;
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.streamBlock-video_info i {
    display: block;
    background: url(../images/play-button.png) no-repeat;
    background-size: 18px 18px;
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.streamBlock-video_info span {
    opacity: 0;
    position: absolute;
    right: 10px;
    transition: 0.3s;
}

.streamBlock-video:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    box-shadow: inset 0px 0px 30px 0px rgba(0, 0, 0, 0.8);
}

.streamBlock-video:hover {
    width: 210px;
    height: 130px;
    margin-left: -20px;
    margin-top: -12px;
}

.streamBlock-video:hover:after {
    box-shadow: inset 0px 0px 30px 0px rgba(0, 0, 0, 0.8), 0px 0px 20px 0px rgba(0, 0, 0, 0.6);
}

.streamBlock-video:hover span {
    opacity: 1;
}

.news-block {
    height: 342px;
    width: 100%;
    padding: 0 15px;
}

.news-block-tab-buttons {
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-family: "Philosopher", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.news-block-tab-buttons span {
    display: block;
    height: 55px;
    padding: 0 35px;
    line-height: 52px;
    color: #c7c7c7;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.news-block-tab-buttons span:hover {
    color: #e3c6f9;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(229, 78, 255, 0.5);
}

.news-block-tab-buttons span.active {
    color: #fff;
    font-weight: 700;
}

.news-block-tab-buttons span.active:after {
    content: "";
    background: #e5c3f5;
    height: 4px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.news-message {
    height: 65px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.news-message h3 {
    color: #fff;
    font-size: 13px;
    margin-bottom: 8px;
}

.news-message span {
    color: #867d86;
    font-size: 11px;
}

.tab-block {
    overflow: hidden;
    display: none;
    animation: tab 0.4s linear;
}

.tab-block.active {
    display: block;
}

.news-block-tab {
    padding: 20px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@keyframes tab {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.news {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.news:last-child {
    margin-bottom: 0px;
}

.news a {
    color: #d7d7d7;
    font-size: 17px;
    display: block;
    width: 460px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 3px 0px;
    text-transform: uppercase;
    font-family: "Philosopher", sans-serif;
}

.news a:hover {
    color: #fff;
}

.news .date {
    font-size: 15px;
    color: #ffda59;
    text-shadow: 0 0 10px rgba(255, 157, 103, .5);
    font-weight: 600;
}

.color-green {
    color: #7aa528;
}

.color-blue {
    color: #3d89d6;
}

.color-yellow {
    color: #d2be36;
}

.load-more {
    text-align: center;
    padding-top: 20px;
    text-transform: uppercase;
    font-size: 13px;
}

.load-more a {
    font-size: 13px;
    position: relative;
}

.load-more a:hover {
    color: #fff;
}

.content {
    padding: 40px 0px 60px 0px;
    position: relative;
}

.serversBlock {
    position: relative;
    width: 100%;
}

.serversBlock:after {
    content: "";
    background: url(../images/servers-icon.png) center no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 50%;
    margin-left: -19px;
    top: 50%;
    margin-top: -26px;
    opacity: 0.3;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    padding: 11px;
}

.server-title {
    font-size: 16px;
    background: url(../images/server-icon.png) left center no-repeat;
    padding: 10px 0px 10px 40px;
    position: relative;
}

.server-title:after {
    content: "";
    position: absolute;
    height: 1px;
    width: calc(100% - 160px);
    background: rgba(255, 255, 255, 0.06);
    top: 50%;
    margin-top: -1px;
    left: 160px;
}

.servers {
    background: url(../images/servers-bg.png) no-repeat;
    width: 100%;
    /*max-width: 532px;*/
    height: 322px;
    box-shadow: 0px 30px 30px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 40px 108px 0px 55px;
    margin-left: 21px;
}

.servers h2 {
    font-size: 30px;
    color: #2c2823;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 5px;
    padding: 19px 11px 0px;
}

.server-icon {
    position: absolute;
    right: 30px;
    top: -110px;
}

.server-icon_new {
    position: absolute;
    left: 0px;
    top: -110px;
}

.server-icon img, .server-icon_new img {
    position: relative;
    z-index: 2;
}

.server-icon:after, .server-icon_new:after {
    content: "";
    position: absolute;
    width: 268px;
    height: 268px;
    left: -18px;
    top: -12px;
    animation: light_1 15s linear infinite;
}

.server-icon_1 img {
    width: 239px;
    height: 269px;
}

.server-icon_1:after {
    background: url(../images/blue_server.png) no-repeat;
}

.server-icon_2 img {
    width: 245px;
    height: 269px;
}

.server-icon_2:after {
    background: url(../images/red_server.png) no-repeat;
}

@keyframes light_1 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.row-container {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.row-container .serverIn {
    padding: 20px 0px 20px 80px;
    transition: 0.3s;
    width: 50%;
}

.row-container .serverIn p {
    margin-bottom: 10px;
    font-size: 18px;
    color: #756f69;
    font-weight: 700;
}

.row-container .serverIn span {
    font-size: 11px;
}

.row-container .serverIn:nth-child(1) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: url(../images/players-icon.png) left 20px center no-repeat;
}

.row-container .serverIn:nth-child(2) {
    background: url(../images/time-icon.png) left 20px center no-repeat;
}

.row-container .serverIn:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: url(../images/online-icon.png) left 20px center no-repeat;
}

.row-container .serverIn:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: url(../images/events-icon.png) left 20px center no-repeat;
}

.row-container .serverIn:hover {
    padding: 20px 0px 20px 90px;
    box-shadow: inset 0px 0px 20px 0px rgba(255, 255, 255, 0.1);
}

.regBlock {
    position: relative;
    z-index: 1;
}

.regBlock .container {
    height: 800px;
}

.paralax-hero {
    position: absolute;
    top: 0px;
}

.hero-pal {
    position: absolute;
    background: url(../images/hero.png) no-repeat;
    width: 853px;
    height: 673px;
    left: 600px;
    top: -127px;
}

.formGroup {
    margin-bottom: 20px;
    position: relative;
    max-width: 450px;
}

.formGroup-name {
    position: absolute;
    left: 10px;
    top: -7px;
    display: block;
    background: #171514;
    padding: 0px 5px;
    z-index: 1;
}

.formGroup:hover .formGroup-name {
    color: #bb883b;
}

.formGroup.error .formGroup-name {
    color: #df3b5a;
}

.formGroup.error input {
    border: 1px solid #df3b5a;
    box-shadow: 0px 0px 10px 0px rgba(233, 59, 90, 0.4), inset 0px 0px 10px 0px rgba(233, 59, 90, 0.4);
}

.formGroup-2 {
    display: flex;
    justify-content: space-between;
}

.formGroup-2 > div {
    position: relative;
    width: calc(50% - 10px);
}

.regButton {
    margin-top: 50px;
}

.agreement {
    margin-left: 80px;
    color: #a5a29e;
    font-size: 13px;
    line-height: 1.5;
    background: url(../images/warning-icon.png) left top no-repeat;
    padding-left: 30px;
    z-index: 2;
    position: relative;
}

.agreement a {
    text-decoration: underline;
}

.agreement a:hover {
    text-decoration: none;
}

.buttonTop {
    position: absolute;
    background: url(../images/arrow-t.png) center no-repeat;
    background-color: #1f1f1f;
    width: 48px;
    height: 26px;
    top: -27px;
    left: 50%;
    margin-left: -24px;
    z-index: 3;
    cursor: pointer;
    border-radius: 6px 6px 0px 0px;
}

.socBlock {
    height: 70px;
    position: relative;
    z-index: 2;
    margin-bottom: 45px;
    position: relative;
}

.socBlock:after {
    content: "";
    position: absolute;
    background: url(../images/top-line.png) bottom center no-repeat;
    width: 1200px;
    height: 16px;
    left: -15px;
    bottom: -10px;
}

.socIcons a {
    display: block;
    width: 25px;
    height: 25px;
    margin-left: 20px;
}

.socIcons a:hover {
    filter: brightness(140%);
}

.socIcons .tw {
    background: url(../images/soc-icons.png) 3px center no-repeat;
}

.socIcons .fb {
    background: url(../images/soc-icons.png) -38px center no-repeat;
}

.socIcons .vk {
    background: url(../images/soc-icons.png) -80px center no-repeat;
}

.voteBlock a {
    margin-left: 20px;
}

.footerInfoBlock {
    position: relative;
    z-index: 2;
}

.footerInfoBlock h3 {
    font-size: 16px;
    text-transform: uppercase;
    color: #d5d0cb;
    margin-bottom: 35px;
}

.copyBlock {
    float: left;
    width: 25%;
}

.copyBlock a {
    text-decoration: underline;
}

.copyBlock a:hover {
    text-decoration: none;
}

.dkLogo {
    float: right;
    width: 20%;
    text-align: right;
}

.dkLogo img {
    display: inline-block;
    margin-bottom: 31px;
}

.dkLogo a {
    text-decoration: underline;
}

.dkLogo a:hover {
    text-decoration: none;
}

.footerMenuBlock {
    justify-content: center;
    width: 50%;
    margin: 0 auto;
    padding-left: 5%;
}

.footerMenu {
    width: 33.3%;
}

.footerMenu ul li {
    margin-bottom: 15px;
}

.footerMenu ul li a {
    color: #5b5b5b;
    display: block;
    padding-left: 25px;
    position: relative;
}

.footerMenu ul li a:hover {
    color: #bb883b;
    text-decoration: underline;
}

.footerMenu ul li a:hover:before {
    border: 1px solid #bb883b;
}

.footerMenu ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    border: 1px solid #5b5b5b;
    border-radius: 50%;
    height: 6px;
    width: 6px;
    top: 50%;
    margin-top: -4px;
}

.logosBlock {
    position: relative;
    z-index: 2;
    position: absolute;
    width: 100%;
    bottom: 80px;
    left: 0px;
}


.or {
    margin: 30px 0px;
    font-size: 12px;
    text-align: center;
    position: relative;
}

.or span {
    display: inline-block;
    background: #282b2c;
    padding: 0px 8px;
    z-index: 2;
    position: relative;
}

.or:after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    background: rgba(255, 255, 255, 0.09);
    top: 50%;
    left: 0;
}

.modalForm .formGroup-name {
    background: #2e2a2d;
}

.errorGroup {
    background: url(../images/wrong-icon.png) left 20px top 17px no-repeat;
    background-color: rgba(16, 16, 16, 0.9);
    padding: 17px 20px 17px 50px;
    border-radius: 10px;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.4);
    line-height: 1.5;
    font-size: 13px;
    position: absolute;
    left: 100%;
    min-width: 330px;
    color: #fff;
    margin-left: 30px;
    top: -20px;
}

.errorGroup:before {
    content: '';
    border: 8px solid transparent;
    border-right-color: rgba(16, 16, 16, 0.9);
    position: absolute;
    right: 100%;
    top: 50%;
    margin-top: -7px;
}

.formGroup-button {
    margin-top: 40px;
}

.lost-pass {
    color: #867d86;
    font-size: 12px;
    padding: 10px 0px 10px 30px;
    background: url(../images/question-icon.png) left no-repeat;
}

.lost-pass:hover {
    color: #bb883b;
}

.menuButton {
}

.page header {
    height: 400px;
}

.page header .container {
    height: 400px;
}

.page .menu li:nth-child(1) {
    display: flex;
}

.page .logo {
    position: absolute;
    top: 422px;
    left: -32px;
    z-index: 1;
    height: 150px;
    width: 150px;

    filter: blur(0px);
    background-size: cover;
    border-radius: 50%;
    -webkit-transition: -webkit-transform .8s ease-in-out;
    transition: transform .8s ease-in-out;
    cursor: pointer;
}

.page .logo:hover {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.page .logo:active {
    -webkit-filter: brightness(80%);
    filter: brightness(80%);
}

.page .hero {
    background: url(/p/img/heroes/0.png) no-repeat;
    background-size: contain;
    width: 700px;
    height: 600px;
    position: absolute;
    right: 0px;
    top: 90px;
    z-index: 0;
    max-height: 95%;
}

.page-title {
    background: rgba(91, 69, 50, .7);
    min-height: 100px;
    display: flex;
    align-items: center;
    padding-left: 50px;
    position: relative;
    margin-top: -150px;
    margin-bottom: 40px;
}

.page-title h1 {
    margin-bottom: 0px;
    font-size: 30px;
    text-transform: uppercase;
    position: relative;
    z-index: 6;
    text-transform: uppercase;
    font-family: "Philosopher", sans-serif;
}

.page-title .formGroup {
    margin-bottom: 0px;
    margin-left: 50px;
    position: relative;
    z-index: 6;
}

.page-title .formGroup-name {
    background: rgba(16, 60, 116, .4);
}

.page-title .formGroup select {
    min-width: 250px;
}

.block {
    margin-bottom: 40px;
}

.block-title {
    position: relative;
    margin-bottom: 40px;
}

.block-title h2 {
    font-size: 16px;
}

.block-title h2 span {
    padding: 10px 15px 10px 40px;
    background: url(../images/block-title-icon.png) left center no-repeat;
    background-color: #121212;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.block-title:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    top: 50%;
    left: 0px;
}

.downloadBlock {
    width: 55%;
    background: url(../images/download-bg.jpg) center no-repeat;
    background-size: cover;
    height: 272px;
    text-align: center;
    padding: 55px 85px 0px 85px;
    color: #867d86;
    box-shadow: inset -10px 0px 10px 0px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 6;
}

.downloadBlock-title {
    font-size: 18px;
    margin-bottom: 35px;
}

.downloadBlock-title span {
    font-weight: 600;
    color: #fff;
}

.downloadBlock-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    width: 33.3%;
    border: 1px solid #2d2d2d;
    padding: 18px 0px;
    color: #867d86;
}

.downloadBlock-block img {
    height: 43px;
    margin-bottom: 12px;
}

.downloadBlock-block:hover {
    background: url(../images/download-hover.jpg) center no-repeat;
    background-size: cover;
    box-shadow: 0px 14px 14px 0px rgba(0, 0, 0, 0.1);
}

.updateBlock {
    width: 45%;
    background: url(../images/update-block-bg.jpg) center no-repeat;
    background-size: cover;
    height: 272px;
    text-align: center;
    padding: 55px 85px 0px 85px;
    color: #867d86;
    position: relative;
    z-index: 6;
    line-height: 1.4;
    font-size: 12px;
}

.updateBlock h3 {
    font-size: 20px;
    font-weight: 600;
}

.rankingsButtonsBlock {
    display: block;
    position: relative;
    margin-bottom: 40px;
}

.rankingsButtonsBlock:after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 10px;
}

.rankingsButtons {
    display: inline-flex;
    position: relative;
    z-index: 1;
}

.rankingsButtons a {
    display: block;
    height: 55px;
    padding: 0 35px;
    line-height: 52px;
    color: #c7c7c7;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.rankingsButtons a:hover {
    color: #fff;
}

.rankingsButtons a:last-child {
    margin-right: 0px;
    border-right: 0px;
}

.rankingsButtons .active {
    color: #fff;
    font-weight: 700;
}

.rankingsButtons .active:after {
    content: "";
    background: #e5c3f5;
    height: 4px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.rank {
    background: url(../images/stock.jpg) center no-repeat;
    background-size: cover;
    width: calc(50% - 20px);
    height: 130px;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 7;
    display: flex;
    margin-bottom: 40px;
}

.rank-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    background-color: rgba(0, 0, 0, 0.2);
}

.rank-info {
    display: flex;
    align-items: center;
    padding: 30px;
    width: 100%;
}

.rank-info_ava, .news_ava {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;

    filter: blur(0px);
    background-size: cover;
    border-radius: 50%;
    -webkit-transition: -webkit-transform .8s ease-in-out;
    transition: transform .8s ease-in-out;
    cursor: pointer;
}

.news_ava:hover {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.news_ava:active {
    -webkit-filter: brightness(80%);
    filter: brightness(80%);
}

.rank-info_text {
    width: auto;
    padding-right: 20px;
}

.rank-nickName {
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-end;
}

.rank-nickName b {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    padding: 2px 0px;
}

.rank-nickName span {
    font-size: 12px;
    padding-bottom: 2px;
    padding-left: 3px;
}

.rank-lvl {
    color: #fff;
    font-size: 17px;
}

.rank-kills {
    color: #fff;
    float: right;
}

.tableRank td {
    border: none;
    padding: 15px 30px;
    text-align: center;
}

.tableRank td img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    top: -2px;
    left: 4px;
}

.tableRank thead td {
    padding: 25px 0;
    text-align: center;
}

.tableRank tr {
    border-bottom: 1px solid #1e1e1e;
    transition: 0.3s;
}

.tableRank tr:hover {
    border-bottom: 1px solid #e5c3f5;
}

.tableRank tr:hover td {
    color: #ffffff;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pagination .number {
    display: block;
    height: 40px;
    width: 40px;
    line-height: 38px;
    text-align: center;
    color: #cacaca;
    font-size: 14px;
    border-radius: 50%;
    margin: 0px 3px;
}

.pagination .number.active {
    border: 2px solid #ad385e;
    box-shadow: 0px 0px 10px 0px rgba(173, 56, 92, 0.4), inset 0px 0px 10px 0px rgba(255, 97, 148, 0.4);
    color: #fff;
}

.pagination .prev {
    background: url(../images/prev-arrow.png) center no-repeat;
    margin-right: 15px;
}

.pagination .next {
    background: url(../images/next-arrow.png) center no-repeat;
    margin-left: 15px;
}


.news_cont {
    background: rgba(91, 69, 50, .7);
    background-size: cover;
    width: calc(100%);
    height: 100%;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 7;
    display: flex;
    margin-bottom: 40px;
    font-family: "Geometria";
}

.news_cont_text {
    width: 100%;
    padding-right: 20px;
}

.news-Title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-end;
}

.news-Title span {
    font-size: 12px;
    padding-bottom: 2px;
    padding-left: 3px;
    right: 10px;
    position: absolute;
    padding-right: 15px;
    color: #6aa3d5;
}

.news-Title b {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Philosopher", sans-serif;
}

.news_ava img {
    position: relative;
    bottom: 1px;
    left: 3px;
}

.news_info {
    display: flex;
    padding: 30px;
    width: 100%;
}

.news_type {
    padding-right: 10px;

}

.news-Title .news_type {
    display: none;
}


.top_kind_1, .top_kind_2 {
    background: url(../images/kind_1.png) no-repeat;
    background-size: cover;
    height: 100px;
    width: 91px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
}

.top_kind_2 {
    background: url(../images/kind_2.png) no-repeat;
    background-size: cover;
}


.errorReg {
    background: url(../images/wrong-icon.png) left 20px top 17px no-repeat;
    background-color: rgba(16, 16, 16, 0.9);
    padding: 17px 20px 17px 50px;
    border-radius: 10px;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.4);
    line-height: 1.5;
    font-size: 13px;
    position: absolute;
    left: 100%;
    min-width: 330px;
    color: #fff;
    margin-left: 30px;
    top: -3px;
    z-index: 10;
}

.errorReg:before {
    content: '';
    border: 8px solid transparent;
    border-right-color: rgba(16, 16, 16, 0.9);
    position: absolute;
    right: 100%;
    top: 50%;
    margin-top: -7px;
}

/*# sourceMappingURL=style.css.map */

.regBlock {
    padding-top: 120px;
}

.topPanel-top_fix {
    background: url(../images/dark-fon.png);
    padding: 0px 0px;
}

.mr-auto, .mx-auto, .mx-right {
    margin-right: auto !important;
}

.ml-auto, .mx-auto {
    margin-left: auto !important;
}

.flex {
    display: flex;
}

.jackpot {
    /*background: url(../images/bg_reg.png) top repeat-y;*/
    text-align: center;
    color: #fff;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-family: "Philosopher", sans-serif;
    text-transform: uppercase;
    padding-bottom: 20px;
    padding-left: 200px;
    position: relative;
    z-index: 9;
}

.jackpot:after, .jackpot:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
}

/*
.jackpot:after {
    background: url(../images/bg_reg_bot.png) top no-repeat;
    bottom: -48px;
    height: 62px;
}
.jackpot:before {
    background: url(../images/bg_reg_top.png) top no-repeat;
    top: -48px;
    height: 48px;
}*/

.jackpot div {
    font-size: 60px;
    color: #ffda59;
    text-shadow: 0 0 10px rgba(255, 157, 103, .5);
}

.profile {
    float: right;
    padding-top: 0px;
    padding-left: 0px;
    width: 450px;
}

.login_button,
.bordered_button,
.register_button {
    height: 40px;
    background: url(../images/btn_reg.jpg);
    width: 108px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.login_panel {
    display: contents;
}
.login_panel input {
    width: 150px;
    padding-left: 40px;
}

.login_panel button, .login_panel input {
    float: left;
    margin-right: 10px;
}

input {
    height: 40px;
    background: rgb(9 29 37 / 30%);
    color: #fff;
    font-size: 14px;
    padding: 0 15px;
}

.login_panel > div {
    float: left;
    position: relative;
}

#login:before, #password:before {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    background: url(../images/ico_login.png);
    position: absolute;
    top: 2px;
    left: 3px;
}

*, :after, :before {
    box-sizing: border-box;
}

#password:before {
    background: url(../images/ico_pass.png);
}

.footer {
    color: #fff;
    background: url(../images/smoke_bott.png) bottom no-repeat;
}

.footer {
    margin-top: 5px;
    position: relative;
    z-index: 0;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
    width: 100%;
    padding-right: 15px;
    /*padding-left: 15px;*/
    margin-right: auto;
    margin-left: auto;
}

.f_content {
    padding: 40px 0 170px;
    font-size: 13px;
    color: #756f69;
}

.f_logos img {
    float: left;
    margin-right: 30px;
}

.f_text {
    width: 420px;
    float: left;
    margin-left: 20px;
    margin-top: -5px;
}

.copyright {
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid hsla(0, 0%, 100%, .05);
    padding-bottom: 40px;
    padding-top: 5px;
}

.f_menu {
    float: right;
    font-size: 12px;
    font-family: "Philosopher", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.f_menu a, .f_menu span.link-button {
    color: #fff;
    margin-left: 50px;
}

.f_menu a:hover, .f_menu span.link-button:hover {
    color: #fc7a52;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 0, 0, .5);
}

.marginer {
    height: 89px;
    position: relative;
}

.payments {
    text-align: right;
}

.payments a {
    display: inline-block;
    height: 27px;
    width: 83px;
    opacity: .5;
    margin: 0 24px;
}

.logo_footer {
    margin-top: 8px;
}

.rname {
    position: relative;
    width: 100%;
    height: 49px;
}

.rname div {
    position: absolute;
    right: 11px;
}

.newsbg {
    background: url(../images/news_bg.png) top repeat-y;
    text-align: left;
    color: #fff;
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-family: "Philosopher", sans-serif;
    text-transform: uppercase;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 9;
}

.newsbg:after, .newsbg:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
}

.newsbg:after {
    background: url(../images/bg_reg_bot.png) top no-repeat;
    bottom: -48px;
    height: 62px;
}

.newsbg:before {
    background: url(../images/bg_reg_top.png) top no-repeat;
    top: -48px;
    height: 48px;
}


.newsbg .content {
    padding: 0px 0px 50px 0px;
}

.page_title {
    height: 68px;
    background: url(../images/info/page_title.png) 50% 50% no-repeat;
    text-align: center;
    font-size: 36px;
    line-height: 68px;
}

.page_title span {
    display: inline-block;
    padding: 0 20px;
    background: #080808;
}

.page_title p {
    margin: 0;
    text-transform: uppercase;
    font-family: "Philosopher", sans-serif;
    background: -webkit-linear-gradient(#f4ebd4, #707068);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.load-more .download-button, .load-more .download-button-log {
    height: 40px;
}

/*.advantages{*/
/*  padding-top: 280px;*/
/*}*/

.adv_list {
    font-size: 0;
    width: 100%;
    padding-top: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.adv {
    font-size: 13px;
    text-align: center;
    font-weight: 600;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-auto, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-auto, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.adv_icon {
    width: 246px;
    height: 246px;
    background: url(../images/adv_icon_bg.png) 50% 50% no-repeat;
    margin: 0 auto;
    cursor: pointer;
}

#game_history table tr:after, .adv_icon img, .block, .block > div img, .button:hover, .company_selector button, .duels, .f_menu a, .game_icon:after, .logo_area img, .modal_form input, .modal_form textarea, .nickname button, .payment_sum input[type=radio] + label, .payments a, .referral-contests, .slider-game, .soc_login a, .soc_panel img, .soc a, .top-panel, .toTop:after, game_invite table tr:after, game_ui_list table tr:after {
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
}

.adv span {
    display: block;
    width: 300px;
    margin: 0 auto;
}

.text-green-gradient, h3 {
    font-family: "Philosopher", sans-serif;
    font-size: 48px;
    font-weight: 400;
}

h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
}

body {
    margin: 0;
    color: #fff;
    font-family: "Philosopher", sans-serif;
}

.adv_icon:hover img {
    margin-top: -8px;
}

.smalllog {
    display: none;
}

.button-small, .regButton button {
    width: 200px;
    height: 60px;
}

.registration {
    padding-top: 5%;
}

.header__nav-item {
    color: #fff;
    padding: 0 0px 0 79px;
    font-size: 18px;
    text-transform: uppercase;
    text-shadow: 0px 3px 2px rgba(38, 26, 16, .25);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    z-index: 2;
    top: 5px;
    position: relative;
}

.header__nav-item:hover {
    -webkit-filter: brightness(80%);
    filter: brightness(80%);
}

.menuBlock {
    width: 100%;
}

.menuBlock-logo {
    display: flex;
    align-items: center;
}

.menu_block, .auth_block {
    /*width: 50%;*/
    display: inline-flex;
}

.auth_block {
    position: absolute;
    right: 70px;
}

.reg_txt .menu li a {
    padding-right: 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0px 3px 2px rgba(38, 26, 16, .25);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    color: #ffeccd;
}

.header__lk {
    font-family: "Philosopher", sans-serif;
    padding: 0 15px;
    height: 45px;
    border-radius: 4px;
    background: #893434;
    background: -webkit-gradient(linear, left bottom, left top, from(#893434), to(#be4949));
    background: -o-linear-gradient(bottom, #893434 0%, #be4949 100%);
    background: linear-gradient(0deg, #893434 0%, #be4949 100%);
    border-top: 1px solid #d33636;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    text-shadow: 0px 3px 2px rgba(38, 26, 16, .25);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    font-weight: 700;
    margin-right: 15px;
    -webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, .2);
    box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, .2);
}

.header__lk:hover {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
}

.header__lk img {
    margin-right: 8px;
}

.news__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
}

.news__slider {
    overflow: hidden;
}

.news__slide-item {
    position: relative;
}

.news__slide-content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 70px 45px 0 45px;
}

.news__slide-title {
    color: #fff;
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.news__slide-text {
    color: #afb9c6;
    font-size: 16px;
    font-family: "Geometria";
    font-weight: 400;
    margin-bottom: 20px;
}

.news__slide-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.news__slide-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #f8e402;
    font-size: 16px;
    font-family: "Geometria";
    font-weight: 500;
    margin-right: 40px;
}

.news__slide-link {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 0 20px;
    line-height: 48px;
    font-family: "Geometria";
    border-radius: 24px;
    background: rgba(14, 15, 34, .25);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.news__slide-link:hover {
    background: rgba(14, 15, 34, .45);
}

.news__block {
    position: relative;
    background: url(../images/news__bg.jpg) no-repeat top center;
}

.news__block-title {
    padding: 0 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 80px;
}

.news__block-title h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.news__block-title a {
    color: #ffe2b5;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
    bottom: -3px;
}

.news__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding: 0 45px;
    margin-left: -3px;
    margin-bottom: 10px;
    width: 100%;
    border-left: 3px solid rgba(0, 0, 0, 0);
    height: 78px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.news__text {
    color: #fff;
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: "Geometria";
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.news__text span {
    color: #917960;
    font-size: 14px;
    font-weight: 400;
    font-family: "Geometria";
    display: block;
}

.news__item:hover {
    background: #6f3e21;
    background: -webkit-gradient(linear, left top, right top, from(#6f3e21), to(rgba(228, 58, 81, 0)));
    background: -o-linear-gradient(left, #6f3e21 0%, rgba(228, 58, 81, 0) 100%);
    background: linear-gradient(90deg, #6f3e21 0%, rgba(228, 58, 81, 0) 100%);
    border-color: #956a0b;
}

.news__item:hover .news__text {
    color: #ffcc70;
}

.news__arrow {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #4d3c2e;
    background: url(../images/arr_news.png) no-repeat center;
    position: relative;
    margin-left: 35px;
    background-position-x: 16px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.news__item:hover .news__arrow {
    background: url(../images/arr_news_h.png) no-repeat center;
    background-position-x: 16px;
}

.stock__block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 69% 28%;
    grid-template-columns: 69% 28%;
    grid-column-gap: 50px;
}

.stock__content {
    background: url(../images/stock.jpg) no-repeat center;
    position: relative;
    padding-right: 20px;
}

.stock__content:before {
    content: "";
    width: 100%;
    height: 28%;
    background: #47240b;
    background: -webkit-gradient(linear, left bottom, left top, from(#47240b), to(rgba(228, 58, 81, 0)));
    background: -o-linear-gradient(bottom, #47240b 0%, rgba(228, 58, 81, 0) 100%);
    background: linear-gradient(0deg, #47240b 0%, rgba(228, 58, 81, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.stock__element {
    padding: 10px 50px 0 50px;
    height: 215px;
    position: relative;
    overflow-y: scroll;
}

.stock__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 15px;
    height: 56px;
    border-radius: 28px;
    background: rgba(99, 66, 26, .24);
    margin-bottom: 12px;
}

.stock__vote {
    background: #2f261ef2;
    position: relative;
    padding-bottom: 30px;
}

.stock__vote-img {
    text-align: center;
}

.stock__vote-img img {
    position: relative;
    margin-top: -55px;
}

.stock__vote h4 {
    color: #fff;
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
}

.stock__vote h4 span {
    display: block;
    font-size: 16px;
    color: #ffe2b5;
    font-family: "Geometria";
    font-weight: 400;
    text-transform: none;
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
}

.stock__element::-webkit-scrollbar {
    width: 5px;
    background: #473409
}

.stock__element::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: #733d05
}

.stock__num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid #63450d;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-family: "Geometria";
    font-weight: 900;
    line-height: 24px;
    margin-right: 20px;
}


.stock__vote-btn {
    width: 270px;
    height: 94px;
    display: inline-block;
    text-align: center;
    display: inline-block;
    background: url(../images/vote.png) no-repeat center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 94px;
    -webkit-text-shadow: 0px 4px 3px rgba(37, 45, 69, .3);
    -moz-text-shadow: 0px 4px 3px rgba(37, 45, 69, .3);
    text-shadow: 0px 4px 3px rgba(37, 45, 69, .3);
    position: relative;
    z-index: 2;
    -webkit-box-shadow: 0px 10px 10px 0px rgba(57, 49, 73, .5);
    box-shadow: 0px 10px 10px 0px rgba(57, 49, 73, .5);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.stock__vote-btn:hover {
    -webkit-filter: brightness(120%);
    filter: brightness(120%)
}

.stock__text {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    color: #fff;
    font-size: 15px;
    font-family: "Geometria";
    font-weight: 500;
}

.menu__mobail {
    display: none;
    cursor: pointer;
    z-index: 16;
    position: relative;
}

.news_type {
    font-family: "Geometria";
    color: #fff;
}

table.artifact-table {
    display: inline-block;
    margin: 1px;
    vertical-align: top;
    width: 60px;
    height: 60px;

}

table.artifact-table td {
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 0;
    vertical-align: bottom !important;
}

.truncate {
    margin: 0; /* Убираем внешний отступ */
    -webkit-line-clamp: 5; /* Число отображаемых строк */
    display: -webkit-box; /* Включаем флексбоксы */
    -webkit-box-orient: vertical; /* Вертикальная ориентация */
    overflow: hidden; /* Обрезаем всё за пределами блока */
}

.news_cont_ani:hover {
    -webkit-box-shadow: 0px 10px 10px 0px rgba(57, 49, 73, .5);
    box-shadow: 0px 10px 10px 0px rgba(57, 49, 73, .5);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.news_cont_ani:hover {
    filter: brightness(120%);
}

.header__lib span {
    font-family: "Philosopher", sans-serif;
    padding: 0 15px;
    height: 45px;
    border-radius: 4px;
    background: #893434;
    background: -webkit-gradient(linear, left bottom, left top, from(#893434), to(#be4949));
    background: -o-linear-gradient(bottom, #893434 0%, #be4949 100%);
    background: linear-gradient(0deg, #893434 0%, #be4949 100%);
    border-top: 1px solid #db9464;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    text-shadow: 0px 3px 2px rgba(38, 26, 16, .25);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    font-weight: 700;
    margin-right: 15px;
    -webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, .2);
    box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, .2);
}

.header__lib span:hover {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
}

.header__lib img {
    margin-right: 8px;
}

.news-block-tab li {
    padding-left: 25px;
    margin: 8px 0;
}

.news-block-tab li:hover, .lib_act_men {
    background: url(../images/point.png) no-repeat left;
}

.lib_act_men a {
    color: #fff;
}

.lib_act_men a:hover {
    color: #fff;
    cursor: default;
}

.news-block-tab {
    color: #fde0b3;
    font-weight: 600;
    font-size: 15px;
    font-family: "Geometria";
    margin: 20px 0;
}


.libBlock {
    position: relative;
    top: -55px;
    left: -65px;
    width: 100%;
    z-index: 3;
}

.scroll-tableBlock {
    background: rgba(16, 60, 116, .4);
}

.userinfo {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.userinfo:hover {
    color: #ffe871;
    filter: brightness(120%);
}

.userinfo img {
    position: relative;
    top: 7px;
}

.rank-lvl img {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    opacity: 70%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    margin: 30px;
}

.rank-lvl img:hover {
    opacity: 100%;
}

.news_cont_text .download-button {
    text-transform: uppercase;
}

.rank-lvl_title {
    font-family: "Philosopher", sans-serif;
    font-size: 24px;
}

.rank-lib p {
    margin: 0px auto;
    text-align: justify;
    width: 70%;
}

.rank-lib p.rank-lvl_title, .rank-lib p.lib_img {
    text-align: center;
}

.lib_img img {
    border: 4px dashed #6480db4a;
    /* padding: 30px; */
}

.rank-lvl span img {
    margin: 0px;
}

.menu li {
    padding-left: 5px;
}

.menu_log {
    color: #0ebd02 !important;
    font-weight: 600;
}

.menu_reg {
    color: #ff8014 !important;
    font-weight: 600;
}

.portal-message {
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.success-message {
    background: #2a5a2a;
    color: #fff;
    border: 1px solid #4caf50;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.error-message {
    background: #5a2a2a;
    color: #fff;
    border: 1px solid #ff4444;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 10px;
}

.badge {
    display: inline-block;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    background: #ff4444;
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
    margin-left: 5px;
    padding: 0 5px;
}

.search-container {
    position: relative;
    display: inline-block;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2a1e15;
    border: 2px solid #b8860b;
    border-radius: 5px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 10000;
    display: none;
}

.search-result-item {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    color: #fff;
}

.search-result-item:hover {
    background: #b8860b;
    color: #1f140c;
}

.search-result-item small {
    display: block;
    font-size: 11px;
    color: #aaa;
}

.poll-block {
    background: rgba(91, 69, 50, 0.7);
    border: 2px solid #d4af37;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.poll-form label {
    display: block;
    margin: 5px 0;
    color: #fff;
}

.poll-form input[type="radio"], .poll-form input[type="checkbox"] {
    margin-right: 8px;
}

.only-mob {
    display: none !important;
}