/* imports */
/* -------------------------------------------------------------------------------------------------------------------- */

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

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

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

@font-face {
    font-family: Open Sans Regular;
    src: url(../fonts/OpenSans-Regular.ttf);
}

@font-face {
    font-family: Open Sans Bold;
    src: url(../fonts/OpenSans-Bold.ttf);
}

/* settings */
/* -------------------------------------------------------------------------------------------------------------------- */

html, body, header, nav, section, aside, article, footer, div,
span, applet, object, iframe, p, blockquote, pre, a, abbr, acronym,
address, big, cite, code, del, dfn, img, ins, kbd, q, s, samp, small,
strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form,
label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-family: Open Sans Regular, serif;
    color: #dec1b0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #dec1b0;
}

/* inputs */
/* -------------------------------------------------------------------------------------------------------------------- */

input, button, select, textarea {
    outline: none;
    border: none;
}

select, button {
    cursor: pointer;
}

::-webkit-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
    color: #5c4e3f;
}

::-moz-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
    color: #5c4e3f;
}

:-moz-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
    color: #5c4e3f;
}

:-ms-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
    color: #5c4e3f;
}

:focus::-webkit-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #5c4e3f;
}

:focus::-moz-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #5c4e3f;
}

:focus:-moz-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #5c4e3f;
}

:focus:-ms-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #5c4e3f;
}

/* flex */
/* -------------------------------------------------------------------------------------------------------------------- */

.flex-sbc {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.flex-sbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.flex-sbsa {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
}

.flex-sbe {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.flex-cc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.flex-cs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.flex-ce {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
}

.flex-sc {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.flex-ss {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.flex-se {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
}

.flex-ec {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.flex-es {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
}

.flex-ee {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
}

/* structure */
/* -------------------------------------------------------------------------------------------------------------------- */

body {
    background: #0e0302;
}

.wrapper {
    width: 100%;
    max-width: 1920px;
    height: auto;
    margin: 0 auto;
    position: relative;
}

.wrapper:after {
    content: '';
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    position: absolute;
    top: 0px;
    left: 0px;
    background: linear-gradient(to right, rgba(14, 3, 2, 1) 0%, rgba(14, 3, 2, 0) 10%, rgba(14, 3, 2, 0) 90%, rgba(14, 3, 2, 1) 100%);
}

header, #middle {
    width: 100%;
    position: relative;
}

header {
    height: 950px;
    background: url(../images/bg/head_bg.jpg) top center no-repeat;
}

#middle {
    margin-top: -370px;
}

#middle:before {
    content: '';
    width: 100%;
    height: calc(100% + 200px);
    position: absolute;
    top: -160px;
    left: 0px;
    background: url(../images/bg/footer.png) bottom center no-repeat,
    url(../images/bg/middle_bg.png) top center no-repeat;
    z-index: 1;
    pointer-events: none;
}

#middle:after {
    content: '';
    width: 100%;
    height: 315px;
    background: url(../images/bg/top_content.png) top center no-repeat;
    position: absolute;
    top: -240px;
    left: 0px;
    z-index: 3;
    pointer-events: none;
}

.inner-page:after {
    display: none;
}

.content-area {
    width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

aside {
    width: 287px;
    align-self: stretch;
}

main {
    width: calc(100% - 287px - 30px);
    align-self: stretch;
}

footer {
    width: 100%;
    min-height: 480px;
    margin-top: 30px;
}

/* top navigation */
/* -------------------------------------------------------------------------------------------------------------------- */

.top-navigation {
    width: 100%;
    height: 60px;
    position: relative;
}

/* lang switch */
/* -------------------------------------------------------------------------------------------------------------------- */

.lang-switch {
    width: 125px;
    height: 27px;
    position: relative;
    z-index: 2;
}

.lang-switch:before {
    content: '';
    width: 24px;
    height: 21px;
    background: url(../images/icon/arrow_bottom.png) center center no-repeat;
    position: absolute;
    top: calc(50% - 10.5px);
    right: 0px;
    z-index: 2;
    pointer-events: none;
}

.lang-switch > .lang-list {
    width: calc(100% + 20px);
    height: 41px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0);
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 1;
    padding: 5px;
}

.lang-switch > .active {
    height: auto !important;
    overflow: auto !important;
    background: #0a0302;
    border-radius: 5px;
    border: 1px solid #210c03;
}

.lang-switch > .lang-list > .lang-item {
    width: 100%;
    margin: 5px;
}

.lang-switch > .lang-list > .active {
    order: -1;
}

.lang-switch > .lang-list > .lang-item:hover .lang-name {
    color: #ffa626;
}

.lang-switch > .lang-list > .lang-item:hover img {
    filter: brightness(130%);
}

.lang-switch > .lang-list > .lang-item > img {
    transition: filter .2s ease-in-out;
}

.lang-switch > .lang-list > .lang-item > .lang-name {
    font-family: Beaufort Regular;
    text-transform: uppercase;
    font-size: 14px;
    color: #68513e;
    margin-left: 8px;
    transition: color .2s ease-in-out;
}

/* lang switch */
/* -------------------------------------------------------------------------------------------------------------------- */

.login-switch {
    width: 310px;
    height: 38px;
    position: absolute;
    top: calc(50% - 19px);
    right: calc(50% - 95px);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(113, 78, 64, 0.25);
    border-radius: 4px;
    z-index: 1;
}

.login-switch:before {
    content: '';
    width: 24px;
    height: 21px;
    /*background: url(../images/icon/arrow_bottom.png) center center no-repeat;*/
    position: absolute;
    top: calc(50% - 10.5px);
    right: 5px;
    z-index: 3;
    pointer-events: none;
}

.login-switch > .login-list {
    width: 100%;
    height: 36px;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0);
    z-index: 2;
}

