/* ==========================================================
   RUSSOS AMS
   DASHBOARD
========================================================== */

.ams-dashboard{

    width:100%;
    height:100%;

    padding:42px 48px;

    color:#D9E3EA;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    overflow:auto;
}


/* ==========================================================
   HEADER
========================================================== */

.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:40px;

    padding-bottom:28px;

    border-bottom:1px solid rgba(255,255,255,.07);
}


.dashboard-kicker{

    color:#00F2FE;

    font-family:Consolas,monospace;

    font-size:11px;

    letter-spacing:4px;

    margin-bottom:8px;
}


.dashboard-header h1{

    margin:0;

    font-size:28px;

    letter-spacing:5px;

    font-weight:700;
}


.dashboard-header p{

    margin:8px 0 0;

    color:#687785;

    font-family:Consolas,monospace;

    font-size:10px;

    letter-spacing:3px;
}


/* ==========================================================
   USER
========================================================== */

.dashboard-user{

    min-width:210px;

    padding:14px 18px;

    border-left:1px solid rgba(0,242,254,.25);

    background:rgba(255,255,255,.015);

    text-align:right;
}


.dashboard-user-status{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:7px;

    margin-bottom:8px;

    color:#00F2FE;

    font-family:Consolas,monospace;

    font-size:9px;

    letter-spacing:2px;
}


.dashboard-user-status span{

    width:6px;
    height:6px;

    border-radius:50%;

    background:#00F2FE;

    box-shadow:
        0 0 7px rgba(0,242,254,.8);
}


.dashboard-user strong{

    display:block;

    font-size:14px;

    letter-spacing:2px;
}


.dashboard-user small{

    display:block;

    margin-top:4px;

    color:#697985;

    font-family:Consolas,monospace;

    font-size:9px;

    letter-spacing:2px;
}


/* ==========================================================
   STATUS CARDS
========================================================== */

.dashboard-grid{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:14px;

    margin-top:24px;
}


.dashboard-card{

    min-height:105px;

    padding:18px;

    border:1px solid rgba(255,255,255,.07);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.008)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025);
}


.dashboard-card-label{

    display:block;

    color:#61717E;

    font-family:Consolas,monospace;

    font-size:9px;

    letter-spacing:2px;
}


.dashboard-card strong{

    display:block;

    margin-top:14px;

    color:#DDE8EE;

    font-size:18px;

    letter-spacing:1px;
}


.dashboard-card small{

    display:block;

    margin-top:7px;

    color:#52616D;

    font-family:Consolas,monospace;

    font-size:8px;

    letter-spacing:1.5px;
}


/* ==========================================================
   MODULE TITLE
========================================================== */

.dashboard-section-title{

    margin-top:30px;

    margin-bottom:14px;

    color:#687985;

    font-family:Consolas,monospace;

    font-size:10px;

    letter-spacing:3px;
}


/* ==========================================================
   MODULES
========================================================== */

.module-grid{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:12px;
}


.module-card{

    display:block;

    text-decoration:none;

    min-height:82px;

    padding:18px;

    border:1px solid rgba(255,255,255,.065);

    background:#0A0F13;

    color:#DCE5EA;

    text-align:left;

    cursor:pointer;

    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.module-card:hover{

    border-color:
        rgba(0,242,254,.35);

    background:#0D151A;

    transform:translateY(-2px);
}


.module-card strong{

    display:block;

    font-size:12px;

    letter-spacing:2px;
}


.module-card span{

    display:block;

    margin-top:7px;

    color:#657581;

    font-family:Consolas,monospace;

    font-size:9px;

    letter-spacing:1px;
}

/* ==========================================================
   MODULE PLACEHOLDER
========================================================== */

.ams-module-placeholder{

    width:100%;

    min-height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px;
}


.ams-module-kicker{

    color:#00F2FE;

    font-family:Consolas,monospace;

    font-size:11px;

    letter-spacing:5px;

    margin-bottom:14px;
}


.ams-module-placeholder h1{

    margin:0;

    color:#DDE6EC;

    font-size:32px;

    letter-spacing:5px;
}


.ams-module-placeholder p{

    margin:12px 0 25px;

    color:#687985;

    font-family:Consolas,monospace;

    font-size:11px;

    letter-spacing:3px;
}


.ams-module-line{

    width:280px;

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,242,254,.5),
            transparent
        );

    margin-bottom:20px;
}


