@font-face {
    src: url('../Fonts/OpenSans_semibold.ttf');
    font-family: 'OpenSans_semibold';
}

@font-face {
    src: url('../Fonts/OpenSans_light.ttf');
    font-family: 'OpenSans_light';
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

#wrapper {
    overflow: hidden;
}

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, 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;
    overflow-x: hidden;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    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;
}

a {
    display: block;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1, h2, h3, h4 {
    color: #fff;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

span {
    display: block;
    font-size: 14px;
}

p {
    font-size: 18px;
}

img {
    max-width: 100%;
}

button, .button {
    white-space: nowrap;
    font-family: "Candara", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../images/button.png") center no-repeat;
    background-size: cover;
    color: #2d1100;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-shadow: 0 1px 3px #fff;
    min-width: 178px;
    height: 52px;
    box-shadow: 0 10px 30px 2px rgba(198, 130, 0, 0.6);
    font-size: 18px;
    border: none;
    border-radius: 5px;
    padding: 0 20px;
    width: fit-content;
}

button:hover, .button:hover {
    filter: brightness(120%);
}

.button-small {
    min-width: 110px;
    height: 33px;
    font-size: 14px;
    background-size: contain !important;
}

.button-large {
    min-width: 240px;
    height: 70px;
    font-size: 24px;
    background-size: contain !important;
}

.blue-button {
    box-shadow: 0 10px 20px 0 rgba(98, 223, 234, 0.4);
    background: url("../images/left-blue-button.jpg") left no-repeat,
    url("../images/right-blue-button.jpg") right no-repeat,
    url("../images/center-blue-button.jpg") 113px repeat-x;
    text-shadow: 0 1px 3px #fff;
    color: #0e161d;
}

.blue-button:hover {
    filter: brightness(1.1);
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="search"] {
    height: 60px;
    border: none;
    outline: none;
    color: #fff;
    background: #1e303a;
    font-size: 16px;
    padding: 0 32px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

textarea {
    font-size: 16px;
    background: #0e161d;
    color: #fff;
    padding: 30px;
    border: none;
    resize: none;
}

textarea::placeholder {
    color: #fff;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    top: 2px;
    background-color: #172934;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #5097a9;
}

input:focus + .slider {
    box-shadow: 0 0 1px #5097a9;
}

input:checked + .slider:before {
    -webkit-transform: translateX(19px);
    -ms-transform: translateX(19px);
    transform: translateX(19px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 10px;
}

.slider.round:before {
    border-radius: 50%;
}

.search-input {
    position: relative;
}

.search-input:after {
    cursor: pointer;

}

.search-input input {
    width: 100%;
    background: #111c24;
    color: #889cad;
}

.search-input input::placeholder {
    color: #889cad;
}

/* tooltips */
.has-tooltip,
.has-text-tooltip {
    cursor: pointer;
}

.tippy-box[data-theme~='none'] {
    padding: 0;
    background-color: transparent;
}

.tippy-box[data-theme~='default'] {
    font-size: 14px;
    padding: 0 10px;
    color: #fff;
    background-color: #0e1720;
}

/* The container must be positioned relative: */
.custom-select {
    width: 300px;
    position: relative;
}

.custom-select select {
    display: none; /*hide original SELECT element: */
}

.select-selected {
    display: flex;
    position: relative;
    align-items: center;
    height: 60px;
    padding: 0 30px;
    background: #0e161d;
    color: #fbc430 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 15px;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 58px;
    height: 58px;
    background: #0c1216 url("../images/right-arrow.png") center no-repeat;
    transform: rotate(90deg);
    transition: 0.3s;
}

/* Point the arrow upwards when the select box is open (active): */
/*.select-selected.select-arrow-active:after {*/
/*    border-color: transparent transparent #fff transparent;*/
/*    top: 7px;*/
/*}*/

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 30px;
    border-top: 1px solid #172934;
    color: #889cad;
    letter-spacing: 1.5px;
}

/* Style items (options): */
.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    background: #0e161d;
    max-height: 500px;
    overflow-y: auto;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background: #0c1216;
    color: #02eae7 !important;
}

.checkbox-wrap {
    display: inline-block;
    position: relative;
    width: 15px;
    height: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid #666569;
}

.checkbox-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0 !important;
    width: 0 !important;
    min-width: 0 !important;
}

.checkmark {
    display: none !important;
    position: absolute;
    top: -4px;
    right: -3px;
    height: 16px;
    width: 16px;
    background: url("../images/checkmark.png");
}

.checkbox-wrap input:checked ~ .checkmark {
    display: block !important;
}

.pagination {
    position: relative;
    justify-content: center;
}

.pagination li {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: #0e161d;
    color: #ffb830;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    border-radius: 5px;
    margin: 0 7.5px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.pagination li.active,
.pagination li:hover {
    opacity: 1;
}

.pagination .prev-button,
.pagination .next-button {
    background: #0e161d url("../images/slider-arrow.png") center no-repeat;
}

.pagination .prev-button {
    margin-right: 130px;
    transform: rotate(-180deg);
}

.pagination .next-button {
    margin-left: 130px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-35 {
    margin-top: 35px;
}

.mt-50 {
    margin-top: 50px;
}

.pt-50 {
    padding-top: 50px;
}

.yellow-title {
    color: #fbc430;
    text-transform: uppercase;
    text-align: center;
}

.yellow-title1 {
    color: #fbc430;
    text-align: center;
}

.red-title {
    color: #e7162f;
    text-transform: uppercase;
    text-align: center;
}


:focus {
    outline: none;
}

::-webkit-input-placeholder {
    color: #696868;
}

::-moz-placeholder {
    color: #696868;
}

:-moz-placeholder {
    color: #696868;
}

:-ms-input-placeholder {
    color: #696868;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex-c {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.flex-s {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex-s-c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.flex-c-c {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.bright:hover {
    filter: brightness(120%);
}

.title {
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}

.title:after,
.title:before {
    content: "";
    width: 165px;
    height: 29px;
    background: url("../images/title-part.png") center no-repeat;
    margin-top: 10px;
}

.title:before {
    margin-right: 18px;
}

.title:after {
    margin-left: 18px;
    transform: rotateY(180deg);
}


.title-red {
    color: #e7162f;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}

.title-red:after,
.title-red:before {
    content: "";
    width: 165px;
    height: 29px;
    background: url("../images/title-part.png") center no-repeat;
    margin-top: 10px;
}

.title-red:before {
    margin-right: 18px;
}

.title-red:after {
    margin-left: 18px;
    transform: rotateY(180deg);
}


.title-green {
    color: #18d712;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}

.title-green:after,
.title-green:before {
    content: "";
    width: 165px;
    height: 29px;
    background: url("../images/title-part.png") center no-repeat;
    margin-top: 10px;
}

.title-green:before {
    margin-right: 18px;
}

.title-green:after {
    margin-left: 18px;
    transform: rotateY(180deg);
}



.block-title {
    position: relative;
    font-weight: normal;
    color: #fbc430;
    padding-left: 35px;
    text-shadow: 0 0 10px rgba(240, 141, 47, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 24px;
}

.block-title:before {
    content: '';
    position: absolute;
    left: -54px;
    top: 50%;
    margin-top: -40px;
    width: 128px;
    height: 86px;
    background: url("../images/download-page/download-title-element.png") center no-repeat;
}

.block-title span {
    font-size: 24px;
    display: inline;
    color: #fff;
    margin-left: 10px;
}

.top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.top-border:before,
.top-border:after {
    content: "";
    position: absolute;
    background: url("../images/top-border.png") center no-repeat;
    width: 51px;
    height: 51px;
    top: -12px;
}

.top-border:before {
    left: -19px;
}

.top-border:after {
    right: -19px;
    transform: rotateY(180deg);
}

.bottom-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.bottom-border:before,
.bottom-border:after {
    content: "";
    position: absolute;
    background: url("../images/bottom-border.png") center no-repeat;
    width: 34px;
    height: 41px;
    bottom: -2px;
}

.bottom-border:before {
    left: -2px;
}

.bottom-border:after {
    right: -2px;
    transform: rotateY(180deg);
}

.silver-border .top-border:before,
.silver-border .top-border:after {
    background-image: url("../images/top-frame-market.png");
    width: 46px;
}

.silver-border .top-border:before {
    left: -14px;
}

.silver-border .top-border:after {
    right: -14px;
}

.silver-border .bottom-border:before,
.silver-border .bottom-border:after {
    background-image: url("../images/bottom-frame-market.png");
}

.blue-silver-border .top-border:before,
.blue-silver-border .top-border:after {
    background-image: url("../images/top-blue-frame.png");
}

.blue-silver-border .top-border:before {
    left: -18px;
}

.blue-silver-border .top-border:after {
    right: -18px;
}

.blue-silver-border .bottom-border:before,
.blue-silver-border .bottom-border:after {
    background-image: url("../images/bottom-blue-frame.png");
}

.blue-border .top-border:after,
.blue-border .top-border:before,
.blue-border .bottom-border:after,
.blue-border .bottom-border:before {
    top: 0;
    width: 20px;
    height: 23px;
    background: url("../images/market-page/deposit-top-elem.png") center no-repeat;
}

.blue-border .bottom-border:after,
.blue-border .bottom-border:before {
    top: auto;
    bottom: 0;
}

.blue-border .top-border:before,
.blue-border .bottom-border:before {
    left: -2px;
}

.blue-border .top-border:after,
.blue-border .bottom-border:after {
    right: -2px;
}

.blue-border .bottom-border:before {
    transform: rotateX(180deg);
}

.blue-border .bottom-border:after {
    transform: rotateZ(180deg);
}

.abil {
    display: flex;
    align-items: center;
    padding: 3px 2px;
    background: #111920;
}

.abil span {
    display: block;
}

.abil .bar {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #e4ff00, #0bffe5);
}

.need-to-activate .bar {
    animation: 3s barWidth;
}

@keyframes barWidth {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.info-abil {
    width: 450px;
    position: relative;
    margin-bottom: 10px;
}

.info-abil img {
    margin-right: 8px;
}

.info-abil .title-abil {
    color: #00fffc;
    font-size: 15px;
}

.abil-stat {
    position: absolute;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #00fffc;
    right: 0;
}

.info-abil .abil {
    width: 180px;
    position: absolute;
    right: 40px;
}

body {
    width: 100%;
    background: url(../images/header_1.jpg) center top no-repeat;
    background-color: #0e161d;
    font-family: 'Candara', sans-serif;
    font-size: 14px;
    color: #506a84;
}

.top-panel {
    background: rgba(4, 15, 23, 0.85);
    z-index: 99;
    position: fixed;
    width: 100%;
}

.top-panel .container {
    height: 100px;
    max-width: 1900px;
}

.top-panel-left {
    height: 100%;
}

.menu {
    display: flex;
    height: 100%;
    margin-left: 10px;
}

.menu > li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.menu .menu-item {
    display: block;
    position: relative;
    padding-right: 20px;
    padding-left: 80px;
}

.menu .menu-item:before {
    position: absolute;
    content: "";
    background: url("../images/icon-menu.png") center no-repeat;
    width: 58px;
    height: 38px;
    left: 18px;
    top: calc(50% - 15px);
}

.menu .menu-item-title {
    line-height: 1.6;
    text-transform: uppercase;
    font-weight: normal;
}

.menu .menu-item-info {
    color: #506a84;
}

.menu li > .menu-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.menu .menu-a {
    padding-right: 40px;
}

.menu .menu-a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    right: 18px;
    border: 7px solid #506a84;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    transition: 0.3s;
}

.menu .menu-a.show:after {
    transform: rotate(180deg);
    margin-top: -8px;
}

.menu .dropDown-menu {
    display: none;
    position: absolute;
    left: 0;
    width: 260px;
    top: 100%;
    background: rgba(14, 22, 29, 0.8);
    z-index: 10;
}

.menu .dropDown-menu .menu-item {
    height: 75px;
    position: relative;
    padding-left: 80px;
    text-align: left;
    background: rgba(4, 15, 23, 0.6);
    transition: 0.3s;
}

.menu .menu-item:hover {
    background: rgba(4, 15, 23, 0.8);
}

.menu .menu-item.first-depth:hover {
    background: rgba(4, 15, 23, 0.6);
}

.menu .menu-a.show {
    background: rgba(4, 15, 23, 0.8);
}

.registered .sign-block {
    display: none;
}

.top-panel-right .separator {
    margin: 0 30px;
}

.lang-block {
    margin-left: auto;
    margin-right: 50px;
    position: relative;
    height: 26px;
    padding-top: 3px;
    font-size: 16px;
}

.lang-block a:hover {
    color: #fbc430;
}

.lang-block img {
    position: relative;
    left: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-bottom: -2px;
    transition: all 0.3s ease;
    background-size: 16px
}

.login-button {
    box-shadow: none;
}

.main-item {
    position: relative;
    color: #fff;
    z-index: 9;
}

.hidden-block {
    position: absolute;
    background: #061019;
    min-width: 180px;
    z-index: 2;
    left: -10px;
    top: 73px;
    transition: all 0.5s ease;
    visibility: hidden;
    opacity: 0;
    padding: 10px 0;
}

.hidden-block li {
    width: 100%;
}

.hidden-block a {
    display: flex;
    align-items: center;
    padding: 8px 40px;
    color: #fff;
}

.hidden-block a:hover {
    background: #131c25;
}

.hidden-block:after {
    border: 10px solid transparent;
    border-bottom-color: #061019;
    position: absolute;
    left: 34px;
    top: -20px;
    content: '';
}

.main-item:focus ~ .hidden-block,
.main-item:active ~ .hidden-block {
    visibility: visible;
    opacity: 1;
}

.sign-up a {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 2;
}

.registered .profile {
    display: flex;
}

.profile {
    height: 100px;
    display: none;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.profile img {
    margin-left: 20px;
    border-radius: 50%;
    height: 65px;
    width: 65px;
    transition: 0.3s;
}

.profile .nickname {
    position: relative;
    display: block;
    padding-right: 27px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 180px;
    font-size: 16px;
    font-weight: bold;
    color: #fbc430;
}

.profile .nickname:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: calc(50% - 4px);
    right: 0;
    border: 7px solid #506a84;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    transition: 0.3s;
}

.sign-up.show .nickname:after {
    margin-top: -7px;
    transform: rotate(180deg);
}

.cpMenu {
    position: absolute;
    background: #061019;
    width: 350px;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    z-index: 5;
}

.cpMenu:after {
    content: '';
    position: absolute;
    right: 82px;
    bottom: 100%;
    border: 10px solid transparent;
    border-bottom: 10px solid #061019;
}

.cpMenu-bottom {
    max-height: 400px;
    overflow-y: auto;
}

.icon-login-big {
    position: relative;
    padding: 25px 29px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.icon-login-big:hover {
    background: #131c25;
}

.icon-login-big img {
    margin-left: 0;
    width: 43px;
    height: 43px;
}

.icon-login-big p {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #fff;
    margin-left: 20px;
}

.icon-login-big span {
    color: #889cad;
    margin-top: 8px;
}

.cpMenu ul li a {
    display: flex;
    align-items: center;
    padding: 0 32px;
    position: relative;
    height: 60px;
    font-size: 16px;
    color: #fff;
    transition: 0.3s;
}

.cpMenu ul li a .value {
    position: absolute;
    right: 30px;
    font-size: 20px;
    color: #bffb30;
}

.cpMenu .messages-counter {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #fbc430;
    box-shadow: 0 0 10px 0 #fbc430;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -5px;
    left: 5px;
}

.cpMenu .messages-value {
    margin-left: auto;
    position: relative;
    font-size: 16px;
    padding-right: 27px;
}

.cpMenu .messages-value:after {
    content: '';
    position: absolute;
    right: 0;
    top: calc(50% - 5px);
    width: 21px;
    height: 16px;
    background: url("../images/messager-icon.png") center no-repeat;
}

.cpMenu ul li a .cash {
    position: absolute;
    right: 30px;
    font-size: 20px;
    color: #bffb30;
    padding-right: 30px;
}

.cpMenu ul li a .cash:after {
    content: '';
    width: 24px;
    height: 21px;
    right: 0;
    top: calc(50% - 10.5px);
    position: absolute;
    background: url('../images/coin-icon.png') center no-repeat;
}

.cpMenu ul li:hover a {
    position: relative;
    color: #fbc430;
    background: #131c25;
}

.cpMenu .settings a:before,
.cpMenu .logout a:before {
    content: '';
    width: 17px;
    height: 17px;
    background: url("../images/profile-icons.png") center top no-repeat;
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -8px;
}

.cpMenu .logout a:before {
    background-position: center bottom;
}

.cpMenu .links {
    margin-top: 30px;
}

.cpMenu .links li a {
    color: #bad0e7 !important;
}

header > .container {
    height: 744px;
    position: relative;
}

.logo {
    width: fit-content;
    padding-top: 145px;
    margin-left: 32px;
}

.bottom-header {
    width: 100%;
    position: absolute;
    bottom: 48px;
}

.bottom-header .container {
    max-width: 1180px;
}

.server-info,
.download-btn {
    width: 420px;
    height: 130px;
    padding: 30px 25px;
    background: url("../images/download-bg.png") center no-repeat;
}

.server-info {
    color: #fff;
    background-image: url("../images/server-bg.png");
}

.server-info .server-name {
    text-transform: uppercase;
}

.server-info .server-status,
.server-info .server-online-members {
    color: #e4ff00;
}

.server-info .abil {
    width: 100%;
    margin: 15px 0;
}

.download-btn {
    padding-left: 165px;
    flex-direction: column;
    justify-content: center;
}

.download-btn h2 {
    font-size: 30px;
    text-transform: uppercase;
}

.download-btn span {
    color: #abd687;
}

.toTop {
    min-width: auto;
    width: 45px;
    height: 45px;
    background: #0e161d url("../images/slider-arrow.png") center no-repeat;
    transform: rotate(-90deg);
    box-shadow: 0 0 40px 5px rgba(109, 251, 195, 0.15);
    border-radius: 5px;
    margin: 85px auto 45px auto;
}

footer {
    background: #0d2228 url("../images/footer-bg.jpg") center bottom no-repeat;
    padding-top: 70px;
    padding-bottom: 30px;
}

.footer-menu li {
    margin: 0 30px;
}

.footer-menu a {
    font-size: 18px;
    color: #4b646b;
    text-transform: uppercase;
}

.footer-menu a:hover {
    color: #86cee2;
}

.footer-logo {
    width: fit-content;
    margin: 40px auto 35px auto;
}

.footer-logo img {
    width: 335px;
}

.copyright {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    color: #88bfab;
}

/* modals */

.modal {
    max-width: 680px;
    width: 100%;
    background: #172934;
    position: fixed;
    top: 0;
    left: calc(50% - 340px);
    display: none;
    opacity: 0;
    z-index: 999;
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.5);
}

#overlay {
    z-index: 998;
    position: fixed;
    background-color: rgba(14, 22, 29, 0.95);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    display: none;
}

#swiper-modal {
    background: none;
    max-width: 1000px;
    left: calc(50% - 500px);
    box-shadow: none;
}

#swiper-modal .title {
    margin-bottom: 20px;
}

#swiper-modal .modal_close.cross {
    top: 0;
    right: 20px;
}

.main-swiper-block {
    position: relative;
    width: 100%;
    height: 600px;
}

.main-swiper-block .swiper-container {
    height: 100%;
}

.main-swiper-block .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
}

.main-swiper-navigation {
    width: 100%;
    height: 110px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(14, 22, 29, 0.7) linear-gradient(to right, rgba(57, 178, 204, 0.2), transparent);
    z-index: 1;
    padding: 0 40px;
}

.main-swiper-pagination {
    display: flex;
}

.main-swiper-navigation .swiper-pagination-bullet {
    font-family: "Open Sans", sans-serif;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffb830;
    background: #0e161d;
    opacity: 0.5;
    margin: 0 5px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

.main-swiper-navigation .swiper-pagination-bullet-active {
    color: #ffb830;
    opacity: 1;
}

.main-swiper-buttons {
    gap: 15px;
}

#error-modal .error-content {
    position: relative;
    background: #1e303a;
    padding: 40px;
    margin-top: 60px;
    margin-bottom: 35px;
}

#error-modal .error-content .icon {
    position: absolute;
    width: 55px;
    height: 60px;
    top: -30px;
    left: calc(50% - 27.5px);
    background: url('../images/input-elem-bg.png') center no-repeat;
}