.login-switch > .active {
    height: auto !important;
    overflow: auto !important;
    background: #0a0302;
    border-radius: 5px;
    border: 1px solid #210c03;
}

.login-switch > .login-list > .login-item {
    width: 100%;
    height: 34px;
    padding-left: 10px;
    font-family: Open Sans Regular, serif;
    font-size: 18px;
    color: #9f795d;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.text-green {
    color: #90c848 !important;
}

.login-switch > .login-list > .active {
    order: -1;
}

.login-switch > .login-list > .login-item:hover {
    color: #ffa626;
    background: #271712;
}

.login-switch > .login-button {
    width: 192px;
    height: 73px;
    background: url(../images/login_button_bg.png) center center no-repeat;
    position: absolute;
    top: calc(100% + 12px);
    right: calc(50% - 96px);
    font-family: Beaufort Bold;
    text-transform: uppercase;
    font-size: 26px;
    color: #34150b;
    text-shadow: 0px 0px 10px #ffba00;
    padding-bottom: 27px;
    transition: filter .2s ease-in-out;
    z-index: 1;
}

.login-switch > .login-button:hover {
    filter: brightness(130%);
}

.login-switch > .forgot-pass-link {
    position: absolute;
    top: calc(100% + 90px);
    font-family: Open Sans Regular;
    font-size: 14px;
    color: #ffe4b5;
    text-shadow: 0px 1px 1px #673817;
    text-decoration: underline;
    transition: color .2s ease-in-out;
}

.login-switch > .forgot-pass-link:hover {
    color: #fff;
}

/* social */
/* -------------------------------------------------------------------------------------------------------------------- */

.social {
    width: 34px;
    height: 34px;
    position: relative;
    z-index: 2;
}

.social > .social-list {
    width: calc(36px * 3);
    height: auto;
    position: absolute;
    top: 0px;
    right: -15px;
}

.social > .active {
}

.social > .social-list > a {
    width: 34px;
    height: 34px;
    margin: 0px 10px;
    transition: filter .2s ease-in-out;
}

.social > .social-list > a:hover {
    filter: brightness(150%);
}

.social > .social-list > .vk {
    background: url(../images/icon/vk.png) center center no-repeat;
}

.social > .social-list > .fb {
    background: url(../images/icon/fb.png) center center no-repeat;
}

.social > .social-list > .dc {
    background: url(../images/icon/dc.png) center center no-repeat;
}

.social > .social-list > .yt {
    background: url(../images/icon/yt.png) center center no-repeat;
}

.social > .social-list > .open-social {
    width: 34px;
    height: 34px;
    margin: 5px 5px;
    transition: filter .2s ease-in-out;
    display: none;
    cursor: pointer;
    font-size: 20px;
    background: url(../images/icon/social.png) center center no-repeat;
}

