@charset "UTF-8";
/* Color palette */
/* Text styles */
h1 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.41;
    color: #ffffff;
}

h5 {
    font-size: 16px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
}

input {
    font-size: 14px;
    line-height: 1.41;
    color: #ffffff;
}

.pageIndex .monitoring .server .img .bg, .pageIndex .monitoring .server .img .v {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* Стандартные стили для элементов */
html {
    font-size: 10px;
}

@media (max-width: 992px) {
    html {
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 7px;
    }
}

#sidenav_mobile:not(.active), #sidenav_mobile_bg:not(.active) {
    display: none;
}

body {
    background: #171616;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.58;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
}

.modal-header{

    border-bottom: solid 3px #0b0a0a;
}

.modal-content{

    background-color: #171717;
}


.modal-body{
    color: #000;
}

.shag{
    padding: 6px;
    display: block;
    color: #fff;
}


.modal-title{
    color: #ffffff;
    float: left;
    display: block;
    margin-left: 10px;
    margin-top: 5px;
}
.closepng{
    width: 100%;
}

..modal-header .close{

}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}

a {
    font-size: 14px;
    color: #89bc11;
    border-bottom: 1px solid rgb(139, 192, 22);
    color: #ffffff;
    transition: all 0.25s;
}

.textver{
    /* max-width: 500px; */
    margin-bottom: 25px;
    padding: 0px 22px;
}

a:hover {
    color: #86b608;
    border-bottom-color: rgb(75, 112, 6);
    text-decoration: none;
}

@media (max-width: 768px) {
    a {
        font-size: 12px;
    }
}

.logotype{
    color: #000;
    padding: 6px 15px;
    font-size: 20px;
    font-weight: bold;
    background-image: linear-gradient(225deg, #a9ff73, #85b301);
    box-shadow: 4px 4px 0px #4b7006;
}

button {
    border: none;
    transition: all 0.25s;
}

.close{

    color: #fff;

    font-size: 27px;
}

.close:hover{

    color: #fff;

    font-size: 27px;
}

button.red {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.7px;
    color: #151414;
    text-transform: uppercase;
    box-shadow: 0 2px 0 0 #4b7006, 0 10px 30px 0 rgba(146, 207, 46, 0.18);
    background-color: #92cf2e;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), 0 1px 0 #ffffff29;
    height: 54px;
    padding: 5px 50px;
    display: block;
    margin: 0 auto;
    margin-bottom: 60px;
}

button.red:hover {
    box-shadow: 0px 2px 0px #4b7006, 0px 10px 30px rgba(134, 182, 8, 0.33);
    background-color: #86b608;
}

button.dark {
    border: solid 1px rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.15);
    line-height: 1.41;
    color: #ffffff;
    text-transform: uppercase;
    height: 50px;
    padding: 5px 50px;
    outline: none !important;
}

button.dark.prev {
    background-image: url("../img/prev.svg");
    background-repeat: no-repeat;
    background-position: 7% center;
}

button.dark.next {
    background-image: url("../img/next.svg");
    background-repeat: no-repeat;
    background-position: 93% center;
}

button.dark:hover, button.dark:active {
    border-color: #8ec722;
}

button.dark:hover.prev, button.dark:active.prev {
    background-position: 5% center;
}

button.dark:hover.next, button.dark:active.next {
    background-position: 95% center;
}

input, select {
    height: 46px;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    font-size: 14px;
    line-height: 1.41;
    color: #ffffff;
    padding-left: 20px;
    transition: all 0.25s;
    outline: none !important;
}

input:focus, select:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

select {
    padding-left: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../img/select.svg");
    background-repeat: no-repeat;
    background-position: 97% center;
}

select option {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
}

.copyText {
    position: relative;
    cursor: pointer;
    text-align: center;
}

.copyText::before {
    position: absolute;
    width: 100%;
    font-size: 75%;
    content: "Скопировано";
    opacity: 0;
}

.copyText.copied {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.copyText.copied:before {
    -webkit-animation: copy-to-clipboard-animation 3s;
    animation: copy-to-clipboard-animation 3s;
}

@-webkit-keyframes copy-to-clipboard-animation {
    0% {
        -webkit-transform: translateY(0rem);
        transform: translateY(0rem);
        opacity: 1;
    }
    10% {
        -webkit-transform: translateY(2.5ex);
        transform: translateY(2.5ex);
        opacity: 1;
    }
    80% {
        -webkit-transform: translateY(2.5ex);
        transform: translateY(2.5ex);
        opacity: 1;
    }
    99% {
        -webkit-transform: translateY(2.5ex);
        transform: translateY(2.5ex);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0rem);
        transform: translateY(0rem);
        opacity: 0;
    }
}

