* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f5f5f5;
    color: #263646;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 14px;
    text-align: center;
}

a {
    color: #6f88b5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.header {
    background: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.09);
    color: #000;
    padding: 9px 15px;
}

.logo2 {
    width: 30%;
    max-width: 260px;
    min-width: 150px;
}

.link-head {
    border-radius: 15px;
    color: #312e2f;
    display: inline-block;
    font-size: 14px;
    padding: 8px 11px;
    transition: all .3s;
}

.client-server-dropdown { display: inline-block; position: relative; }
.client-server-dropbtn { background: transparent; border-radius: 15px; color: #312e2f; font-size: 14px; padding: 8px 11px; }
.client-server-dropbtn:hover { background: #49beb7; color: #fff; }
.client-server-menu { left: auto; min-width: 330px; padding-top: 8px; right: 0; text-align: left; }
.client-server-menu a { align-items: center; display: flex; gap: 8px; justify-content: space-between; white-space: nowrap; }
.client-server-menu a img { height: 18px; width: 18px; }
.client-server-menu .all-servers-link { border-top: 1px solid #eee; display: block; margin-top: 5px; text-align: center; }
.client-server-empty { display: block; padding: 12px 16px; white-space: nowrap; }
.header-server-status { border-radius: 3px; color: #fff; font-size: 11px; margin-left: auto; padding: 2px 5px; }
.header-server-status.started { background: #85ef47; }
.header-server-status.stopped { background: #9e9e9e; }
.header-server-status.pending { background: #ff9338; }
.header-server-status.suspended { background: #ad0000; }
.subuser-notice { margin-top: 18px; text-align: center; }

.client-nav-icon {
    height: 16px;
    margin-right: 5px;
    object-fit: contain;
    vertical-align: -3px;
    width: 16px;
}

.link-head.active .client-nav-icon,
.link-head:hover .client-nav-icon {
    filter: brightness(0) invert(1);
}

.link-head:hover,
.link-head.active {
    background: #49beb7;
    color: #fff;
    text-decoration: none;
}

.logout {
    background: #ff5959;
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    padding: 8px 13px;
    transition: all .3s;
}

.logout:hover {
    background: #fc6f6f;
    color: #fff;
    text-decoration: none;
}

.client-name {
    color: #536390;
    display: inline-block;
    font-weight: 700;
    padding: 0 9px;
}

.client-shell {
    margin: 36px auto;
    width: min(1180px, calc(100% - 28px));
    text-align: left;
}

.page-box,
.newsbox {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 41px rgba(0, 0, 0, 0.09);
    margin-bottom: 24px;
    padding: 32px;
    word-break: break-word;
}

.page-title {
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 14px;
}

h1,
h2,
h3 {
    font-weight: 400;
    margin: 0;
    text-align: left;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.dashboard-metrics-table {
    table-layout: fixed;
}

.dashboard-metrics-table > tbody > tr > td {
    vertical-align: top;
}

.nitro-client-home,
.nitro-client-news {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

.nitro-client-home .data-holder {
    min-height: 0;
    padding: 13px 6px;
}

.nitro-client-home .btnwhite {
    margin-top: 0;
}

.nitro-client-home .nitro-subuser-server-holder {
    margin: 0 auto;
    width: 20%;
}

.nitro-owned-servers {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-left: 5rem;
    width: 80%;
}

.nitro-owned-server-wrap {
    flex: 0 0 221px;
}

.owned-server-card,
.owned-create-card {
    box-sizing: content-box;
    float: none;
    margin: 20px 0 0;
}

.owned-server-card {
    height: 260px;
    width: 165px;
}

.owned-map-image {
    display: block;
    height: 120px;
    object-fit: cover;
    width: 160px;
}

.owned-server-hostname {
    margin: 14px 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.owned-server-card p {
    line-height: 1.55;
    margin: 0 0 12px;
    text-align: left;
}

.owned-status i {
    font-size: 10px;
}

.owned-status.started { color: #00ad00; }
.owned-status.stopped { color: #ff5959; }
.owned-status.pending { color: #ff9338; }
.owned-status.suspended { color: #ad0000; }

.owned-create-link:hover {
    text-decoration: none;
}

.owned-create-card {
    background: #fff;
    border: 3px dashed rgba(150, 150, 150, .56);
    border-radius: 15px;
    box-shadow: 0 0 41px rgba(0, 0, 0, .09);
    color: #c4c4c4;
    height: 260px;
    padding: 25px;
    text-align: center;
    width: 165px;
}

.owned-create-card > i {
    display: block;
    font-size: 7rem;
    margin: 38px 0 42px;
}

.owned-create-card .btngray {
    box-shadow: 0 0 41px rgba(0, 0, 0, .09);
    display: inline-block;
}

.nitro-create-page {
    margin-left: auto;
    margin-right: auto;
}

.nitro-create-form table {
    max-width: 420px;
    width: 100%;
}

.nitro-create-form input,
.nitro-create-form select {
    box-sizing: border-box;
    max-width: 420px;
    width: 100%;
}

.public-server-empty {
    padding: 20px;
}

.data-holder {
    border-radius: 15px;
    color: #fff;
    min-height: 190px;
    padding: 20px 10px;
    text-align: center;
}

.dataholder_first {
    background: #357d63;
}

.dataholder_second {
    background: #731b08;
}

.dataholder_third {
    background: #0e496b;
}

.dataholder_fourth {
    background: #2c5c0a;
}

.metric-label {
    color: #fff;
    font-size: 20px;
}

.metric-number {
    color: #fff;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
}

.metric-description { color: #fff; font-size: 13px; margin: 8px auto 0; max-width: 190px; }
.nitro-ftp-details-tab h3 { margin: 1px 1px 14px; }
.nitro-detail-icon { position: relative; top: 4px; width: 19px; }
.nitro-detail-separator { border-top: 1px solid #ededed; margin: 24px 0; }
.nitro-ftp-password-box { padding: 22px; }
.nitro-ftp-password-box .text { margin: 8px 8px 12px 0; max-width: 390px; }
.ftp-reveal { border-radius: 3px; font-size: 11px; padding: 4px 8px; }
.ftp-details-link { margin: 18px 0 0; text-align: center; }
.ftp-details-link img { height: 19px; margin-right: 5px; vertical-align: -5px; width: 19px; }

.btnwhite,
.btndefault,
button {
    border: 0;
    border-radius: 25px;
    cursor: pointer;
    display: inline-block;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 14px;
    padding: 10px 15px;
    text-decoration: none;
}

.btnwhite {
    background: #fff;
    color: #1b262c;
}

.btndefault,
button {
    background: #6f88b5;
    color: #fff;
}

.manage-start {
    background: #a3cb38;
}

.manage-restart {
    background: #679b9b;
}

.manage-stop {
    background: #f26b6b;
}

.data {
    background: #fff;
    border-bottom: 1px solid #aacfcf;
    border-collapse: collapse;
    border-radius: 3px;
    width: 100%;
}

.data th {
    background: #aacfcf;
    color: #fff;
    font-weight: 500;
    padding: 12px;
    text-align: center;
}

.data td {
    color: #404040;
    padding: 8px 11px;
    text-align: center;
}

.data tr:nth-child(even) {
    background: #f5f4fa;
}

.data tr:nth-child(odd) {
    background: #ededed;
}

.badge {
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    font-weight: 500;
    padding: 2px 5px;
}

.badge-success {
    background: #85ef47;
}

.badge-danger {
    background: #ff5959;
}

.badge-info {
    background: #75cac3;
}

.client-alert {
    border-radius: 5px;
    color: #fff;
    margin-bottom: 18px;
    padding: 13px 14px;
}

.client-alert.success {
    background: #85ef47;
}

.client-alert.error {
    background: #ff5959;
}

.client-alert.warning {
    background: #ff9d76;
}

.loginform {
    align-items: flex-start;
    background: #eaeaea;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.login-page {
    margin: auto;
    padding: 10% 0 0;
    width: 430px;
}

.form {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 41px rgba(0, 0, 0, 0.09);
    margin: 0 auto 80px;
    max-width: 500px;
    padding: 45px;
    text-align: center;
}

.logo {
    padding-bottom: 20px;
    width: 80%;
}

.form input {
    background-color: #f8fcfd;
    border: 1px solid #e9f2f9;
    border-radius: 4px;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 14px;
    line-height: 36px;
    margin: 0 0 15px;
    outline: none;
    padding: 5px 17px;
    width: 100%;
}

.form button {
    background: #facf5a;
    border-radius: 8px;
    color: #000;
    font-size: 17px;
    padding: 15px;
    text-transform: uppercase;
    width: 100%;
}

.form button:hover {
    background: #f2c038;
}

.message2 {
    color: gray;
    font-size: 15px;
    margin: 15px 0 0;
    text-align: center;
}

.server-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.server-actions form {
    margin: 0;
}

.server-status-head {
    align-items: center;
    box-shadow: 0 0 12px rgba(0, 0, 0, .09);
    color: #fff;
    display: flex;
    justify-content: space-between;
    margin: -36px 0 28px;
    padding: 10px max(18px, calc((100vw - 1140px) / 2));
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    width: 100vw;
}

.server-status-head.is-online {
    background: #21bf73;
}

.server-status-head.is-offline {
    background: #ff5959;
}

.server-status-head.is-pending {
    background: #ffa801;
}

.server-status-head > div {
    align-items: center;
    display: flex;
    gap: 9px;
}

.server-status-head img {
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

.server-status-head strong {
    font-size: 16px;
}

.server-status-head span {
    font-weight: 700;
}

#page-serverlist {
    margin-left: auto;
    margin-right: auto;
}

#page-serverlist .data_list {
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    min-width: 780px;
    word-break: normal;
}

#page-serverlist .data_list th {
    white-space: nowrap;
}

.nitro-page-head {
    box-sizing: border-box;
    left: 50%;
    position: relative;
    text-align: left;
    transform: translateX(-50%);
    width: 100vw;
}

.nitro-server-page {
    margin-left: auto;
    margin-right: auto;
    width: 100% !important;
}

.nitro-server-page .menu-btn {
    box-sizing: border-box;
    display: inline-block;
    min-height: 92px;
    text-align: center;
    vertical-align: top;
}

.nitro-process-controls {
    white-space: nowrap;
}

.nitro-process-controls form {
    display: inline-block;
    margin: 0 2px;
}

.nitro-process-controls .manage-ftp {
    display: inline-block;
    margin: 0 1.5rem 0 2px;
    text-decoration: none;
}

.nitro-main-details .tdright {
    text-align: center;
}

.nitro-payment-warning {
    color: #fff;
    margin-top: 22px;
    text-align: left;
}

.nitro-payment-warning td {
    color: #fff;
}

.server-tool-menu {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.server-tool-menu .menu-btn {
    box-sizing: border-box;
    margin: 0;
    min-height: 92px;
    text-align: center;
    width: 115px;
}

.rcon-tool {
    background: #fff url("/assets/client-theme/images/summary/rcon.png") no-repeat top;
    background-size: 48px 48px;
    padding-top: 55px;
}

.rcon-tool:hover,
.rcon-tool:focus {
    background-color: #6f88b5;
    color: #fff;
}

.server-process-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.server-process-actions form {
    margin: 0;
}

.server-quick-files {
    align-items: center;
    background: #fff;
    box-shadow: 0 0 21px rgba(0, 0, 0, .07);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    margin-bottom: 24px;
    padding: 14px 18px;
}

.server-quick-files .btnfiles,
.server-quick-files .manage-ftp {
    display: inline-block;
    margin: 0;
    text-decoration: none;
}

.server-quick-files .manage-ftp {
    margin-left: auto;
}

.client-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}

.billing-tab {
    box-sizing: border-box;
    display: inline-block;
    min-height: 82px;
    min-width: 115px;
    text-align: center;
}

.nitro-billing-page { margin-left: auto; margin-right: auto; width: 90%; }
.nitro-billing-page > .newsbox { padding: 32px; text-align: center; }
.nitro-billing-page .client-tabs { justify-content: center; margin: 0; }
.nitro-balance-total { display: inline-block; }
.nitro-billing-page .payment-options { margin: 0 auto; max-width: 760px; }
.nitro-billing-page .payment-method { border: 0; }
.nitro-billing-page .payment-method[open] summary { border-bottom: 0; }
.nitro-billing-page .payment-form { border: 1px solid #e9f2f9; margin: 0 auto 16px; text-align: left; }

.active-tab {
    background: #49beb7;
}

.payment-options {
    display: grid;
    gap: 12px;
}

.client-form {
    text-align: left;
}

.payment-method {
    border: 1px solid #e9f2f9;
}

.payment-method summary {
    list-style: none;
}

.payment-method summary::-webkit-details-marker {
    display: none;
}

.payment-method[open] summary {
    border-bottom: 1px solid #e9f2f9;
}

.payment-form {
    background: #fff;
    padding: 20px 22px;
}

.payment-form select,
.payment-form .phone-field {
    max-width: 360px;
}

.client-form label {
    display: block;
    font-weight: 700;
    margin: 0 0 13px;
}

.client-form input,
.client-form select,
.client-form textarea {
    background: #f8fcfd;
    border: 1px solid #e9f2f9;
    border-radius: 4px;
    display: block;
    font: inherit;
    margin-top: 6px;
    min-height: 40px;
    padding: 8px 10px;
    width: 100%;
}

.client-form select {
    appearance: auto;
    background-image: none;
}

.section-icon,
.metric-icon,
.table-icon,
.button-icon {
    object-fit: contain;
    vertical-align: middle;
}

.section-icon {
    height: 22px;
    margin-right: 7px;
    width: 22px;
}

.metric-icon {
    height: 20px;
    margin-right: 6px;
    width: 20px;
}

.table-icon {
    height: 16px;
    margin-right: 5px;
    width: 16px;
}

.button-icon {
    height: 17px;
    margin-right: 5px;
    width: 17px;
}

.profile-avatar {
    border-radius: 50%;
    display: block;
    height: 92px;
    margin: 0 auto 14px;
    object-fit: cover;
    width: 92px;
}

.nitro-profile-page { margin-left: auto; margin-right: auto; width: 90%; }
.nitro-profile-page > .newsbox { padding: 32px; }
.nitro-section-heading { font-size: 13px; letter-spacing: 1px; margin: 1px 1px 6px; }
.nitro-profile-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 18px; }
.nitro-profile-columns > div { padding: 0 9%; text-align: center; }
.nitro-profile-columns > div:first-child { border-right: 1px solid #d3d3d3; }
.nitro-profile-form, .nitro-pin-form { margin: 0 auto; max-width: 360px; }
.nitro-profile-form small { margin: -5px 0 16px; }
.nitro-avatar-picker { cursor: pointer; display: block; margin: 0 auto 12px !important; width: 152px; }
.nitro-avatar-picker .profile-avatar { border: 4px solid #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, .1); height: 152px; margin: 0; width: 152px; }
.nitro-avatar-picker input { margin-top: 8px; min-height: auto; padding: 5px; }
.nitro-pin-form { border-top: 1px solid #e9f2f9; margin-top: 24px; padding-top: 20px; }
.nitro-section-separator { border-bottom: 1px solid #e9f2f9; margin: 28px 0 22px; }
.nitro-add-sub-form { align-items: start; display: grid; gap: 12px; grid-template-columns: 1fr 1fr 1.3fr 1.35fr auto; margin: 18px 0 22px; }
.nitro-add-sub-form fieldset { border: 0; margin: 0; padding: 0; }
.nitro-add-sub-form fieldset label { align-items: center; display: flex; font-size: 12px; font-weight: 400; gap: 5px; margin: 0 0 4px; }
.nitro-add-sub-form fieldset input { margin: 0; min-height: auto; width: auto; }
.nitro-add-sub-form > button { align-self: center; white-space: nowrap; }
.nitro-sub-profile td { padding: 22px 8%; vertical-align: top; width: 50%; }
.nitro-sub-profile td:first-child { border-right: 1px solid #d3d3d3; }

.avatar-upload-row {
    align-items: center;
    display: grid;
    gap: 20px;
    grid-template-columns: 120px minmax(0, 1fr);
    margin-bottom: 18px;
}

.avatar-upload-row .profile-avatar {
    margin: 0 auto;
}

.avatar-upload-row label {
    margin: 0;
}

.client-form small {
    display: block;
    font-weight: 400;
    margin-top: 5px;
}

.phone-field,
.prefixed-input {
    align-items: center;
    display: flex;
    gap: 7px;
}

.phone-field input,
.prefixed-input input {
    flex: 1;
}

.form-grid-client,
.permission-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.permission-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.permission-grid label {
    align-items: center;
    border: 1px solid #e9f2f9;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 10px;
}

.permission-grid input {
    margin: 0;
    min-height: auto;
    width: auto;
}

.permission-status-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.permission-status-grid > div {
    border-bottom: 1px solid #e9f2f9;
    padding: 9px 0;
}

.inline-client-form {
    display: inline-block;
    margin-left: 5px;
}

button.danger {
    background: #ff5959;
}

.support-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(260px, 0.8fr) minmax(520px, 1.6fr);
}

.nitro-support-page { margin-left: auto; margin-right: auto; width: 88%; }
.nitro-support-page > .newsbox { padding: 46px 32px 32px; }
.nitro-support-page .support-grid { grid-template-columns: 35% minmax(0, 1fr); }
.nitro-support-page .support-grid > section + section { padding-left: 25px; }
.nitro-ticket-modal-form { margin-top: 20px; }

.knowledgebase details {
    border-bottom: 1px solid #e9f2f9;
    padding: 12px 0;
}

.knowledgebase summary {
    color: #303030;
    cursor: pointer;
    font-weight: 700;
}

.knowledgebase details p {
    margin: 10px 0 0;
}

.table-wrap-client {
    overflow-x: auto;
}

.ticket-open,
.ticket-replied,
.ticket-closed {
    display: inline-block;
    padding: 3px 6px;
}

.ticket-open {
    background: #ffcc00;
    color: #322800;
}

.ticket-replied {
    background: #ff5959;
    color: #fff;
}

.ticket-closed {
    background: #8cba51;
    color: #fff;
}

.ticket-thread {
    display: grid;
    gap: 14px;
}

.ticket-message {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    max-width: 86%;
}

.ticket-message img {
    border-radius: 50%;
    height: 45px;
    object-fit: cover;
    width: 45px;
}

.ticket-message > div {
    background: #f8fcfd;
    border: 1px solid #e9f2f9;
    padding: 14px 16px;
    width: 100%;
}

.ticket-message p {
    margin: 8px 0 0;
}

.admin-message {
    flex-direction: row-reverse;
    justify-self: end;
}

.admin-message > div {
    background: #eef9f8;
}

.server-console-output {
    background: #111;
    box-sizing: border-box;
    color: #f3f3f3;
    min-height: 420px;
    max-height: 620px;
    overflow: auto;
    width: 100%;
}

.console-command-form > div {
    align-items: center;
    display: flex;
    gap: 8px;
}

.console-command-form input {
    flex: 1;
    margin: 0;
}

.console-command-form button,
.console-command-form .btndefault {
    flex: 0 0 auto;
}

.nitro-console-tab {
    padding: 8px 20px 24px;
}

.nitro-console-tab h3 {
    margin: 0;
}

.nitro-console-heading {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.console-live-status {
    color: #777;
    font-size: 11px;
    font-weight: 700;
}

.console-live-status::before {
    background: #aaa;
    border-radius: 50%;
    content: '';
    display: inline-block;
    height: 8px;
    margin-right: 6px;
    width: 8px;
}

.console-live-status.online {
    color: #238b57;
}

.console-live-status.online::before {
    background: #42b883;
}

.console-live-status.offline {
    color: #b53c35;
}

.console-live-status.offline::before {
    background: #e55b52;
}

.nitro-console-icon {
    position: relative;
    top: 4px;
    width: 19px;
}

.nitro-console-output {
    background: #111;
    box-sizing: border-box;
    color: #f3f3f3;
    font-family: Consolas, monospace;
    min-height: 500px;
    padding: 12px;
    resize: vertical;
    width: 100%;
}

.nitro-console-command,
.nitro-rcon-password {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 18px;
}

.nitro-console-command input,
.nitro-rcon-password input {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    width: 100%;
}

.nitro-rcon-password {
    grid-template-columns: minmax(240px, 1fr) minmax(220px, 0.8fr) auto;
}

.server-settings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.server-tool-form {
    border-top: 1px solid #e5e5e5;
    padding: 14px 0;
}

.server-tool-form h2 {
    font-size: 16px;
    margin: 0 0 12px;
}

.server-tool-form label,
.ftp-password-form label,
.ftp-editor-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

.server-tool-form input,
.ftp-password-form input {
    box-sizing: border-box;
    margin: 0 8px 8px 0;
    max-width: 420px;
    width: 100%;
}

.query-map-cell {
    align-items: center;
    display: flex;
    gap: 9px;
    min-width: 150px;
}

.query-map-image {
    border: 2px solid #d8d7d7;
    border-radius: 4px;
    display: block;
    height: 54px;
    object-fit: cover;
    width: 72px;
}

.nitro-original-map-table {
    margin-top: 14px;
}

.nitro-original-map-table td {
    vertical-align: middle;
}

.nitro-original-map-image img {
    border: 5px solid #d8d7d7;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    height: auto;
    max-width: 240px;
    object-fit: cover;
    width: 240px;
}

.nitro-original-map-table .text {
    box-sizing: border-box;
    max-width: 380px;
    width: 100%;
}

.nitro-original-map-table input:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.page-head-ftp {
    background: #42b883;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.09);
    color: #fff;
    min-height: 58px;
    padding: 8px 0 12px;
}

.page-head-ftp a {
    color: #fff;
    text-decoration: none;
}

.ftp-back-icon {
    cursor: pointer;
    position: relative;
    top: 5px;
    width: 21px;
}

.nitro-ftp-page {
    margin: 2% auto 0;
    min-height: 800px;
    padding: 1px 16px;
    width: 90%;
}

.nitro-ftp-page .newsbox {
    padding: 34px 24px 28px;
}

.ftp-table-wrap {
    overflow-x: auto;
}

.ftp-browser {
    min-width: 720px;
}

.ftp-entry-row:hover td {
    background: #faf4f4;
}

.ftp-name-cell {
    text-align: left !important;
}

.ftp-name-cell img {
    margin-right: 7px;
    max-height: 24px;
    object-fit: contain;
    vertical-align: middle;
    width: 24px;
}

.ftp-name-cell img[src$="file.png"] {
    width: 15px;
}

.ftp-permissions {
    font-family: Consolas, monospace;
}

.ftp-delete-form {
    margin: 0;
}

.ftp-delete-button {
    min-width: 28px;
    padding: 5px 8px;
}

.ftp-forms-row {
    align-items: start;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
}

.ftp-original-form,
.ftp-original-form table {
    margin: 0;
    width: 100%;
}

.ftp-original-form input[type="file"],
.ftp-original-form input.text {
    box-sizing: border-box;
    max-width: 420px;
    width: 100%;
}

.ftp-account-details {
    border-top: 1px solid #e5e5e5;
    margin-top: 24px;
    padding-top: 14px;
}

.ftp-account-details summary {
    cursor: pointer;
    font-weight: 700;
    margin-bottom: 12px;
}

.ftp-details {
    margin-bottom: 16px;
}

.ftp-password-form,
.ftp-editor-form {
    border-top: 1px solid #e5e5e5;
    margin-top: 16px;
    padding-top: 16px;
}

.ftp-editor-form textarea {
    box-sizing: border-box;
    display: block;
    font-family: Consolas, monospace;
    min-height: 420px;
    margin-bottom: 10px;
    resize: vertical;
    width: 100%;
}

.server-admin-form {
    border-top: 1px solid #e5e5e5;
    margin-top: 18px;
    padding-top: 16px;
}

.server-admin-form label {
    display: block;
    font-weight: 700;
    margin: 8px 0 5px;
}

.server-admin-form input,
.server-admin-form select {
    box-sizing: border-box;
    display: block;
    max-width: 460px;
    min-height: 40px;
    width: 100%;
}

.nitro-install-page {
    margin: 0 auto;
    width: 90%;
}

.nitro-install-holder {
    overflow: hidden;
}

.server-install-form {
    display: block;
}

.install-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 20px;
}

.install-option {
    display: block;
    position: relative;
}

.install-option > input {
    height: 1px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 1px;
}

.install-option .boxrow {
    box-sizing: border-box;
    float: none;
    margin: 0;
    min-height: 82px;
    min-width: 150px;
}

.install-option > input:checked + .boxrow,
.install-option > input:focus + .boxrow {
    background: #ffc15e;
    color: #fff;
}

.install-option[hidden] {
    display: none;
}

#install-finish[hidden] {
    display: none;
}

#install-finish .menulink-logout {
    margin-left: 20px;
}

.server-install-status-form {
    border-top: 1px solid #e5e5e5;
    margin-top: 18px;
    padding-top: 16px;
}

.server-transfer-form,
.server-reinstall-form,
.server-renew-form {
    max-width: 560px;
}

.server-transfer-form button,
.server-reinstall-form button,
.server-renew-form button {
    margin-top: 12px;
}

.nitro-server-billing-page {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

.nitro-receipts-title {
    border-bottom: 1px solid #bababa;
    color: #bababa;
    font-family: Rubik, sans-serif;
    margin-top: 22px;
}

.nitro-renew-action {
    align-items: center;
    display: flex;
    gap: 18px;
}

@media (max-width: 820px) {
    .nitro-profile-columns { grid-template-columns: 1fr; }
    .nitro-profile-columns > div { padding: 20px 0; }
    .nitro-profile-columns > div:first-child { border-bottom: 1px solid #d3d3d3; border-right: 0; }
    .nitro-add-sub-form { grid-template-columns: 1fr; }
    .nitro-sub-profile, .nitro-sub-profile tbody, .nitro-sub-profile tr, .nitro-sub-profile td { display: block; width: 100%; }
    .nitro-sub-profile td { padding: 18px 0; }
    .nitro-sub-profile td:first-child { border-bottom: 1px solid #d3d3d3; border-right: 0; }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-metrics-table,
    .dashboard-metrics-table tbody,
    .dashboard-metrics-table tr,
    .dashboard-metrics-table td {
        display: block;
        width: 100% !important;
    }

    .nitro-owned-servers {
        justify-content: center;
        margin-left: 0;
        width: 100%;
    }

    .nitro-create-form table {
        min-width: 0;
        width: 100%;
    }

    .form-grid-client,
    .permission-grid,
    .permission-status-grid,
    .support-grid,
    .avatar-upload-row {
        grid-template-columns: 1fr;
    }

    .server-settings-grid {
        grid-template-columns: 1fr;
    }

    .nitro-ftp-page {
        padding: 1px 8px;
        width: 100%;
    }

    .nitro-ftp-page .newsbox {
        padding: 18px 10px;
    }

    .ftp-forms-row {
        grid-template-columns: 1fr;
    }

    .nitro-console-tab {
        padding: 4px 0 18px;
    }

    .nitro-console-command,
    .nitro-rcon-password {
        grid-template-columns: 1fr;
    }

    .server-status-head {
        margin-top: -36px;
        padding: 10px 14px;
    }

    #page-serverlist,
    .nitro-server-page {
        width: 100% !important;
    }

    #page-serverlist .newsbox_gametracker,
    .nitro-server-page .newsbox {
        overflow-x: auto;
        padding: 18px !important;
    }

    #page-serverlist .data_list {
        min-width: 780px;
    }

    .nitro-toolbar,
    .nitro-toolbar tbody,
    .nitro-toolbar tr,
    .nitro-toolbar td {
        display: block;
        text-align: center !important;
        width: 100%;
    }

    .nitro-toolbar td {
        padding: 6px 0;
    }

    .nitro-toolbar .btnfiles {
        display: inline-block;
        margin: 3px 1px;
    }

    .nitro-toolbar .nitro-process-controls {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }

    .nitro-toolbar .nitro-process-controls form,
    .nitro-toolbar .nitro-process-controls .manage-ftp {
        margin: 0;
    }

    .nitro-main-details > tbody > tr,
    .nitro-main-details > tbody > tr > td {
        display: block;
        width: 100%;
    }

    .nitro-original-map-table,
    .nitro-original-map-table tbody,
    .nitro-original-map-table tr,
    .nitro-original-map-table td {
        display: block;
        width: 100%;
    }

    .nitro-original-map-image img {
        height: auto;
        max-width: 240px;
        width: 100%;
    }

    .nitro-client-home .nitro-subuser-server-holder {
        width: 100%;
    }

    .nitro-process-controls {
        white-space: normal;
    }

    .server-process-actions,
    .server-quick-files {
        justify-content: center;
    }

    .server-quick-files .manage-ftp {
        margin-left: 0;
    }

    .ticket-message {
        max-width: 100%;
    }

    .header table,
    .header tbody,
    .header tr,
    .header td {
        display: block;
        text-align: center;
        width: 100%;
    }

    .link-head,
    .logout,
    .client-name {
        margin-top: 8px;
    }
}
@import url("/assets/vendor/fonts/fonts.css");