#error-modal .error-content span {
    width: 100%;
    height: 100%;
    background: radial-gradient(rgb(58, 245, 6), transparent, transparent);
}

#error-modal .error-text {
    text-align: center;
    font-size: 16px;
    color: #fff;
}

#error-modal button {
    margin: 0 auto;
}

#error-modal1 .error-content {
    position: relative;
    background: #1e303a;
    padding: 40px;
    margin-top: 60px;
    margin-bottom: 35px;
}

#error-modal1 .error-content .icon {
    position: absolute;
    width: 55px;
    height: 60px;
    top: -30px;
    left: calc(50% - 27.5px);
    background: url('../images/input-elem-bg.png') center no-repeat;
}

#error-modal1 .error-content span {
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(245, 6, 6, 0.4), transparent, transparent);
}

#error-modal1 .error-content span:after,
#error-modal1 .error-content span:before {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    transform: rotate(-45deg);
    background: #f50606;
    left: calc(50% - 7px);
    top: calc(50% - 1px);
}

#error-modal1 .error-content span:after {
    transform: rotate(45deg);
}

#error-modal1 .error-text {
    text-align: center;
    font-size: 16px;
    color: #fff;
}

#error-modal1 button {
    margin: 0 auto;
}

.modal_close.cross {
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.modal-content {
    max-height: 80vh;
    padding: 50px;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal_close.cross:before,
.modal_close.cross:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    transform: rotate(45deg);
    background: #fff;
}

.modal_close.cross:after {
    transform: rotate(-45deg);
}

.modal form {
    width: 500px;
    text-align: center;
    margin: 0 auto;
}

.modal input {
    width: 100%;
    text-align: center;
}

.modal .input-label {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: #fbc430;
    margin-top: 30px;
    margin-bottom: 15px;
}

.modal .submit-btn {
    margin: 65px auto 50px auto;
}

.auth-links a {
    display: inline-block;
    margin: 0 5px;
}

.registration-link {
    color: #fbc430;
    text-decoration: underline;
}

.input-wrap {
    position: relative;
}

.input-wrap:before {
    content: "";
    position: absolute;
    top: calc(50% - 30px);
    left: -27.5px;
    width: 55px;
    height: 60px;
}

.input-wrap.name:before {
    background: url("../images/input-elems.png") center 10px no-repeat,
    url("../images/input-elem-bg.png") center no-repeat;
}

.input-wrap.password:before {
    background: url("../images/input-elems.png") center -99px no-repeat,
    url("../images/input-elem-bg.png") center no-repeat;
}

.input-wrap.email:before {
    background: url("../images/input-elems.png") center -45px no-repeat,
    url("../images/input-elem-bg.png") center no-repeat;
}

.input-wrap.country:before {
    background: url("../images/input-elems.png") center -150px no-repeat,
    url("../images/input-elem-bg.png") center no-repeat;
}

.input-wrap.personal:before {
    background: url("../images/input-elems.png") center -200px no-repeat,
    url("../images/input-elem-bg.png") center no-repeat;
}

.confirm-rules {
    font-size: 16px;
}

.confirm-rules a {
    display: inline-block;
    color: #fbc430;
    text-decoration: underline;
    margin-left: 5px;
}

.confirm-rules .checkbox-wrap {
    margin-right: 10px;
}

.tab {
    display: none;
}

.tab.active {
    display: block;
    animation: tab 0.6s linear;
}

@keyframes tab {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* pages */

.page > .container {
    color: #fff;
    position: relative;
    padding: 50px;
    background: #172934;
}

.page > .title {
    margin-top: 40px;
    margin-bottom: 50px;
}

.history-block {
    padding: 0 50px;
    height: 100px;
    border-bottom: 1px solid #2e404c;
}

.history-block a {
    color: #00fffc;
    text-transform: uppercase;
    font-size: 16px;
}

.history li {
    position: relative;
    margin-right: 40px;
}

.history li:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 2px solid #889cad;
    border-right: 2px solid #889cad;
    transform: rotate(45deg);
    position: absolute;
    right: -22px;
    top: calc(50% - 3px);
}

.history li:last-child:after {
    display: none;
}

.back-btn {
    position: relative;
    padding-left: 28px;
}

.back-btn:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 13px;
    background: url('../images/market-page/back-icon.png') center no-repeat;
    top: calc(50% - 7px);
    left: 0;
}

.icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 60px;
    background: url("../images/input-elem-bg.png") center no-repeat;
}

.online-status {
    font-size: 16px;
    color: #cbff3f;
    text-shadow: 0 0 10px #cbff3f;
}

/* table */

table {
    width: 100%;
    table-layout: fixed;
    font-size: 16px;
}

tr {
    height: 65px;
}

tr:nth-child(2n - 1) {
    background: #15252e;
}

tr:nth-child(2n) {
    background: #172934;
}

table thead tr {
    background: #0e161d !important;
}

table thead tr th {
    color: #00fffc !important;
    text-transform: uppercase !important;
}

td {
    position: relative;
    vertical-align: middle;
    padding-left: 45px;
    border: 1px solid #223642;
    padding-right: 30px;
}

table .first-three {
    color: #f7c130;
    font-weight: bold;
}

table .second-three {
    color: #f07700;
}

table.with-hover tr {
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

table.with-hover tbody tr:hover {
    z-index: 2;
    box-shadow: 0 0 15px 0 rgba(95, 223, 255, 0.23),
    inset 0 0 7px 0 rgba(106, 191, 255, 0.4);
    filter: brightness(1.1);
}

table td,
table th {
    border: 1px solid #223642;
    vertical-align: middle;
    text-align: left;
    padding: 0 25px;
}

table td.centered,
table th.centered {
    text-align: center;
}

table td.number-cell,
table th.number-cell {
    width: 66px;
    padding: 0;
    text-align: center;
}

.players-table {
    margin-top: 30px;
}

.players-table .first-cell {
    width: 65px;
    text-align: center;
}

.players-table .second-cell {
    position: relative;
    width: 25%;
    padding-left: 115px;
}

.players-table .online-status {
    position: absolute;
    left: 30px;
}

.players-table .third-cell {
    padding-left: 30px;
}

.players-table .forth-cell {
    position: relative;
    padding-left: 80px;
}

.players-table .ava {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #213237;
    top: calc(50% - 19px);
    left: 20px;
}

.players-table .ava img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.players-table .fifth-cell {
    width: 12%;
    text-align: center;
}

.players-table .six-cell {
    width: 14%;
    text-align: center;
}

.local-title {
    display: flex;
    align-items: center;
    height: 65px;
    background: #0e161d;
    border: 1px solid #223642;
    padding-left: 40px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #00fffc !important;
}

.sidebar-navigation {
    min-width: 330px;
    margin-right: 25px;
    margin-top: 2px;
}

.sidebar-navigation li {
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 60px;
    background: #13232f;
    font-size: 16px;
    text-transform: uppercase;
    padding-left: 40px;
    margin-bottom: 4px;
    transition: 0.3s;
}

.sidebar-navigation li.active,
.sidebar-navigation li:hover {
    box-shadow: 0 0 15px 0 rgba(95, 223, 255, 0.23),
    inset 0 0 7px 0 rgba(106, 191, 255, 0.6);
    filter: brightness(1.2);
}

.photo-upload {
    cursor: pointer;
    width: 140px;
    height: 190px;
    background: #13232f url("../images/guilds-page/photo-icon.png") center no-repeat;
    transition: 0.3s;
}

.photo-upload.empty {
    box-shadow: inset 0 0 7px 0 rgba(106, 191, 255, 0.4);
}

.photo-upload:hover {
    box-shadow: inset 0 0 7px 0 rgba(106, 191, 255, 0.4),
    0 0 30px 5px #316b7d;
}

.styled-tabs {
    border-bottom: 1px solid #2e404c;
    gap: 80px;
}

.styled-tabs .tab-button {
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 16px;
    color: #889cad;
    padding-top: 10px;
    padding-bottom: 18px;
    transition: 0.3s;
}

.styled-tabs .tab-button:before {
    content: '';
    width: 126px;
    height: 80px;
    background: url("../images/guilds-page/table-tab-hover-bg.png") center no-repeat;
    position: absolute;
    left: calc(50% - 63px);
    bottom: -1px;
    opacity: 0;
    transition: 0.3s;
}

.styled-tabs .tab-button.active,
.styled-tabs .tab-button:hover {
    color: #00fffc;
}

.styled-tabs .tab-button.active:before,
.styled-tabs .tab-button:hover:before {
    opacity: 1;
}

.amount-with-border {
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #bffb30;
    width: 164px;
    height: 73px;
    background: url("../images/raffle-amount-bg.jpg") center no-repeat;
}

.amount-with-border .top-border:after,
.amount-with-border .top-border:before {
    top: -7px;
    width: 27px;
    height: 30px;
    background: url("../images/donation-page/donation-option-elem.png") center no-repeat;
}

.amount-with-border .top-border:before {
    left: -6px;
}

.amount-with-border .top-border:after {
    right: -6px;
}

.amount-with-border .bottom-border:after,
.amount-with-border .bottom-border:before {
    bottom: -7px;
    width: 27px;
    height: 30px;
    background: url("../images/donation-page/donation-option-elem.png") center no-repeat;
}

.amount-with-border .bottom-border:before {
    left: -6px;
    transform: rotateX(180deg);
}

.amount-with-border .bottom-border:after {
    right: -6px;
    transform: rotateZ(180deg);
}

.deposit-top {
    padding: 50px;
    border-bottom: 1px solid #2e404c;
}

.deposit-top .content {
    width: 100%;
    position: relative;
    background: #111c24;
}

.deposit-top .profile-deposit,
.deposit-top .deposit-amount,
.deposit-top .cart {
    padding: 30px;
}

.deposit-top .deposit-profile-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin-right: 35px;
}