.ams-module-placeholder span{

    color:#00F2FE;

    font-family:Consolas,monospace;

    font-size:9px;

    letter-spacing:3px;
}
/* ==========================================================
   RUSSOS AMS DASHBOARD
========================================================== */

.ams-dashboard-page {
    width:100%;
    min-height:100%;
    padding:38px 42px 80px;
    box-sizing:border-box;
    color:#DDE8EE;
}


/* ==========================================================
   HEADER
========================================================== */

.ams-dashboard-header {
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:30px;
    padding-bottom:26px;
    border-bottom:1px solid rgba(255,255,255,.07);
}

.ams-dashboard-kicker {
    color:#00F2FE;
    font-family:Consolas,"Courier New",monospace;
    font-size:11px;
    letter-spacing:4px;
    margin-bottom:10px;
}

.ams-dashboard-header h1 {
    margin:0;
    font-size:29px;
    font-weight:700;
    letter-spacing:2px;
}

.ams-dashboard-header p {
    margin:9px 0 0;
    color:#71828D;
    font-family:Consolas,"Courier New",monospace;
    font-size:11px;
    letter-spacing:2px;
}

.ams-dashboard-profile {
    min-width:220px;
    padding:15px 18px;
    border:1px solid rgba(255,255,255,.07);
    background:rgba(255,255,255,.018);
}

.ams-dashboard-profile span {
    display:block;
    color:#60727D;
    font-family:Consolas,"Courier New",monospace;
    font-size:9px;
    letter-spacing:2px;
}

.ams-dashboard-profile strong {
    display:block;
    margin-top:7px;
    color:#DDE8EE;
    font-size:14px;
    letter-spacing:1px;
}

.ams-dashboard-profile small {
    display:block;
    margin-top:5px;
    color:#00F2FE;
    font-family:Consolas,"Courier New",monospace;
    font-size:9px;
    letter-spacing:1.5px;
}


/* ==========================================================
   STATUS
========================================================== */

.ams-dashboard-statusbar {
    display:flex;
    gap:30px;
    margin-top:20px;
    padding:14px 18px;
    border:1px solid rgba(255,255,255,.06);
    background:rgba(255,255,255,.01);
}

.dashboard-status-item {
    display:flex;
    align-items:center;
    gap:9px;
}

.dashboard-status-dot {
    width:7px;
    height:7px;
    border-radius:50%;
    background:#00F2FE;
    box-shadow:0 0 9px rgba(0,242,254,.65);
}

.dashboard-status-item strong {
    display:block;
    color:#AEBBC2;
    font-family:Consolas,"Courier New",monospace;
    font-size:9px;
    letter-spacing:1.5px;
}

.dashboard-status-item small {
    display:block;
    margin-top:3px;
    color:#60727D;
    font-family:Consolas,"Courier New",monospace;
    font-size:8px;
}


/* ==========================================================
   SECTIONS
========================================================== */

.ams-dashboard-section {
    margin-top:30px;
}

.ams-dashboard-section-header {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:13px;
}

.ams-dashboard-section-header span {
    display:block;
    color:#00F2FE;
    font-family:Consolas,"Courier New",monospace;
    font-size:10px;
    letter-spacing:3px;
}

.ams-dashboard-section-header h2 {
    margin:5px 0 0;
    color:#DDE8EE;
    font-size:16px;
    letter-spacing:2px;
}

.ams-dashboard-section-header > small {
    color:#596B76;
    font-family:Consolas,"Courier New",monospace;
    font-size:9px;
    letter-spacing:1px;
}


/* ==========================================================
   MODULES
========================================================== */