.social > .social-list > .open-social:hover {
    filter: brightness(150%);
}

/* logo */
/* -------------------------------------------------------------------------------------------------------------------- */

.logo {
    width: 439px;
    height: 247px;
    display: block;
    margin: 0 auto;
    margin-top: 110px;
    position: relative;
}

.logo > .logo_img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.logo > .logo_img_hover {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    transition: all .4s ease-in-out;
    opacity: 0;
}

.logo:hover .logo_img_hover {
    opacity: 0.5;
}

/* server status */
/* -------------------------------------------------------------------------------------------------------------------- */

.server-status {
    width: 100%;
    margin-top: 20px;
}

.server-status > .desc {
    width: 100%;
    font-family: Beaufort Medium;
    text-align: center;
    font-size: 14px;
    color: #dec1b0;
    text-shadow: 0px 1px 1px #000;
}

.server-status > .count {
    width: 100%;
    font-family: Beaufort Bold;
    text-align: center;
    font-size: 58px;
    color: #ff9c08;
    text-shadow: 0px 1px 1px #000;
    margin-top: -10px;
}

.server-status > a {
    display: block;
    margin: 0 auto;
    font-family: Beaufort Medium;
    font-size: 14px;
    color: #ffe4b5;
    text-shadow: 0px 1px 1px #673817;
    text-decoration: underline;
    margin-top: -4px;
    transition: color .2s ease-in-out;
}

.server-status > a:hover {
    color: #fff;
}

/* navigation */
/* -------------------------------------------------------------------------------------------------------------------- */

nav {
    width: 100%;
    height: 560px;
    position: relative;
}

.open_navigation {
    width: 100%;
    height: 110px;
    border-radius: 5px;
    background: url(../images/bg/nav_m_bg.png) top center no-repeat;
    font-family: Beaufort Regular;
    color: #e0c8b5;
    font-size: 26px;
    padding: 30px;
    cursor: pointer;
    transition: filter .2s ease-in-out;
    display: none;
}

.open_navigation:hover {
    filter: brightness(120%);
}

nav:before {
    content: '';
    width: 339px;
    height: 703px;
    background: url(../images/bg/nav_bg.png) top center no-repeat;
    position: absolute;
    top: -90px;
    left: calc((100% - 339px) / 2);
    z-index: 1;
    pointer-events: none;
}

nav > .nav-area {
    width: calc(100% - 18px);
    position: relative;
    z-index: 2;
    transition: height .5s ease-in-out;
}

nav > .active {
}

nav > .nav-area > a {
    display: block;
    width: 100%;
    font-family: Beaufort Regular;
    color: #ae9079;
    text-align: center;
    font-size: 18px;
    text-shadow: 0px 0px 10px rgba(255, 119, 0, 0.2);
    padding: 12px;
    margin: 1px 0px;
    transition: all .2s ease-in-out;
    position: relative;
    background: url(../images/bg/nav_hover_null.png) center center no-repeat;
    background-size: 0% 100%;
}

nav > .nav-area > a:after {
    content: '';
    width: calc(100% + 60px);
    height: 39px;
    background: url(../images/border_bottom.png) center center no-repeat;
    position: absolute;
    top: calc(100% - 7px);
    left: -30px;
    opacity: 0.28;
}

nav > .nav-area > a:last-child:after {
    display: none;
}

nav > .nav-area > a:hover {
    color: #ebc8ac;
    background: url(../images/bg/nav_hover.png) center center no-repeat;
    background-size: 100% 100%;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 1);
    letter-spacing: 1.5px;
}

nav > .nav-area > .active {
    color: #ffa626 !important;
}

/* resource */
/* -------------------------------------------------------------------------------------------------------------------- */