.deposit-top .deposit-profile-info h2 {
    color: #f7c130;
    margin-bottom: 20px;
}

.deposit-top .deposit-profile-info {
    font-size: 16px;
    line-height: 24px;
}

.deposit-top .deposit-profile-info a {
    color: #00fffc;
    text-decoration: underline;
}

.deposit-top .deposit-amount {
    width: 460px;
    height: 190px;
    background: #18232b;
    margin-left: auto;
    margin-right: 20px;
}

.deposit-top .deposit-amount .amount {
    color: #f7c130;
}

.deposit-top .cart {
    position: relative;
    margin-right: 50px;
}

.deposit-top .cart .icon-wrap {
    margin-right: 15px;
}

.deposit-top .cart p {
    font-size: 16px;
    color: #fbc430;
    margin-bottom: 8px;
}

.deposit-top .cart span {
    font-family: 'Open Sans', sans-serif;
}

.like {
    color: #cbff3f;
}

.dislike {
    color: #fe1515;
}

.like,
.dislike {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.like:before,
.dislike:before {
    content: '';
    display: block;
    width: 55px;
    height: 56px;
    background: url("../images/like-dislike-icons.png") left no-repeat;
    margin-right: -10px;
}

.like:before {
    margin-right: -14px;
}

.dislike:before {
    content: '';
    width: 55px;
    height: 56px;
    background-position: right;
}

.page .container.with-no-padding {
    padding: 0;
}

.page .page-content {
    padding: 50px;
}

.file-chosen {
    margin-left: 25px;
}

.styled-form h3 {
    margin-bottom: 15px;
}

.styled-form-block {
    padding: 10px;
    background: #15252e;
    border: 1px solid #223642;
    margin-top: -1px;
    display: flex;
    justify-content: space-between;
}

.styled-form-block input,
.styled-form-block textarea,
.styled-form-block .custom-select,
.styled-form-block .upload-block {
    min-width: 50%;
    width: 50%;
}

.styled-form-block input {
    background: #0e161d;
    color: #fff;
}

.styled-form-block input::placeholder {
    color: #2f3a41;
}

.styled-form .custom-select .select-selected {
    color: #fff !important;
}

.styled-form .upload-block {
    height: 80px;
}

.styled-form .label {
    font-size: 16px;
    padding-top: 20px;
    padding-left: 25px;
}

.styled-form label span {
    display: inline;
    color: #ff0000;
}

.styled-form input[type="submit"] {
    margin: 25px auto 0;
}

.add-message-form h3 {
    margin-bottom: 20px;
}

.add-message-form .styled-form-block {
    padding: 13px;
    background: #15252e;
    border: 1px solid #223642;
    margin-top: -1px;
}

.styled-form-block > label,
.add-message-form textarea {
    width: 100%;
}

.add-message-form .upload-block {
    padding: 10px 0;
}

.comments-table tbody td {
    padding: 30px;
}

.comments-table .first-cell {
    width: 40%;
}

.comments-table .third-cell {
    width: 25%;
}

.comments-table tbody .first-cell img {
    width: 130px;
    height: 130 pFx;
    border-radius: 50%;
    margin-right: 30px;
}

.comments-table .nickname {
    font-size: 28px;
    color: #fbc430;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.comments-table .role {
    color: #00fffc;
    text-decoration: underline;
}

.comments-table .sent-ago {
    max-width: 50%;
    color: #fbc430;
    margin-left: 20px;
    font-size: 16px;
    font-weight: bold;
}

.comments-table .sent-ago span {
    font-size: 16px;
}

.comments-table tbody .first-cell,
.comments-table tbody .third-cell {
    background: #15252e;
}

.comments-table tbody .second-cell {
    background: #1c2c35;
    font-size: 16px;
    line-height: 30px;
}

.comments-table third-cell > div {
    max-width: 170px;
    margin: 0 auto;
}


.comments-block {
    padding-bottom: 15px;
    padding-top: 50px;
}

.comments-block > h3 {
    margin-bottom: 40px;
}

.payment-methods {
    margin-top: 45px;
}

.payment-method {
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    width: calc(25% - 15px);
    height: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111c24;
}

.payment-method.selected,
.payment-method:hover {
    background: #060c12;
}

.payment-method.selected .selected-elem {
    top: -30px;
    left: -30px;
    display: block;
}

.selected-elem {
    display: none;
    top: -22px;
    left: -22px;
    position: absolute;
    border: 30px solid #36d1b4;
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    transform: rotate(-45deg);
    z-index: 10;
}

.selected-elem:after {
    content: "";
    top: 16px;
    left: -3px;
    position: absolute;
    width: 10px;
    height: 4px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    z-index: 10;
}

.bordered-item {
    cursor: pointer;
    width: 270px;
    height: 460px;
    position: relative;
    padding: 8px;
    background: #16262f;
    transition: 0.3s;
}

.bordered-item .item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    border: 1px solid rgba(109, 251, 195, 0.15);
}

