﻿/*@import url('site.css');*/

.SystemPanel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    margin-bottom: 1px;
    border-bottom: solid;
    border-width: 0.1px;
    border-color: darkgray;
    padding: 2px;
    /*overflow:scroll;*/
}

    .SystemPanel > div, .SystemPanel > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        border-radius: 10px;
        /*font-size: xx-large;*/
        /*box-shadow: -2px 2px 5px rgb(128, 128, 128);*/
        /* margin: auto; */
    }

    .SystemPanel > a {
        text-decoration: none;
    }


div.SystemPanel > div:nth-child(1) {
    width: 300px;
}

div.SystemPanel > a:nth-child(2) {
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    color: #00a3bd;
    max-height: 75px;
    height: 100%;
    /* flex: auto; */
    /* justify-content: center; */
}

    div.SystemPanel > a:nth-child(2):hover {
        -webkit-box-shadow: 0px 2px 10px 4px #8fd0f7d6;
                box-shadow: 0px 2px 10px 4px #8fd0f7d6;
    }

    div.SystemPanel > a:nth-child(2).Start {
        background-color: aqua;
        -webkit-box-shadow: 0px 20px 20px 20px rgb(0, 208, 255);
                box-shadow: 0px 20px 20px 20px rgb(0, 208, 255);
        -webkit-transform: scale(5) translateY(40%);
            -ms-transform: scale(5) translateY(40%);
                transform: scale(5) translateY(40%);
    }

div.SystemPanel > div:nth-child(3) {
    /*width: 520px;*/
    -ms-flex-pack: distribute;
        justify-content: space-around;
}

@media (max-width: 1400px) {
    .SystemPanel {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }
}

@media (max-width: 1100px) {

    div.SystemPanel > div:nth-child(1) {
        width: auto;
        /*font-size: 10px;
        margin: auto;*/
    }

    div.SystemPanel > a:nth-child(2) {
    }

    div.SystemPanel > a:nth-child(2) {
        font-size: 25px;
        text-align: center;
    }

    .SystemPanel > a > div > div.me-1 > div:nth-child(1) {
        max-height: 50px;
    }

    div.SystemPanel > div:nth-child(3) {
        width: auto;
        font-size: medium;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

        div.SystemPanel > div:nth-child(3) > * {
            margin-bottom: 10px;
        }

    /*    .SystemPanel > div:nth-child(1), .SystemPanel > a:nth-child(2) {
        margin-bottom: 10px;
    }*/
}

.ServerStatus {
    font-size: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

    .ServerStatus > div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        margin: auto;
    }

@media (max-width: 1000px) {
    .ServerStatus {
        font-size: 12px;
        padding-left: 0.6vh;
        padding-right: 0.6vh;
        padding-top: 0.3vh;
    }

        .ServerStatus > div {
/*            margin-right: 6px;*/
        }
}

@media (max-width: 500px) {
    .ServerStatus {
        font-size: 10px;
    }
}

.AccountPanel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-left: solid;
    border-color: #80808059;
    border-width: 1px;
    padding-left: 0;
}

    .AccountPanel > a {
        margin: .25rem;
    }