.resource {
    width: 100%;
    background: linear-gradient(to top, #23100b, #190805);
    border-radius: 5px;
    padding-top: 70px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
}

.button {
    width: 100%;
    height: 44px;
    background: url(../images/button_texture.png) top center no-repeat;
    border-radius: 5px;
    padding: 14px;
    font-family: Beaufort Regular;
    font-size: 15px;
    text-shadow: 0px 1px 1px #000;
    transition: all .2s ease-in-out;
}

.button > i {
    font-size: 12px;
    color: #e69a2c;
}

.button:hover {
    filter: brightness(130%);
}

.resource > .button:not(:last-child) {
    margin-bottom: 15px;
}

/* articles */
/* -------------------------------------------------------------------------------------------------------------------- */

.articles {
    width: 100%;
    margin-top: 30px;
}

.articles > .title {
    width: 100%;
    font-family: Beaufort Regular;
    font-size: 24px;
    color: #f2e2c8;
    text-shadow: 0px 1px 1px #000;
    text-align: center;
    margin-bottom: 5px;
}

.articles > .article {
    width: 100%;
    background: url(../images/bg/block_texture.png) top center;
    padding: 25px;
    border-radius: 5px;
    margin-top: 10px;
    transition: all .2s ease-in-out;
}

.articles > .article:hover {
    filter: brightness(130%);
}

.articles > .article > .title {
    width: 100%;
}

.articles > .article > .title > img {
    display: block;
    margin: -17px;
}

.articles > .article > .title > .text {
    width: calc(100% - 23px);
    font-family: Beaufort Regular;
    font-size: 14px;
    color: #f2e2c8;
    text-shadow: 0px 1px 1px #000;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.articles > .article > .title > .text:hover {
    text-decoration: underline;
}

.articles > .article > .text {
    width: 100%;
    height: 44px;
    overflow: hidden;
    font-family: Open Sans Regular;
    font-size: 12px;
    color: #ae9079;
    line-height: 22px;
    margin-top: 13px;
}

.articles > .article > .date {
    font-family: Open Sans Regular;
    font-size: 12px;
    color: #6b5f53;
    margin-top: 10px;
}

.articles > .more-articles {
    width: 100%;
    height: 44px;
    background: url(../images/bg/block_texture.png) top center;
    border-radius: 5px;
    margin-top: 10px;
    font-family: Beaufort Medium;
    font-size: 18px;
    color: #ae9079;
    transition: all .2s ease-in-out;
}

.articles > .more-articles:hover {
    filter: brightness(130%);
}

/* content */
/* -------------------------------------------------------------------------------------------------------------------- */

main {
    background: url(../images/bg/main_top_bg.png) top center no-repeat;
    border-radius: 5px;
    padding-top: 25px;
}

/* slider */
/* -------------------------------------------------------------------------------------------------------------------- */

.slider {
    width: 100%;
    height: 330px;
    border-radius: 5px;
    background: #3a251d;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.4);
}

.slider-block {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.slider-block .slider-line {
    display: flex;
    width: initial;
    height: 100%;
}

.slider-block .slider-line .slider-slide {
    height: 100%;
    align-self: stretch;
    padding: 30px;
    border-radius: 5px;
}

.slider-block .slider-nav {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 15px;
}

.slider-block .slider-nav .perv {
    width: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    margin: 5px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    opacity: 0.4;
}

.slider-block .slider-nav .perv:hover {
    opacity: 1;
    color: #fcbe00;
}

.slider-block .slider-nav .next {
    width: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    margin: 5px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    opacity: 0.4;
}

.slider-block .slider-nav .next:hover {
    opacity: 1;
    color: #fcbe00;
}

.slider-block .slider-nav .markers {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.slider-block .slider-nav .markers .marker {
    width: 10px;
    height: 10px;
    background: #fff;
    cursor: pointer;
    margin: 5px;
    margin-left: 8px;
    margin-right: 8px;
    border-radius: 12px;
    opacity: 0.3;
}

.slider-block .slider-nav .markers .m_active {
    opacity: 1;
    background: #fcbe00;
}

.slider-title {
    width: 100%;
    text-align: center;
    margin-top: 80px;
    font-family: Beaufort Medium;
    font-size: 35px;
    color: #ffa626;
    text-transform: uppercase;
    text-shadow: 0px 1px 1px #000;
}

.slider-text {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    color: #f5d2b6;
    text-shadow: 0px 1px 1px #000;
}

.slide-more-button {
    width: 200px;
    height: 44px;
    background: url(../images/yellow_button_texture.png) top center repeat;
    border-radius: 4px;
    font-family: Beaufort Medium;
    text-transform: uppercase;
    font-size: 17px;
    color: #21120f;
    text-shadow: 0px 1px 1px #ffa249;
    transition: all .2s ease-in-out;
    margin: 14px auto;
}

.slide-more-button:hover {
    filter: brightness(130%);
}

/* streams */
/* -------------------------------------------------------------------------------------------------------------------- */

.streams {
    width: 100%;
    margin-top: 42px;
}

.block-title {
    width: 100%;
    justify-content: center;
}

.block-title > .icon {
    width: 61px;
    height: 63px;
}

.block-title > .text {
    font-family: Beaufort Medium;
    font-size: 30px;
    color: #f2e2c8;
    margin-right: auto;
    margin-left: 20px;
}

.block-title > .text > span {
    display: block;
    font-family: Open Sans Regular;
    font-size: 14px;
    color: #a78c77;
}

.block-title > .yellow-button {
    width: 180px;
}

.yellow-button {
    width: 100%;
    height: 44px;
    background: url(../images/yellow_button_texture.png) top center repeat;
    border-radius: 4px;
    font-family: Beaufort Medium;
    font-size: 17px;
    color: #21120f;
    text-shadow: 0px 1px 1px #ffa249;
    transition: all .2s ease-in-out;
}

.yellow-button:hover {
    filter: brightness(130%);
}

.streams > .stream {
    width: calc((100% - 60px) / 3);
    height: 184px;
    border-radius: 5px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.stream a:hover img {
    filter: brightness(130%);
    box-shadow: 0 0 5px #ffa626;
}

/* homeHeader */
/* -------------------------------------------------------------------------------------------------------------------- */

.homeHeader {
    width: 100%;
    /*margin-top: 46px;*/
    /*padding-top: 38px;*/
    /*border-top: 1px solid rgba(255, 255, 255, 0.05);*/
}

.homeHeader > .block-title {
    padding-bottom: 20px;
}

.homeHeader > .news-item {
    width: calc((100% - 30px) / 2);
    height: 319px;
    border-radius: 5px;
    background: #3a251d;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.homeHeader > .news-item:hover .news-img {
    transform: scale(1.1, 1.1) rotate(-2deg);
}

.homeHeader > .news-item > .news-img {
    width: 600px;
    position: absolute;
    height: auto;
    top: -50px;
    left: calc((100% - 600px) / 2);
    z-index: 1;
    transition: all .8s ease-in-out;
}

.homeHeader > .news-item > .news-area {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    margin-top: -1px;
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(21, 2, 2, 0.95) 0%, rgba(21, 2, 2, 0.7) 50%, rgba(21, 2, 2, 0) 100%);
    padding: 30px;
    padding-top: 150px;
}

.homeHeader > .news-item > .news-area > .date {
    width: 100%;
    font-family: Open Sans Regular, serif;
    font-size: 14px;
    color: #947056;
    margin-top: 10px;
}

.homeHeader > .news-item > .news-area > .title {
    width: 100%;
    font-family: Beaufort Bold, serif;
    font-size: 24px;
    color: #ff9906;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-decoration: none;
}

.homeHeader > .news-item > .news-area > .title:hover {
    text-decoration: underline;
}

.homeHeader > .news-item > .news-area > .text {
    width: 100%;
    height: 70px;
    font-family: Open Sans Regular, serif;
    font-size: 14px;
    color: #b5a78f;
    line-height: 22px;
    overflow: hidden;
    margin-top: 8px;
}

.homeHeader > .news-item > .news-area > .text a {
    text-decoration: underline;
    color: #ff7d00;
}

.homeHeader > .news-item > .news-area > .text a:hover {
    text-decoration: none;
}

/* news */
/* -------------------------------------------------------------------------------------------------------------------- */

.news {
    width: 100%;
    margin-top: 46px;
    padding-top: 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.news > .block-title {
    padding-bottom: 20px;
}

.news > .news-item {
    width: calc((100% - 30px) / 2);
    height: 319px;
    border-radius: 5px;
    background: #3a251d;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.news > .news-item:hover .news-img {
    transform: scale(1.1, 1.1) rotate(-2deg);
}

.news > .news-item > .news-img {
    width: 600px;
    position: absolute;
    height: auto;
    top: -50px;
    left: calc((100% - 600px) / 2);
    z-index: 1;
    transition: all .8s ease-in-out;
}

.news > .news-item > .news-area {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    margin-top: -1px;
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(21, 2, 2, 0.95) 0%, rgba(21, 2, 2, 0.7) 50%, rgba(21, 2, 2, 0) 100%);
    padding: 30px;
    padding-top: 150px;
}

.news > .news-item > .news-area > .date {
    width: 100%;
    font-family: Open Sans Regular;
    font-size: 14px;
    color: #947056;
    margin-top: 10px;
}

.news > .news-item > .news-area > .title {
    width: 100%;
    font-family: Beaufort Bold;
    font-size: 24px;
    color: #ff9906;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-decoration: none;
}

.news > .news-item > .news-area > .title:hover {
    text-decoration: underline;
}

.news > .news-item > .news-area > .text {
    width: 100%;
    height: 70px;
    font-family: Open Sans Regular;
    font-size: 14px;
    color: #b5a78f;
    line-height: 22px;
    overflow: hidden;
    margin-top: 8px;
}

.news > .news-item > .news-area > .text a {
    text-decoration: underline;
    color: #ff7d00;
}

.news > .news-item > .news-area > .text a:hover {
    text-decoration: none;
}

/* footer */
/* -------------------------------------------------------------------------------------------------------------------- */

.f-navigation {
    width: calc(100% - 287px - 30px);
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.f-navigation > a {
    font-family: Beaufort Medium;
    font-size: 18px;
    color: #88796a;
    text-transform: uppercase;
    transition: all .2s ease-in-out;
}

.f-navigation > a:hover {
    color: #f5ba75;
}

.f-block {
    width: 406px;
    margin-top: 60px;
}

.f-block > .f-banners {
    width: 100%;
}

.f-block > .f-banners > a {
    opacity: 0.2;
    transition: all .4s ease-in-out;
}

.f-block > .f-banners > a > img {
}

.f-block > .f-banners > a:hover {
    opacity: 0.7;
}

.f-block > .f-cpr {
    width: 100%;
    font-family: Beaufort Medium;
    font-size: 14px;
    opacity: 0.4;
    margin-top: 40px;
    transition: all .4s ease-in-out;
    cursor: pointer;
}

.f-block > .f-cpr > img {
}

.f-block > .f-cpr:hover {
    opacity: 1;
}

.f-block > .unsimple {
    margin-top: 150px;
    opacity: 0.5;
    transition: all .4s ease-in-out;
}

.f-block > .unsimple:hover {
    opacity: 1;
}

/* status servers */
/* -------------------------------------------------------------------------------------------------------------------- */

main > .title {
    width: 100%;
    height: 73px;
    font-family: Beaufort Medium;
    font-size: 30px;
    color: #f5ca8b;
    text-align: center;
}

.page-content {
    width: 100%;
    background: #170604;
    margin-top: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.page-content.inner-stat {
    background: #170604;
}

.server-block {
    width: 100%;
}

.server-block:not(:last-child) {
    margin-bottom: 30px;
}

.server-block > .title {
    width: 100%;
    background: #200e0c;
    padding: 0px 30px;
    padding-top: 18px;
    padding-bottom: 21px;
    font-family: Beaufort Regular;
    font-size: 26px;
    color: #b5a080;
    border-radius: 5px;
    overflow: hidden;
}

.server-block > .title > span {
    font-family: Beaufort Medium;
    font-size: 26px;
    color: #ffa626;
}

.statistic {
    width: 100%;
    padding: 10px 30px;
    background: #28130f;
    border-radius: 5px;
    overflow: hidden;
}

.statistic > .block {
    height: auto;
}

.statistic > .block > img {
    margin-right: 10px;
    height: 30px;
}

.statistic > .block > .info {
    height: auto;
}

.statistic > .block > .info > .desc {
    font-size: 12px;
    color: #9e9281;
}

.statistic > .block > .info > .num {
    font-family: Beaufort Medium;
    font-size: 15px;
    color: #ffa626;
    margin-top: -2px;
}

.server-item-bg {
    width: 100%;
    margin-top: 8px;
    border-radius: 5px;
    overflow: hidden;
}

.server-item-bg > .server-item {
    width: 100%;
    padding: 12px 30px;
    background: #200e0c;
    cursor: pointer;
    transition: all .2s ease-in-out;
    color: #5d443f;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.server-item-bg > .server-item:hover {
    background: #28130f;
}

.server-item-bg > .server-item > .on {
    width: 6px;
    height: 6px;
    background: #00df00;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 223, 0, 0.8);
}

.server-item-bg > .server-item > .off {
    width: 6px;
    height: 6px;
    background: #df0000;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(223, 0, 0, 0.8);
}

.server-item-bg > .server-item > .name {
    width: 160px;
    font-family: Open Sans Bold;
    font-size: 16px;
    color: #b5a080;
    margin-left: 15px;
}

.server-item-bg > .server-item > .online {
    width: 120px;
    font-family: Open Sans Bold;
    font-size: 14px;
    color: #ffa626;
}

.server-item-bg > .server-item > .online > span {
    font-family: Open Sans Regular;
    font-size: 14px;
    color: #ab9069;
}

.server-item-bg > .server-item > .time {
    font-family: Open Sans Regular;
    font-size: 14px;
    color: #ab9069;
    margin-left: 60px;
}

.server-item-bg > .server-item > .time > i {
    margin-right: 10px;
}

.server-item-bg > .server-item > .arrow {
    margin-left: auto;
    transition: all .5s ease-in-out;
}

.server-item-bg > .server-item > .arrow_active {
    transform: scale(1, -1);
}

.server-item-bg > .info {
    width: 100%;
    padding: 20px 30px;
    background: rgb(29, 12, 10);
    position: relative;
    z-index: 1;
    display: none;
}

.server-item-bg > .info > .info-content {
    width: 100%;
}

.progress-bg {
    height: auto;
}

.progress-bg > .percent {
    height: auto;
    font-family: Open Sans Bold;
    font-size: 14px;
    color: #5081ff;
}

.progress-bg > .percent > span {
    font-family: Open Sans Bold;
    font-size: 14px;
    color: #5081ff;
}

.progress-bg > .percent > img {
    margin-left: 10px;
}

.progress-bg > .orda {
    color: #ca4726;
}

.progress-bg > .orda > span {
    color: #ca4726;
}

.progress-bg > .orda > img {
    margin-left: 0px;
    margin-right: 10px;
}

.progress-bg > .progress {
    width: 150px;
    height: 3px;
    background: #ca4726;
    margin: 10px;
}

.progress-bg > .progress > .bar {
    height: 100%;
    background: #5081ff;
    border-right: solid 2px #000;
}

.server-item-bg > .info > .info-content > .ping,
.server-item-bg > .info > .info-content > .wait {
    font-family: Open Sans Regular;
    font-size: 14px;
    color: #634c46;
}

.server-list-title {
    width: 100%;
    padding: 18px 30px;
    padding-bottom: 10px;
    font-family: Beaufort Medium;
    font-size: 20px;
    color: #755a54;
}

/* inner text */
/* -------------------------------------------------------------------------------------------------------------------- */

.inner-text {
    padding: 30px;
    font-size: 14px;
    color: #a58e7c;
    min-height: 100%;
}

ul {
    margin-left: 30px;
}

ul li {
    color: #6a5a4e;
}

p {
    color: #a58e7c;
}

h1, h2, h3, h4, h5, h6 {
    color: #c8a387;
}

table {
    width: 100%;
}

table tr {
    width: 100%;
}

table tr:nth-child(1) td {
    background: #2f1714;
    color: #c7a993;
    font-family: Open Sans Bold;
}

table tr td {
    padding: 12px;
    text-align: center;
    background: #1d0e0c;
}

table tr:nth-child(n+2):nth-child(odd) td {
    background: #23110e;
}


.uc {
    text-transform: uppercase;
}

.field {
    position: relative;
}

.field > input,
.field > textarea,
input,
textarea,
select {
    background: #161616;
    border: 1px solid #707070;

    box-shadow: inset 6px 6px 8px rgba(255, 255, 255, 0.06), inset -6px -6px 8px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 6px 6px 8px rgba(255, 255, 255, 0.06), inset -6px -6px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 6px 6px 8px rgba(255, 255, 255, 0.06), inset -6px -6px 8px rgba(0, 0, 0, 0.1);

    height: 30px;

    padding: 0 12px;
    position: relative;
    z-index: 2;

    font: 14px/30px "PT Sans", Arial, Helvetica, sans-serif;
    color: #fff8d6 !important;
}

input.error,
textarea.error,
select.error {
    border: 1px solid red; /* Changes the border color to red */
}

.error-message {
    display: block;
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.field > label {
    padding: 0 12px;
    position: absolute;
    z-index: 3;
    top: 1px;
    left: 1px;

    font: 14px/30px "PT Sans", Arial, Helvetica, sans-serif;
    color: #fff8d6;

    pointer-events: none;
}

.field > textarea {
    height: auto;
    padding: 10px;
    line-height: 16px;
}

.area > label {
    padding: 10px;
    line-height: 16px;
}

select {
    padding: 0 0 0 12px;
}


.row {
    margin: 10px 0;
}

.row label {
    display: block;
    float: left;
    width: 200px;
}

.clearfix:after {
    display: block;
    clear: both;
    content: ' ';
}

.muted {
    opacity: 0.5;
}

.title-block {
    background: #28130f;
    padding: 10px;
    border-radius: 5px;
}

.title-block h1 {
    margin: 0;
}

.list-item {
    margin: 1rem 0;
    background: #200e0c;
    padding: 10px;
    border-radius: 5px;
}

.list-item h2 {
    margin: 0 0 1rem 0;
}

.list-item .image-wrapper {
    width: 196px;
}

.list-item .image-wrapper img {
    width: 100%;
}

.list-item .content {
    margin-left: 210px;
}

.list-item .yellow-button {
    width: 190px;
}


ul.yiiPager .hidden {
    display: none;
}

ul.yiiPager a:link, ul.yiiPager a:visited {
    border: none;
    color: #ffa249;
}

ul.yiiPager .selected a {
    background: #ffa249;
    color: #000000;
}

a.link {
    color: #ffa249;
    font-weight: bold;
}

a.link:hover {
    text-decoration: underline;
}

.inner-text a {
    text-decoration: underline;
}

.inner-text a:hover {
    color: #ffa626;
}

.inner-text a.yellow-button,
.inner-text a.slide-more-button {
    text-decoration: none;
}

.inner-text a.yellow-button:hover,
.inner-text a.slide-more-button:hover {
    color: initial;
}

.content-wrapper {
    background-color: #200e0c;
    padding: 15px;
    margin: -15px;
}

.stream .meta {
    text-align: center;
    font-size: 13px;
}

.inner-text h2 a {
    text-decoration: none;
}

.inner-text h2 a:hover {
    color: #ffa626;
}

.stream .meta span svg {
    vertical-align: sub;
}

.hidden {
    display: none;
}

table.table tr td {
    background: #2f1714
}

table.table tr {
    border-bottom: 2px solid #200e0c;
}

table.table {
    border-collapse: collapse;
}

table.table.table-inner tr td {
    background: #28130f;
}

input.yellow-button {
    width: 190px;
    color: #21120f !important;
    cursor: pointer;
}

.stream {
    text-align: center;
}

.block-title > .text h2 {
    margin: 0;
    font-size: 30px;
    color: #f2e2c8;
}

.page-title h1 {
    margin: 20px 0 0 0;
    font-size: 20px;
    color: #f2e2c8;
}

.winter .resource {
    background: rgba(21, 18, 19, 0.7);
}

.winter .page-content {
    background: rgba(23, 6, 4, 0.7);
}

.winter .content-wrapper {
    background-color: rgba(32, 14, 12, 0.5);
}

.winter #middle:before {
    background: url(../images/bg/footer_winter.png) bottom center no-repeat,
    url(../images/bg/middle_bg_winter.png) top center no-repeat;
}

.winter header {
    background-image: url(../images/bg/head_bg_winter.jpg);
}

.winter main {
    background-image: url(../images/bg/main_top_bg_winter.png);
}

.winter nav:before {
    background-image: url(../images/bg/nav_bg_winter.png);
}

.winter .open_navigation {
    background-image: url(../images/bg/nav_m_bg.png);
}

.winter #middle:after {
    background-image: url(../images/bg/top_content_winter.png);
}

.winter .login-switch > .login-button {
    background-image: url(../images/login_button_bg_winter.png);
}

.offer-bloc {
    width: calc(100% - 287px - 30px);
    padding-top: 20px;
}

.offer-bloc a {
    opacity: 0.4;
}

.offer-bloc a:hover {
    opacity: 1;
}

.offer-bloc img {
    height: 30px;
}

.plain-text ul li,
.plain-text p {
    color: #a58e7c;
}