.bordered-item .overflow-hidden {
    text-align: center;
    width: 100%;
}

.bordered-item .overflow-hidden * {
    overflow: hidden;
    max-width: 90%;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 auto;
}

.bordered-item .title-item {
    font-size: 16px;
}

.bordered-item .price-item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    color: #fbc430;
}

.bordered-item .price-item:before {
    content: '';
    width: 24px;
    height: 21px;
    background: url('../images/coin-icon.png') center no-repeat;
    margin-right: 10px;
}

.photos-slider .slick-list {
    padding: 25px 0 50px;
}

.photos-slider .slick-track {
    margin-left: 0;
}

.photos-slider .photo {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 25px;
}

.photos-slider .photo p {
    text-align: center;
    margin-bottom: 20px;
}

.items-grid {
    position: relative;
    background: url("../images/cell_1.jpg") repeat;
}

.items-grid .item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../images/cell_2.jpg") repeat;
}

.item-feature-name.exellent {
    color: #c2ff31;
}

.item-feature-name.level {
    color: #00fffc;
}

.item-feature-name.jol {
    color: #ff1200;
}

.item-feature-name.luck {
    color: #42ff00;
}

.item-feature-name.skill {
    color: #ff9000;
}

.item-feature-name.harmony {
    color: #ffde00;
}