.SystemButtons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: auto;
    border-bottom: solid;
    border-width: 0.3px;
    border-color: darkgray;
    margin-bottom: 3px;
    padding-bottom: 1px;
}

    .SystemButtons > div {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

.SystemButton:first-child {
    /*margin-left: 2px;*/
}

.SystemButton {
    border: none;
    border-radius: 10px;
    padding: 4px;
    padding-top: 2px;
    padding-bottom: 2px;
    cursor: pointer;
    font-size: larger;
    color: #007dad;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    margin-right: 2px;
    min-height: 35px;
}

    .SystemButton:hover {
        border: initial;
        -webkit-box-shadow: 0 .125rem .25rem rgba(0,0,0,.20) !important;
                box-shadow: 0 .125rem .25rem rgba(0,0,0,.20) !important;
    }

    .SystemButton > div {
        border-bottom: solid;
    }

@media (max-width: 1000px) {
    .SystemButton {
        font-size: medium;
        min-height: 30px;
    }

    .SystemButtons {
        min-height: unset;
    }
}

.Start.SystemButton {
    -webkit-box-shadow: none;
            box-shadow: none;
}

.SystemButton > :nth-child(1) {
    display: block;
    height: 85%;
}

.SystemButton:last-child, .SystemButton:first-child {
    margin-right: unset;
}

.Checkbox-big {
    width: 30px;
    height: 30px;
}

ol {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

    ol > li {
        display: table;
        counter-increment: item;
        margin-bottom: 0.6em;
    }

        ol > li:before {
            content: counters(item, ".") ". ";
            display: table-cell;
            padding-right: 0.6em;
        }

li ol > li {
    margin: 0;
}

    li ol > li:before {
        content: counters(item, ".") " ";
    }

button {
    border-radius: 10px;
    border-width: 1px;
}

.connection-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 2px;
}

    .connection-row:first-child {
        margin-top: 0px;
    }

.ReconnectModal {
    position: sticky;
    margin: auto;
    /*inset: 1rem;*/ /* ≡ top:1rem; right:1rem; bottom:1rem; left:1rem; */

    font-size: xx-large;
    text-wrap: wrap;
    overflow-wrap: anywhere;
    z-index: 10;
}

.ReconnectBorder {
    display: none;
    position: fixed;
    inset: 1rem; /* ≡ top:1rem; right:1rem; bottom:1rem; left:1rem; */
    margin: 0 !important; /* Сбрасываем margin, чтобы не было двойного отступа */
    border-radius: 10px; /* Ваш радиус */
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(184 23 23 / 85%)), to(rgb(0 196 255 / 85%)));
    background: linear-gradient(180deg, rgb(184 23 23 / 85%), rgb(0 196 255 / 85%));
    -webkit-box-shadow: 0 10px 30px 10px rgba(0,0,0,.3);
            box-shadow: 0 10px 30px 10px rgba(0,0,0,.3);
    overflow: hidden; /* Чтобы дочерние border-radius не вылезали */
    z-index: 1050; /* Поверх основного контента, если нужно */
    -webkit-transition: all .3s ease;
    transition: all .3s ease; /* Плавное появление/исчезновение при необходимости */
}

.DownloadButton {
}

.DownloadButtonIndex {
    position: sticky;
}

.DownloadButtonUpLeft {
    -webkit-box-flex: 0.4;
        -ms-flex: 0.4;
            flex: 0.4
}

.DownloadButtonUpRight {
    -webkit-box-flex: 0.6;
        -ms-flex: 0.6;
            flex: 0.6
}

@media (max-height: 1000px) {
    .DownloadButtonIndex {
        position: initial;
    }
}

@media (max-width: 1024px) {
    .DownloadButtonIndex {
        position: initial;
    }

    .DownloadButton {
    }

    .DownloadButtonUpLeft {
        -webkit-box-flex: 1;
            -ms-flex: auto;
                flex: auto;
    }

    .DownloadButtonUpRight {
        -webkit-box-flex: 1;
            -ms-flex: auto;
                flex: auto;
    }
}

.payform-tinkoff {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 2px auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 250px;
}

.payform-tinkoff-row {
    margin: 2px;
    border-radius: 4px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #DFE3F3;
    padding: 15px;
    outline: none;
    background-color: #DFE3F3;
    font-size: 15px;
}

    .payform-tinkoff-row:focus {
        background-color: #FFFFFF;
        border: 1px solid #616871;
        border-radius: 4px;
    }

.payform-tinkoff-btn {
    background-color: #FBC520;
    border: 1px solid #FBC520;
    color: #3C2C0B;
}

    .payform-tinkoff-btn:hover {
        background-color: #FAB619;
        border: 1px solid #FAB619;
    }

.footer-block {
    min-width: 200px;
    padding: 0.5rem;
}

    .footer-block .btn {
        width: 100%;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 768px) {
    .footer-block {
        min-width: auto;
    }

        .footer-block .btn {
            white-space: normal;
        }
}
/*# sourceMappingURL=F:\YandexDisk\ZealousSanity\Web\NetSystem\wwwroot\css\Elements.css.map */