@keyframes copy-to-clipboard-animation {
    0% {
        -webkit-transform: translateY(0rem);
        transform: translateY(0rem);
        opacity: 1;
    }
    10% {
        -webkit-transform: translateY(2.5ex);
        transform: translateY(2.5ex);
        opacity: 1;
    }
    80% {
        -webkit-transform: translateY(2.5ex);
        transform: translateY(2.5ex);
        opacity: 1;
    }
    99% {
        -webkit-transform: translateY(2.5ex);
        transform: translateY(2.5ex);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0rem);
        transform: translateY(0rem);
        opacity: 0;
    }
}

.test > div {
    text-align: center;
    background: #28a134;
    border-left: 1px solid black;
    border-right: 1px solid black;
    height: 50px;
}

.test > div span {
    background: #4a99e2;
    display: block;
    height: 50px;
}

/* Стили блоков */
.rhomb {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 1px 0 #d1adad;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
}

.rhomb::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 70%;
    height: 70%;
    background: #59e033;
    background-image: linear-gradient(225deg, #a9ff73, #85b301);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-shadow: -3px 3px 0px #4b7006, -10px 10px 30px rgba(140, 194, 27, 0.29);
}

.rhomb.mini {
    width: 40px;
    height: 40px;
}

.rhomb.mini::before {
    box-shadow: -2px 2px 0px #4c7205, -10px 10px 30px rgba(140, 195, 28, 0.74);
}

.rhomb.micro {
    width: 20px;
    height: 20px;
}

.rhomb.micro::before {
    box-shadow: -1px 1px 0px #a3ef5f, -5px 5px 10px rgba(230, 58, 58, 0.25);
}

.startGame {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.7px;
    color: #ffffff;
}

.startGame .text {
    margin-left: 20px;
    border-bottom: 1px solid rgba(101, 230, 58, 0.3);
}

.startGame .rhomb.mini::before, .startGame .text {
    transition: all 0.25s;
}

.startGame:hover .text {
    color: #ffffff;
}

.startGame:hover .text {
    border-bottom: 1px solid rgb(143, 200, 34);
}

.startGame:hover .rhomb.mini::before {
    box-shadow: -2px 2px 0px #4b7006, -8px 8px 30px rgb(136, 186, 14);
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: solid 1px rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.15);
}