.item-feature-name.socket {
    color: #ff00e4;
}

.item-feature-name.refine {
    color: #3854ff;
}

.item-feature-name.element {
    color: #fe0060;
}

.item-feature-name.mastery {
    color: #ffcd92;
}

.item-feature-name.custom {
    color: #03d87b;
}

.item-feature-name.ruud {
    color: #4b97c5;
}

/*animations*/

.sparks {
    position: absolute;
    width: 1200px;
    left: 50%;
    margin-left: -600px;
    bottom: -110px;
}

.sparks > div {
    position: absolute;
}

.sparks .spark_1 {
    background: url(../images/animation/spark_1.png) no-repeat;
    width: 764px;
    height: 313px;
    right: 0;
    bottom: -320px;
    transform: scale(0.6);
    animation: spark-1 4s linear infinite;
    animation-delay: 1s;
}

@keyframes spark-1 {
    0% {
        bottom: -320px;
        transform: scale(0.6);
        opacity: 1;
    }
    25% {
        bottom: -240px;
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -160px;
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: -80px;
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        bottom: 0;
        transform: scale(1);
        opacity: 0;
    }
}

.sparks .spark_2 {
    background: url(../images/animation/spark_2.png) no-repeat;
    width: 179px;
    height: 335px;
    right: 230px;
    bottom: -320px;
    transform: scale(0.6);
    animation: spark-1 4s linear infinite;
    animation-delay: 2s;
}