.ams-dashboard-modules {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.module-card {
    position:relative;
    display:flex;
    align-items:center;
    gap:14px;
    min-height:88px;
    padding:16px 18px;
    box-sizing:border-box;
    border:1px solid rgba(255,255,255,.07);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.025),
            rgba(255,255,255,.006)
        );
    color:#DDE8EE;
    text-decoration:none;
    transition:
        border-color .18s ease,
        background .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}

.module-card:hover {
    border-color:rgba(0,242,254,.18);
    background:
        linear-gradient(
            145deg,
            rgba(0,242,254,.028),
            rgba(255,255,255,.006)
        );
    transform:translateY(-1px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.module-card-icon {
    width:42px;
    height:42px;
    flex:0 0 42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(0,242,254,.20);
    background:rgba(0,242,254,.03);
    color:#00F2FE;
    font-family:Consolas,"Courier New",monospace;
    font-size:15px;
}

.module-card-content {
    min-width:0;
    flex:1;
}

.module-card-content strong {
    display:block;
    color:#E0E9EE;
    font-size:15px;
    letter-spacing:1.5px;
}

.module-card-content span {
    display:block;
    margin-top:5px;
    color:#667984;
    font-family:Consolas,"Courier New",monospace;
    font-size:10px;
    letter-spacing:1px;
}

.module-card-arrow {
    color:#00F2FE;
    font-family:Consolas,"Courier New",monospace;
    font-size:20px;
}

.module-card-disabled {
    opacity:.42;
    cursor:not-allowed;
}

.module-card-disabled:hover {
    transform:none;
    border-color:rgba(255,255,255,.07);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.025),
            rgba(255,255,255,.006)
        );
    box-shadow:none;
}

.module-card-state {
    color:#586A75;
    font-family:Consolas,"Courier New",monospace;
    font-size:8px;
    letter-spacing:1.5px;
}


/* ==========================================================
   QUICK ACCESS
========================================================== */

.ams-dashboard-quick {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.dashboard-quick-button {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:0 16px;
    box-sizing:border-box;
    border:1px solid rgba(255,255,255,.08);
    background:#080C0F;
    color:#7D8C95;
    text-decoration:none;
    font-family:Consolas,"Courier New",monospace;
    font-size:9px;
    letter-spacing:1.8px;
    transition:.18s ease;
}

.dashboard-quick-button:hover {
    color:#00F2FE;
    border-color:rgba(0,242,254,.24);
    background:rgba(0,242,254,.025);
}

.dashboard-quick-danger:hover {
    color:#E09A9A;
    border-color:rgba(215,100,100,.30);
    background:rgba(215,100,100,.04);
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:900px) {

    .ams-dashboard-modules {
        grid-template-columns:1fr;
    }

    .ams-dashboard-header {
        flex-direction:column;
    }

    .ams-dashboard-profile {
        width:100%;
        box-sizing:border-box;
    }
}

@media (max-width:700px) {

    .ams-dashboard-page {
        padding:24px 18px 70px;
    }

    .ams-dashboard-statusbar {
        flex-direction:column;
        gap:12px;
    }

    .ams-dashboard-section-header {
        flex-direction:column;
        align-items:flex-start;
    }

    .ams-dashboard-header h1 {
        font-size:24px;
    }
}
/* ==========================================================
   SCROLLBAR
========================================================== */

.ams-dashboard::-webkit-scrollbar{

    width:5px;
}


.ams-dashboard::-webkit-scrollbar-track{

    background:#05080A;
}


.ams-dashboard::-webkit-scrollbar-thumb{

    background:#26333B;
}


@media (max-width:900px){

    .dashboard-grid{

        grid-template-columns:
            repeat(2,1fr);
    }

    .module-grid{

        grid-template-columns:
            repeat(2,1fr);
    }

}


@media (max-width:650px){

    .dashboard-header{

        flex-direction:column;
    }

    .dashboard-user{

        width:100%;

        text-align:left;
    }

    .dashboard-user-status{

        justify-content:flex-start;
    }

    .dashboard-grid,
    .module-grid{

        grid-template-columns:1fr;
    }

}