.block {
    width: calc(33% - 20px);
    margin: 0 auto;
    margin-bottom: 20px;
    height: 75px;
}

.block a {
    width: 100%;
    height: 100%;
}

.d-flex {
    flex-wrap: wrap;
}

.loading-overlay, .loading-error {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: unset;
}
  
.loading-overlay h1, .loading-error h1 {
    color: white;
}

.loading-error {
    background-color: rgba(0, 0, 0, 1);
}

.layout-navbar-fixed body:not(.modal-open) .layout-content-navbar .layout-navbar, .layout-menu-fixed body:not(.modal-open) .layout-content-navbar .layout-navbar, .layout-menu-fixed-offcanvas body:not(.modal-open) .layout-content-navbar .layout-navbar {
    z-index: 100!important;
}

.layout-navbar-fixed body:not(.modal-open) .layout-content-navbar .layout-menu, .layout-menu-fixed body:not(.modal-open) .layout-content-navbar .layout-menu, .layout-menu-fixed-offcanvas body:not(.modal-open) .layout-content-navbar .layout-menu {
    z-index: 102!important;
}

.layout-overlay {
    z-index: 101!important;
}

.nodes {
    margin-bottom: 20px;
}

.good .title {
    padding: 20px;
    border-bottom: 1px solid rgba(192, 192, 192, 0.208);
}

.good .card-body {
    line-height: 1.7;
}

.good {
    margin-bottom: 20px;
}

.good .btn {
    width: 100%;
}

span.back {
    display: table!important;
    margin-bottom: 20px;
}

.systems, .vpsInfo, .rootData, .reinstallConfirm, .changePassword {
    display: none;
}

.system {
    animation: slideIn .2s forwards;
    margin-right: 10px;
    margin-bottom: 10px;
    opacity: 0;
}

@keyframes slideIn {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#toast-container > .toast-error {
    background-position: 1.25rem 1rem;
}

.table-wrap {
    text-align: center;
    display: inline-block;
  padding: 2rem 2rem;
  color: #fff;
}
 
table {
    border: 1px solid #ccc;
    width: 100%;
    margin:0;
    padding:0;
    border-collapse: collapse;
    border-spacing: 0;
}
 
table tr {
    border: 1px solid #dddddd2e;
    padding: 5px;
}
 
table th, table td {
    padding: 10px;
    text-align: center;
    border-right: 1px solid #dddddd2e;
}

table .flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
 
table th {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
    table {
        border: 0;
    }

    table thead {
        display: none;
    }

    table tr {
        margin-bottom: 10px;
        display: block;
        border-bottom: 2px solid #dddddd2e;
    }

    table td {
        display: block;
        text-align: right;
        font-size: 13px;
        border-bottom: 1px solid #dddddd2e;
        border-right: 1px solid transparent;
    }

    table td:last-child {
        border-bottom: 0;
    }

    table td:before {
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
        font-weight: bold;
    }

    table td:last-child {
        line-height: 2.7;
    }

    table .flex {
        justify-content: end;
    }
}

@media screen and (max-width: 710px) {
    .dashboard-module .block, .control-module .block {
        width: calc(50% - 20px);
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 500px) {
    .dashboard-module .block, .control-module .block {
        width: 100%;
        margin-bottom: 20px;
    }
}

html.light-style table th, html.light-style table td {
    border-right: 1px solid #0000002e;
}

html.light-style table tr {
    border: 1px solid #0000002e;
}

html.light-style .table-wrap {
    color: black;
}