.sparks .spark_3 {
    background: url(../images/animation/spark_3.png) no-repeat;
    width: 128px;
    height: 165px;
    right: 280px;
    bottom: -140px;
    transform: scale(0.6);
    animation: spark-3 4s linear infinite;
    animation-delay: 2s;
}

@keyframes spark-3 {
    0% {
        bottom: -140px;
        transform: scale(0.6);
        opacity: 1;
    }
    25% {
        bottom: -80px;
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -20px;
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: 40px;
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        bottom: 100px;
        transform: scale(1);
        opacity: 0;
    }
}

.sparks .spark-big {
    background: url(../images/animation/spark_4.png) no-repeat;
    width: 794px;
    height: 176px;
    right: 0;
    bottom: -180px;
    transform: scale(0.6);
    animation: spark-5 4s linear infinite;
}

.sparks .spark_5 {
    animation-delay: 2s;
    right: 40px;
}

@keyframes spark-5 {
    0% {
        bottom: -180px;
        transform: scale(0.6);
        opacity: 1;
    }
    25% {
        bottom: -120px;
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -60px;
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: 0;
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        bottom: 60px;
        transform: scale(1);
        opacity: 0;
    }
}

.fire {
    width: 178px;
    height: 237px;
    position: absolute;
    top: 450px;
    left: calc(50% - 320px);
}

.fire img {
    position: absolute;
    transform: scale(0.6);
    animation: fire 4s linear infinite;
}

.fire .fire-2 {
    animation-delay: 1s;
}

.fire .fire-3 {
    animation-delay: 2s;
}

.fire .fire-4 {
    animation-delay: 3s;
}

@keyframes fire {
    0% {
        bottom: 0;
        left: 0;
        opacity: 0;
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        bottom: 60px;
        left: 30px;
        opacity: 1;
        transform: scale(0.8);
        filter: brightness(1.2);
    }
    100% {
        bottom: 120px;
        left: 60px;
        opacity: 0;
        transform: scale(0.6);
        filter: brightness(1);
    }
}


/**/
.flames {
    position: absolute;
    top: 0px;
    left: -180px;
    width: 800px;
    height: 320px;
    z-index: 5;
}
.flame-1 {
    background: url(../images/flame_1.png) no-repeat;
    width: 728px;
    height: 293px;
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    animation: flame_1 2s linear infinite;
}
.flame-2 {
    background: url(../images/flame_2.png) no-repeat;
    width: 798px;
    height: 321px;
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    animation: flame_2 2s linear infinite;
    animation-delay: 1s;
}
.flame-3 {
    background: url(../images/flame_3.png) no-repeat;
    width: 798px;
    height: 321px;
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    animation: flame_3 6s linear infinite;
    animation-delay: 2s;
}
.flame-4 {
    background: url(../images/flame_4.png) no-repeat;
    width: 798px;
    height: 321px;
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    animation: flame_4 6s linear infinite;
    animation-delay: 3s;
}

@keyframes flame_1 {
    0%{top: 0px;left: 0px;opacity: 0;}
    33%{top: -30px;left: 0px;opacity: 1;}
    66%{top: -60px;left: 0px;opacity: 1;}
    100%{top: -90px;left: 0px;opacity: 0;}
}
@keyframes flame_2 {
    0%{top: 0px;left: 0px;opacity: 0;}
    33%{top: -30px;left: 0px;opacity: 1;}
    66%{top: -60px;left: 0px;opacity: 1;}
    100%{top: -90px;left: 0px;opacity: 0;}
}
@keyframes flame_3 {
    0%{top: 0px;left: 0px;opacity: 0;}
    33%{top: -30px;left: 0px;opacity: 1;}
    66%{top: -60px;left: 0px;opacity: 1;}
    100%{top: -90px;left: 0px;opacity: 0;}
}
@keyframes flame_4 {
    0%{top: 0px;left: 0px;opacity: 0;}
    33%{top: -30px;left: 0px;opacity: 1;}
    66%{top: -60px;left: 0px;opacity: 1;}
    100%{top: -90px;left: 0px;opacity: 0;}
}


.yt_popup {
    background-image: url(../images/dv_youtube_2.png);
    height: 139px;
    position: fixed;
    bottom: 10px;
    z-index: 9;
    width: 230px;
    right: -190px;
    transition: 0.5s;
    z-index: 10;
}
.yt_popup.active {
    right: -25px;
}
#yt_btn {
    position: absolute;
    height: 110px;
    width: 50px;
    left: -50px;
    top: 29px;
    cursor: pointer;
    background-image: url(../images/dv_youtube_1.png);
}
#yt_popup_video {
    margin-left: 45px;
    width: 900px;
}
#yt_popup_video a {
    margin-left: -38px;
    margin-top: 10px;
    float: left;
    position: relative;
}
.angled-img {
    position: relative;
    display: block;
}
.angled-img .img {
    position: relative;
    overflow: hidden;
    -webkit-transform: skew(-7deg);
    -ms-transform: skew(-7deg);
    -o-transform: skew(-7deg);
    transform: skew(-7deg);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background: #160962;
    -webkit-backface-visibility: hidden;
}
#yt_popup_video a .img {
    border: solid rgba(255, 255, 255, 0.8) 2px;
    background: #000;
}
#yt_popup_video .link {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 213px;
    height: 124px;
    z-index: 100000;
}
#yt_popup_video iframe {
    opacity: 0.7;
    width: 203px;
    height: 114px;
    -webkit-transform: skew(7deg) scale(1.098);
    -ms-transform: skew(7deg) scale(1.098);
    -o-transform: skew(7deg) scale(1.098);
    transform: skew(7deg) scale(1.098);
    -o-transition: .3s opacity ease;
    transition: .3s opacity ease;
}
#yt_btn i {
    margin-left: 30px;
    margin-top: 12px;
    font-size: 12px;
}
.fa-chevron-left {
    display: inline-block;
    background: url(../images/chevron-left.png) no-repeat;
    width: 8px;
    height: 12px;
    position: relative;
    transition: 0.3s;
}
.yt_btn.active .fa-chevron-left{
    transform: rotate(180deg);
}
.show_banner_btn {
    width: 47px;
    height: 41px;
    background-image: url(../images/show_banner_btn.png);
    position: fixed;
    bottom: 160px;
    right: 0px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}