header {
    background-color: #151414;
    background-image: url("../img/header.jpg");
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header a {
    border-bottom: none !important;
}

header .content {
    min-height: 130px;
}

header .logo {
    box-shadow: 1px 10px 30px 0px rgba(230, 58, 58, 0.15);
}

header .menu a {
    font-size: 14px;
    letter-spacing: 0.7px;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px;
    text-transform: uppercase;
}

header .menu a:hover {
    color: #ffffff;
}

header .mobileHeader {
    width: 100%;
    padding: 20px 0;
}

header .mobileHeader svg {
    -webkit-filter: drop-shadow(0px 4px 5px #89bc10);
    filter: drop-shadow(0px 4px 5px #86b70aba);
}

header .mobileHeader svg path {
    fill: #a2ed5b;
}

@media (max-width: 768px) {
    header .startGame {
        margin-top: 10px;
        margin-bottom: 30px;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 0.7px;
        color: #ffffff;
    }

    header .startGame .text {
        border-bottom: 1px solid rgb(163, 240, 97);
    }
}

footer {
    padding: 20px;
    font-size: 16px;
    color: #ffffff;
}

.block {
    border: solid 1px rgba(255, 255, 255, 0.05);
    background-color: #1a1919;
    padding: 30px 30px 30px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .block {
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 0;
        border: none;
        background: none;
    }
}

.page {
    padding-top: 40px;
    min-height: 80%;
    min-height: calc(100vh - 190px);
}

.page h1 {
    margin-bottom: 30px;
}

.page h1 span {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .page {
        padding-top: 20px;
    }

    .page h1 {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.pageIndex .servers {
    text-align: center;
}

.pageIndex .servers h1 {
    text-align: center;
}

@media (max-width: 768px) {
    .pageIndex .servers {
        margin-bottom: -20px;
    }

    .pageIndex .servers h1 {
        text-align: center;
        padding-right: 0;
    }
}

.pageIndex .servers .server {
    padding: 20px 20px 15px;
    /* border: solid 1px rgba(255, 255, 255, 0.05); */
    background-color: #111010;
    background-image: url("../img/background.jpg");
    background-size: cover;
    margin-bottom: 20px;
    width: 100%;
    transition: all 0.25s;
    cursor: pointer;
    border-bottom: 10px solid #0c0c0c;
    border-radius: 0px 0px 10px 10px;
    display: block;
}

.pageIndex .servers .server:hover:not(.preparing) {
    box-shadow: 0px 10px 20px rgba(17, 16, 16, 0.9);
    /* border: 1px solid #a6f567; */
    border-bottom: 10px solid #000000;
    border-radius: 0px 0px 10px 10px;
    background-color: #080808;
}

.pageIndex .servers .server .rhomb {
    margin-bottom: 20px;
}

.pageIndex .servers .server .ip {
    font-size: 16px;
    color: #ffffff;
}

.pageIndex .servers .server .ip span {
    color: #94d131;
    font-weight: bold;
}

.tyt {
    color: #94d131;
    font-weight: bold;
    cursor: pointer;
}

.sp-webpush-label {
    display: none !important;
}

.sp-brand-link {
    display: none !important;
}

.pageIndex .servers .server.preparing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: none;
    /* background-color: #171616; */
    cursor: default;
}

.pageIndex .servers .server.preparing h5 {
    margin-bottom: 10px;
}

.pageIndex .servers .server.preparing span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .pageIndex .servers .server.preparing span {
        font-size: 12px;
    }
}

.pageIndex .servers .server .select {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .mineicon{
        width: 70px;
        margin-right: 20px;
        border-radius: 10px;
        border-bottom: solid 5px #583d28;
    }}

@media (min-width: 768px) {
    .mineicon{
        width: 70px;
        border-radius: 10px;
        margin-bottom: 12px;
        border-bottom: solid 5px #583d28;
    }}


@media (max-width: 768px) {
    .pageIndex .servers .server {
        text-align: left;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        padding-right: 5px;
    }

    .pageIndex .servers .server .rhomb {
        margin-bottom: 0;
        margin-right: 20px;
    }
}

.pageIndex .servers #buyBlock {
    display: none;
}

.pageIndex .servers #buyBlock h1 {
    margin-top: 20px;
}

.pageIndex .servers #buyBlock form input, .pageIndex .servers #buyBlock form select {
    margin-bottom: 10px;
}

.pageIndex .servers #buyBlock form button {
    margin-top: 10px;
    margin-bottom: 20px;
}

.pageIndex .servers #buyBlock form optgroup {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
}

.pageIndex .servers #buyBlock .text {
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.5);
}

.pageIndex .servers.active #listServers {
    display: none;
}

.pageIndex .servers.active #buyBlock {
    display: block;
}