.show_banner_btn:hover {
    background-image: url(../images/show_banner_btn_hover.png);
}
.show_banner_btn a {
    display: block;
    width: 47px;
    height: 41px;
}


/*********************************************************************************mobile*******************************************************/

.tbl thead tr th{
    background: #0e161d;
    color: #00fffc;
}
.tbl{
    margin-top:15px;
}

.tbl span{
    display:inline;
}

.pagination li{
    display: inline-flex;
    min-width: fit-content;
    padding: 0px 15px;
    margin-left: 0px;
}
.guilds-page .pagination{
    padding-bottom:20px !important;
}

.span2, .dataTables_info{
        padding: 10px 15px;
    background: #15252e;
    display: inline-block;
    border-radius: 5px;
}

.span2 select{
    background: #0e161d;
    color: #fff;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

.dataTables_info{
    margin-top: 10px;
    margin-bottom: 10px;
}



.iPhoneCheckContainer {
  -webkit-transform:translate3d(0,0,0);
  position: relative;
  height: 27px;
  cursor: pointer;
  overflow: hidden; }
  .iPhoneCheckContainer input {
    position: absolute;
    top: 5px;
    left: 30px;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0; }
  .iPhoneCheckContainer label {
    white-space: nowrap;
    font-size: 17px;
    line-height: 17px;
    font-weight: bold;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    cursor: pointer;
    display: block;
    height: 27px;
    position: absolute;
    width: auto;
    top: 0;
    padding-top: 5px;
    overflow: hidden; }
  .iPhoneCheckContainer, .iPhoneCheckContainer label {
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none; }

.iPhoneCheckDisabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5; }

label.iPhoneCheckLabelOn {
  color: white;
  background: url('images/iphone-style-checkboxes/on.png?1284697268') no-repeat;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.6);
  left: 0;
  padding-top: 5px; }
  label.iPhoneCheckLabelOn span {
    padding-left: 8px; }
label.iPhoneCheckLabelOff {
  color: #8b8b8b;
  background: url('images/iphone-style-checkboxes/off.png?1284697268') no-repeat right 0;
  text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.6);
  text-align: right;
  right: 0; }
  label.iPhoneCheckLabelOff span {
    padding-right: 8px; }

.iPhoneCheckHandle {
  display: block;
  height: 27px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  background: url('images/iphone-style-checkboxes/slider_left.png?1284697268') no-repeat;
  padding-left: 3px; }

.iPhoneCheckHandleRight {
  height: 100%;
  width: 100%;
  padding-right: 3px;
  background: url('images/iphone-style-checkboxes/slider_right.png?1284697268') no-repeat right 0; }

.iPhoneCheckHandleCenter {
  height: 100%;
  width: 100%;
  background: url('images/iphone-style-checkboxes/slider_center.png?1284697268'); }

.iOSCheckContainer {
  position: relative;
  height: 27px;
  cursor: pointer;
  overflow: hidden; }
  .iOSCheckContainer input {
    position: absolute;
    top: 5px;
    left: 30px;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0; }
  .iOSCheckContainer label {
    white-space: nowrap;
    font-size: 17px;
    line-height: 17px;
    font-weight: bold;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    cursor: pointer;
    display: block;
    height: 27px;
    position: absolute;
    width: auto;
    top: 0;
    padding-top: 5px;
    overflow: hidden; }
  .iOSCheckContainer, .iOSCheckContainer label {
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none; }

.iOSCheckDisabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5; }

label.iOSCheckLabelOn {
  color: white;
  background: url('images/ios-style-checkboxes/on.png?1284697268') no-repeat;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.6);
  left: 0;
  padding-top: 5px; }
  label.iOSCheckLabelOn span {
    padding-left: 8px; }
label.iOSCheckLabelOff {
  color: #8b8b8b;
  background: url('images/ios-style-checkboxes/off.png?1284697268') no-repeat right 0;
  text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.6);
  text-align: right;
  right: 0; }
  label.iOSCheckLabelOff span {
    padding-right: 8px; }

.iOSCheckHandle {
  display: block;
  height: 27px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  background: url('images/ios-style-checkboxes/slider_left.png?1284697268') no-repeat;
  padding-left: 3px; }

.iOSCheckHandleRight {
  height: 100%;
  width: 100%;
  padding-right: 3px;
  background: url('images/ios-style-checkboxes/slider_right.png?1284697268') no-repeat right 0; }

.iOSCheckHandleCenter {
  height: 100%;
  width: 100%;
  background: url('images/ios-style-checkboxes/slider_center.png?1284697268'); }


  .gold {

    height: 25px;
    font-size: 15px;

}

.donate__page .label .gold {
    font-size: 17px;
    margin-top: 7px;
}


#historytable_wrapper .gold {
height: 30px;
margin-top: 5px;
    font-size: 17px;
}


.config__page .gold , .config__page .silver{
  height: 50px;


}



#historytable_wrapper .gold {
height: 30px;
margin-top: 5px;
    font-size: 17px;
}





#historytable_wrapper td{
    line-height: 15px
}






#acctable_wrapper th:first-child{
    width: 100px !important;
}

#acctable_wrapper .table-bordered td {
    text-align: left;
    overflow: auto;
        line-height: 15px;
}



#logtable_wrapper td{
    line-height: 15px;


}

#logtable_wrapper tr {
    height: initial;
}






 .table tbody tr:hover td,  .table tbody tr:hover th {
    background-color: transparent;
}



.table-condensed input {

    margin: 10px;
}