.pageIndex .comments .user {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.pageIndex .comments .user img {
    margin-right: 20px;
}

.pageIndex .comments .user .name {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .pageIndex .comments .user .name {
        font-size: 14px;
    }
}

.pageIndex .comments .user a {
    line-height: 1;
}

.pageIndex .comments blockquote {
    position: relative;
}

.pageIndex .comments blockquote:before {
    content: url("../img/blockquote.svg");
    position: absolute;
    left: 0;
    top: -4px;
}

.pageIndex .comments .actions {
    margin-top: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.pageIndex .comments .actions button {
    width: 100%;
    font-size: 14px;
}

.pageIndex .comments .actions button:first-child {
    margin-right: 25px;
}

.pageIndex .comments .actions button:last-child {
    margin-left: 25px;
}

@media (max-width: 768px) {
    .pageIndex .comments .actions {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .pageIndex .comments .actions button {
        margin: 0 0 10px !important;
        font-size: 12px;
    }
}

.pageIndex .comments .text {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .pageIndex .comments .text {
        font-size: 12px;
    }
}

.pageIndex .monitoring {
    background-image: url("../img/background.jpg");
    background-size: cover;
}

.pageIndex .monitoring .server {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.pageIndex .monitoring .server:last-child {
    margin-bottom: 0;
}

.pageIndex .monitoring .server .img {
    position: relative;
    margin-right: 20px;
}

.pageIndex .monitoring .server .statistics {
    width: 100%;
    text-align: center;
}

.pageIndex .monitoring .server .img svg {
    -webkit-filter: drop-shadow(0 -2px 0 #7b2424);
    filter: drop-shadow(0 -2px 0 #7b2424);
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1);
    overflow: visible;
}

.pageIndex .monitoring .server .img .bg {
    position: absolute;
}

.pageIndex .monitoring .server .img .v {
    position: absolute;
    text-shadow: 0 1px 0 #d1adad;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
}

.pageIndex .monitoring .server .ip {
    font-size: 18px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .pageIndex .monitoring .server .ip {
        font-size: 16px;
    }
}

.pageIndex .monitoring .server .ip span {
    font-weight: bold;
    color: #e63a3a;
}

.pageIndex .monitoring .server .online {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .pageIndex .monitoring .server .online {
        font-size: 12px;
    }
}

.pageIndex .monitoring .server .online span {
    color: #e63a3a;
}

.pageIndex .lastBuy {
    background-image: url("../img/background.jpg");
    background-size: cover;
}

.pageIndex .lastBuy .user {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.pageIndex .lastBuy .user:last-child {
    margin-bottom: 0;
}

.pageIndex .lastBuy .user > img {
    margin-right: 20px;
}

.pageIndex .lastBuy .user .name {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 7px;
}

.pageIndex .lastBuy .user .time {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .pageIndex .lastBuy .user .time {
        font-size: 12px;
    }
}

.pageIndex .lastBuy .user .time .rhomb {
    margin-right: 5px;
}

.pageStart .step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.41;
    color: rgba(255, 255, 255, 0.9);
}

.pageStart .step .red {
    color: #e63a3a;
}

.pageStart .step .rhomb {
    flex-shrink: 0;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .pageStart .step {
        font-size: 14px;
    }

    .pageStart .step .rhomb {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

.pageStart img {
    margin-bottom: 30px;
    margin-top: -10px;
    width: 100%;
}

.pageDonate .donate {
    border: solid 1px rgba(255, 255, 255, 0.05);
    background-color: #111010;
    padding: 30px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .pageDonate .donate {
        padding: 20px 20px 10px;
    }
}

.pageDonate .donate .name {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.41;
    color: #ffffff;
}

@media (max-width: 768px) {
    .pageDonate .donate .name {
        font-size: 16px;
    }
}

.pageDonate .donate .name .price {
    margin-left: 5px;
    display: inline-block;
    background-color: #e63a3a;
    padding: 0 4px;
    margin-bottom: 20px;
}

.pageDonate .donate .name .price::after {
    content: ' ₽';
}

.pageDonate .donate ul {
    padding: 0;
}

.pageDonate .donate ul li {
    list-style: none;
    background: url("../img/dot.svg") no-repeat left 0.75em;
    padding-left: 15px;
    line-height: 1.88;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .pageDonate .donate ul li {
        font-size: 12px;
    }
}

.pageDonate .donate ul li span {
    color: #e63a3a;
    font-weight: 500;
}

@media (min-width: 768px) {
    .pageContacts h1 {
        text-align: center;
    }
}

.pageContacts .contact {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.41;
    color: rgba(255, 255, 255, 0.9);
}

.pageContacts .contact .rhomb {
    flex-shrink: 0;
    margin-right: 20px;
}

.pageContacts .contact a {
    font-size: 18px;
    line-height: 1.41;
}

@media (max-width: 768px) {
    .pageContacts .contact {
        font-size: 14px;
    }

    .pageContacts .contact a {
        font-size: 14px;
    }

    .pageContacts .contact .rhomb {
        width: 40px;
        height: 40px;
    }
}

#sidenav_mobile {
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(23, 22, 22, 0.95);
    text-align: right;
}

#sidenav_mobile a {
    text-align: center;
    display: block;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.41;
    padding: 15px 0;
    border: none;
    color: #ffffff;
}

#sidenav_mobile a.active {
    color: #4ae63a;
}

#sidenav_mobile .close {
    opacity: 1;
    float: none;
    margin: 20px;
}