.design-system-link{
    display: none;
}
.admin .design-system-link{
    display: flex;
}

.admin-charts{
    display: flex;
    gap:24px;
}

#signups-chart canvas, #growth-chart canvas{
    width:100%;
    object-fit: contain;
}

#signups-chart, #growth-chart{
    padding:12px;
    border:1px solid var(--border);
    background:white;
    border-radius:6px;
    box-shadow:var(--shadow-default);
}

.needs-upgrade {
    background-color: var(--accent-red-wash);
}
.upgrade-soon{
    background-color: var(--accent-orange-wash);
}

#services-chart{
    display:flex;
    flex-wrap:wrap;
    font-size:11px;
    padding:16px 0;
    gap:8px;
    overflow-x: scroll;
}
#services-chart > div{
    display: flex;
    border:1px solid rgba(0,0,0,.14);
    padding:4px 12px;
    background:white;
    align-items: center;
    gap:6px;
    border-radius: 20px;
}
#services-chart img{
    width:16px;
    height:16px;
}
#services-chart .count{
    background-color: var(--wash-dark);
    padding:4px;
    font-weight: 500;
    border-radius: 4px;
}
#services-chart .name{
    white-space: nowrap;
}
.service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}
.single-services-container {
    margin-top: 16px;
}
#single-services-list {
    margin-top: 8px;
}

@media only screen and (max-width: 768px){
    .admin-charts{
        flex-direction: column;
    }
    #services-chart{
        flex-wrap:nowrap;
    }
}
.general-logo{
    background-color:var(--accent-blue);
}
.openai-logo{
    background-color:black;
}
.anthropic-logo{
    background-color:#C49D7F;
}
.huggingface-logo{
    background-color: #6B7280;
}
.replicate-logo{
    background-color:#EA2804;
}
.fal-logo{
    background-color:#FBEBD8;
}
.stripe-logo{
    background-color:#635BFF;
}
.lemonsqueezy-logo{
    background-color:#4F26DE;
}
.stability-logo{
    background-color:#2F0463;
}
.open-meteo-logo{
    background-color:#EF8E34;
}
.together-logo{
    background-color:#F0EFED;
}
.perplexity-logo{
    background-color:#20808D;
}
.gemini-logo{
    background:#fff;
}
.deepl-logo{
    background-color:#172D51;
}
.deepl-logo-free{
    background-color:#172D51;
    position:relative;
    overflow:hidden;
}
.deepl-logo-free::after {
    content: "FREE";
    background:red;
    transform: rotate(-35deg);
    color:white;
    font-size:9px;
    font-weight:bold;
    left:-15px;
    top:4px;
    display:block;
    position:absolute;
    padding:1px 16px;
}
.elevenlabs-logo{
    background-color:#000;
}
.groq-logo{
    background-color: #F55036;
}
.mistral-logo{
    background-color: #F5F2E4;
}
.eachai-logo{
    background-color: #3851FF;
}
.openrouter-logo{
    background-color: #6566F1;
}
.deepseek-logo{
    background-color: #4D6BFE;
}
.fireworks-logo{
    background-color: #5019C5;
}
.brave-logo{
    background-color: #FF3201;
}
:root {

    --wash-light:#fcfcfc;
    --wash: #F8FAFC;
    --wash-dark: #F1F5F9;

    --primary: #0F172A;
    --secondary: #334155;
    --tertiary: #64748B;
    --quaternary:#CBD5E1;

    --accent-blue: #3B82F6;
    --accent-blue-hover: #2563EB;
    --accent-blue-wash:#F1F6FE;
    --accent-blue-wash-hover:#EDF3FE;

    --accent-dark-blue: #334155;
    --accent-dark-blue-hover: #252F3D;
    --accent-dark-blue-wash: #F1F2F3;

    --accent-red:#EF4444;
    --accent-red-hover:#DC2626;
    --accent-red-wash:#FEF2F2;
    --accent-red-wash-hover:#FEEEEE;

    --accent-orange: #F97316;
    --accent-orange-hover: #F75310;
    --accent-orange-wash: #FEF5EF;

    --accent-green:#22C55E;
    --accent-green-hover:#19B544;
    --accent-green-wash:#EFFBF4;

    --divider: #E2E8F0;
    --border: rgba(0,0,0,0.14);
    --border-hover:rgba(0,0,0,0.28);

    --input-border:#CBD5E1;

    --font-size-xxsm:11px;
    --font-size-xsm:12px;
    --font-size-sm:13px;
    --font-size-base:14px;
    --font-size-md:16px;
    --font-size-lg:18px;
    --font-size-xl:20px;
    --font-size-xxl:24px;

    --shadow-default: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 2px 4px rgba(0, 0, 0, 0.05);
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
    font-size: var(--font-size-base);
    color: var(--primary);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    background-color: var(--wash-light);
}
p{
    line-height: 150%;
}
.bold{
    font-weight:bold;
}
.mono {
    font-family: "Roboto Mono", monospace;
}
.blue{
    color:var(--accent-blue);
}
.green{
    color:var(--accent-green);
}
.green-text{
    color:var(--accent-green-hover);
}
.orange{
    color:var(--accent-orange);
}
.orange-text{
    color:var(--accent-orange-hover);
}
.red{
    color:var(--accent-red);
}
.red-text{
    color:var(--accent-red-hover);
}

.code{
    display: inline-block;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 0 4px;
    font-family: monospace;
    background-color:var(--wash-dark);
    color: var(--primary);
}

.code-dark{
    display: inline-block;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 0 4px;
    font-family: monospace;
    background-color:var(--secondary);
    color: var(--wash-light);
}
#user_error_messages{
    display: inline-block;
}
.error-banner{
    color:#EF4444;
    font-size:var(--font-size-sm);
    background-color: var(--accent-red-wash);
    border:1px solid var(--border);
    border-radius:6px;
    padding:12px;
}
.error-banner ul{
    margin:0 0 0 16px;
    padding:0;
    line-height:150%;
}

.error-banner h5{
    font-weight:600;
    color:#EF4444;
    margin:0 0 8px 0;
}

.banner{
    display: flex;
    padding:16px;
    gap:16px;
    border: 1px solid var(--border);
    background-color:white;
    border-radius:6px;
    color:var(--secondary);
    box-shadow: var(--shadow-default);
}
.banner i{
    font-size:var(--font-size-lg);
}

.banner-warning i{
    color:var(--accent-orange);
}
.banner-success i{
    color:var(--accent-green);
}
.banner-info i{
    color:var(--accent-blue);
}

.banner-text{
    display: flex;
    flex-direction:column;
    gap:8px;
    align-items:flex-start;
}
.banner-text pre{
    margin:0;
    background:var(--primary);
    padding:8px;
    border-radius:6px;
    color:var(--quaternary);
}
.banner h5{
    font-weight: bold;
    color:var(--primary);
}
.banner p{
    color:var(--secondary);
    font-size:var(--font-size-sm);

}
.banner .btn{
    margin-top:8px;
    display:flex;
}

.banner-upgrade{
    background-color:var(--accent-orange-wash);
}

.callout-banner{
    padding:8px;
    border-radius:3px;
    border:1px solid #FECACA;
    background-color:#FEF2F2;
    color:var(--accent-red);
    font-size:12px;
    margin:8px 0;
    line-height:150%;
}


/* Key instructions */
.instructions{
    font-weight: 500;
    color:var(--primary);
}
.instructions h4{
    font-weight: 600;
    color: var(--primary);
}
.instructions h5{
    font-weight: 500;
    color: var(--secondary);
    margin-top:8px;
}
.instructions a{
    color:var(--accent-blue);
}
.instructions ol, .instructions ul{
    margin: 0;
    padding: 16px;
    list-style-position: inside;
}
.instructions ol li{
    padding:8px 0;
    line-height:150%;
}

@media only screen and (max-width: 768px){
    .banner{
        flex-direction: column;
    }
    .banner .help-video{

    }
}
.btn-group {
    display: flex;
    border:1px solid var(--border);
    cursor:pointer;
    border-radius: 6px;
    background-color: var(--wash-light);
    box-shadow: var(--shadow-default);
}
.btn-group a{
    outline: none;
    border:none;
    cursor: pointer;
    gap:6px;
    color: var(--secondary);
    align-items:center;
    text-align:center;
    font-weight: 500;
    font-size: var(--font-size-base);
    box-shadow:var(--shadow-default);
    padding: 7px 12px;
    text-decoration: none;
    transition: all 0.14s ease-in-out;
    -webkit-transition: all 0.14s ease-in-out;
    border-right:1px solid var(--border);
    &:first-child{
        border-radius: 5px 0 0 5px;
    }
    &:last-child{
        border-right:none;
        border-radius: 0 5px 5px 0;
    }
    &:hover{
        color:var(--primary);
        background-color: var(--wash);
        box-shadow:var(--shadow-hover);
    }
    &.active{
        color:white;
        background-color: var(--accent-blue);
    }
}

    
.btn {
    outline: none;
    position:relative;
    border:none;
    cursor: pointer;
    display: inline-flex;
    gap:6px;
    align-items:center;
    text-align:center;
    font-weight: 500;
    height:32px;
    box-sizing: border-box;
    font-size: var(--font-size-base);
    box-shadow:var(--shadow-default);
    padding: 0 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.14s ease-in-out;
    -webkit-transition: all 0.14s ease-in-out;
}
.btn:active{
    transform: scale(0.98);
}


/* Button Primary */
.btn-primary {
    color: white;
    background: var(--accent-blue);
}
.btn-primary:hover{
    background-color: var(--accent-blue-hover);
    box-shadow: var(--shadow-hover);
}

/* Button Secondary */
.btn-secondary {
    color: var(--accent-blue);
    background:var(--accent-blue-wash);
    box-shadow: none;
}
.btn-secondary:hover {
    background: var(--accent-blue-wash-hover);
    box-shadow: none;
}

/* Button Tertiary */
.btn-tertiary {
    color: var(--secondary);
    background-color: var(--wash-light);
    border:1px solid var(--border);
    box-shadow: var(--shadow-default);
}

.btn-tertiary:hover{
    color:var(--primary);
    background-color: var(--wash-dark);
    border:1px solid var(--border-hover);
    box-shadow: var(--shadow-hover);
}

/* Button Plain */
.btn-plain {
    color: var(--secondary);
    border:none;
    box-shadow:none;
    background: none;
}
.btn-plain:hover {
    color: var(--primary);
    background: var(--wash-dark);
    border:none;
    box-shadow:none;
}

/* Button Link */
.btn-link{
    color: var(--tertiary);
    border:none;
    box-shadow:none;
}
.btn-link:hover{
    color: var(--primary);
    background-color: none;
    border:none;
    box-shadow:none;
}




.btn-destructive {
    color: white;
    background:var(--accent-red);
}
.btn-destructive:hover {
    background: var(--accent-red-hover);
}
.btn-destructive-secondary{
    color:var(--accent-red);
    background:var(--accent-red-wash);
    border:none;
    box-shadow:none;
}
.btn-destructive-secondary:hover{
    color:var(--accent-red-hover);
    background-color: var(--accent-red-wash-hover);
    border:none;
    box-shadow:none;
}


.btn-lg{
    height: 40px;
    display:block;
    width:100%;
}

.btn-sm{
    height: auto;
    font-size: 12px;
    padding:6px 8px;
}

a.form-link{
    font-size: var(--font-size-xsm);
    color:var(--tertiary);
    text-decoration:none;
    margin:4px 0;
}
a.form-link:hover{
    text-decoration:underline;
    color:var(--secondary);
}

.template-options{
    display: flex;
    gap:4px;
    flex-flow: wrap;
}
.template-options a img{
    width:16px;
    height:16px;
}
.card-wrapper{
    display: flex;
    border:1px solid var(--border);
    border-radius:6px;
    background:white;
    box-shadow:var(--shadow-default);
    justify-content: space-evenly;
}
.card{
    display: flex;
    flex-direction: column;
    flex:1;
    gap:8px;
    padding:24px;
    border-right:1px solid var(--divider);
    justify-content: flex-start;
    text-align: left;
    &:last-child{
        border-right:none;
    }
    label{
        color:var(--tertiary);
        font-weight: 500;
    }
}

@media only screen and (max-width: 768px){
    .card-wrapper{
        flex-direction: column;
    }
    .card{
        padding:12px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-right:none;
        border-bottom:1px solid var(--divider);
        label{
            flex-basis: 50%;
        }
        h1{
            font-size: var(--font-size-xl);
        }
        &:last-child{
            border-bottom:none;
        }
    }

}
#project_charts_turbo_frame{
    display:flex;
    flex-direction: column;
    gap:24px;
}
.chart-wrapper{
    width:100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.chart-card{
    display: flex;
    gap:8px;
    border:1px solid var(--border);
    border-radius:6px;
    background:white;
    box-shadow:var(--shadow-default);
    justify-content: space-between;
    flex-direction: column;
    flex:1;
    padding:24px;
    text-align: left;
}

.chart-card h5{
    color:var(--secondary);
    font-weight: bold;
}

.chart-container{
    position: relative; height:15vh; width:32vw
}
@media only screen and (max-width: 1200px){
    .chart-wrapper{
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .chart-container{
        position: relative; height:15vh; width:60vw;
    }
}
@media only screen and (max-width: 960px){
    .chart-container{
        position: relative; height:15vh; width:55vw
    }
}
@media only screen and (max-width: 768px){
    .chart-container{
        position: relative; height:15vh; width:85vw
    }
}
.chip{
    display: inline-block;
    align-self:flex-start;
    font-size:11px;
    font-weight: 600;
    padding:4px 6px;
    border-radius:12px;
    background-color: var(--wash);
    border:1px solid var(--border);
}

.chip-error{
    color:var(--accent-red-hover);
    background-color:var(--accent-red-wash);
    border:1px solid var(--accent-red);
}

.chip-warning{
    color:var(--accent-orange-hover);
    background-color:var(--accent-orange-wash);
    border:1px solid var(--accent-orange);
}

.chip-success{
    color:var(--accent-green-hover);
    background-color:var(--accent-green-wash);
    border:1px solid var(--accent-green);
}
.instructions pre{
    margin:0;
    font-size: 12px;
}
.instructions pre code{
    border-radius: 3px;
}
.instructions p{
    line-height:150%;
    margin:16px 0;
}
.instructions i{
  display: block;
  margin-top:8px;
}

#socket_messages{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    flex-direction: 1;
    flex-basis: 100%;
    background:#011627;
    border-radius: 6px;
    padding:16px;
    overflow-x:scroll;
    counter-reset: line;
  }
  #socket_messages > div {
    display: flex;
    align-items:center;
  }

  #socket_messages >div:before {
    counter-increment: line;
    content: counter(line);
    display: inline-block;
    border-right: 1px solid #ddd;
    padding: 3px .5em;
    margin-right: .5em;
    color: #888;
    font-family:monospace;
  }

  #socket_messages pre{
    margin:0;
    display: flex;
    font-size: var(--font-size-base);
    padding:0;
    color:#efefef;
  }

  #socket_messages pre code{
    padding:3px 5px;
  }
  #socket_messages .request-fail pre code{
    background:rgba(255, 0, 0, 0.28);
    border-radius:3px;
  }
  #socket_messages .request-warning pre code{
    background:rgba(255, 171, 51, 0.28);
    border-radius:3px;
  }
  #socket_messages .request-stats pre code{
    background:rgba(0, 255, 0, 0.28);
    border-radius:3px;
  }
/* Dropdown Content (Hidden by Default) */
.dropdown {
    display: none;
    position: absolute;
    right:0;
    top:31px;
    background:transparent;
    z-index: 1;
    border-radius:6px;
    color: var(--secondary);
    text-align:left;
    background-color: #fff;
    border:1px solid var(--border);
    min-width: 160px;
    box-shadow: var(--shadow-default);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown a {
    color: var(--secondary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Show the dropdown menu on hover */
.btn-dropdown:hover .dropdown {
    display: block;
}
.list-row{
    padding:16px 0;
    border-bottom: 1px solid var(--divider);
    font-size: var(--font-size-base);
    display: flex;
    font-weight: 400;
    justify-content: space-between;
    align-items:center;
}

.list-row-no-border{
    padding:16px 0;
    margin-bottom: 16px;
    font-size: var(--font-size-base);
    display: flex;
    font-weight: 400;
    justify-content: space-between;
    align-items:center;
}

.list-label{
    display: flex;
    flex-direction: column;
    gap:4px;
}
.list-label label{
    font-weight: 500;
    color:var(--secondary);
}
.list-label p{
    font-size: var(--font-size-sm);
    color:var(--tertiary);
}
.list-value{
    color:var(--secondary);
}

#rate_limits, #model_swaps{
    display: flex;
    flex-direction: column;
    gap:16px;
}
.rule{
    display: flex;
    flex-direction: column;
    gap:8px;
}
.rule label{
    font-size: 12px;
    color:var(--tertiary);
    font-weight: 500;
}
.rule-value{
    font-size: 14px;
    color:var(--primary);
}

.endpoint-section{
    display: flex;
    flex-direction:column;
    gap:16px;
    align-items: flex-start;
}

.endpoint-section-header{
    display: flex;
    align-items: center;
}
.modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    transform:scale(0.5);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity 0.2s ease-in-out, visiblity 0.2s ease-in-out;
    z-index: 9999;
}

.modal.show {
    opacity: 1;
    transform:scale(1);
    visibility: visible;
}

.modal-close{
    position:absolute;
    top:-8px;
    right:-8px;
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333333;
    background: #ffffff;
    padding: 16px;
    border-radius:10px;
}

.modal-inner {
    display: flex;
    flex-direction: column;
    height: inherit;
}

@media only screen and (max-width: 768px){
    .modal-container {
        width:90%;
    }
}

.custom-select, .custom-select-inline {
    position: relative;
}
.custom-select-inline{
    width:148px;
    display: inline-block;
}

.custom-select select {
    appearance: none;
    /*  safari  */
    -webkit-appearance: none;
    /*  other styles for aesthetics */
    width: 100%;
    padding: 10px;
    background-color: #fff;
    border: 1px solid var(--input-border);
    border-radius: 6px;
    box-shadow: var(--shadow-default);
    color: var(--primary);
    cursor: pointer;
}

.custom-select-inline select {
    appearance: none;
    /*  safari  */
    -webkit-appearance: none;
    /*  other styles for aesthetics */
    width:148px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid var(--input-border);
    border-radius: 6px;
    box-shadow: var(--shadow-default);
    color: var(--primary);
    cursor: pointer;
}

.custom-select::before,
.custom-select::after,
.custom-select-inline::before, 
.custom-select-inline::after{
    --size: 0.3rem;
    content: "";
    position: absolute;
    right: 1rem;
    pointer-events: none;
}

.custom-select::before, .custom-select-inline::before {
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-bottom: var(--size) solid black;
    top: 40%;
}

.custom-select::after, .custom-select-inline::after {
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-top: var(--size) solid black;
    top: 55%;
}
.subnav{
    display: flex;
    gap:8px;
    border-bottom: 1px solid var(--divider);
}
.subnav a{
    padding:7px 12px;
    color:var(--secondary);
    font-weight: 600;
    text-decoration: none;
}
.subnav a.active{
    color:var(--accent-blue);
    border-bottom:2px solid var(--accent-blue);
}

#service-subnav-mobile{
    display: none;
}

@media only screen and (max-width: 768px){
    #service-subnav-mobile{
        display: flex;
    }
}
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider-orange {
    background-color: var(--accent-orange);
}

input:focus + .slider-orange  {
    box-shadow: 0 0 1px var(--accent-orange);
}

input:checked + .slider-blue {
    background-color: var(--accent-blue);
}

input:focus + .slider-blue {
    box-shadow: 0 0 1px var(--accent-blue);
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}
.table-wrapper{
    width:100%;
    border-radius:6px;
    border:1px solid var(--border);
    box-shadow:var(--shadow-default);
}
.custom-table{
    width:100%;
    table-layout: fixed;
    border-radius: 6px;
    background:white;
    overflow:hidden;
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
    font-size: var(--font-size-xsm);
    & thead, & tr{
        border-bottom:1px solid var(--divider);
    }
    & thead:last-child, & tr:last-child{
        border-bottom:none;
    }
    & th, & td {
        padding: 8px;
        border-collapse: collapse;
        word-wrap: break-word;
    }
    & thead tr th:first-child{
        border-top-left-radius:6px;
    }
    & thead tr th:last-child{
        border-top-right-radius:6px;
    }
    & tr td:first-child{
        border-bottom-left-radius:6px;
    }
    & tr td:last-child{
        border-bottom-right-radius:6px;
    }
    & th {
        height:40px;
        text-align: left;
        font-weight: 500;
        background: var(--wash-dark);
    }
}

.custom-table a{
    color:var(--accent-blue);
    text-decoration:none;
}
.custom-table a:hover{
    color:var(--accent-blue-hover);
    text-decoration:underline;
}
.custom-table a.btn{
    color:var(--secondary);
}
.custom-table a.btn:hover{
    color:var(--primary);
    text-decoration:none;
}

.custom-table th.timestamp-row{
    width:180px;
}
.custom-table th.ip-row, .custom-table th.input-row, .custom-table th.output-row, .custom-table th.status-row{
    width:110px;
}

.eight{
    width: 8%;
}
.ten {
    width: 10%;
}
.twenty {
    width: 20%;
}
.twentyfive{
    width: 25%;
}

.table-actions {
    text-align: right;
}

.error-response{
    cursor:help;
}

@media only screen and (max-width: 1440px){
    .custom-table th.timestamp-row{
        width:auto;
    }
    .custom-table th.ip-row, .custom-table th.input-row, .custom-table th.output-row, .custom-table th.status-row{
        width:auto;
    }
}

@media only screen and (max-width: 768px){
    th, td{
        padding:8px;
    }
    td .btn span{
        display: none;
    }
}
#notice_wrapper,
#flash_wrapper {
    position: fixed;
    box-sizing:border-box;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: #fff;
    padding: 16px;
    font-weight:500;
    border-radius: 6px;
    z-index: 9999;
    animation: slideIn 0.2s ease-in-out;
}

@keyframes slideIn {
    0% { transform: translate(-50%, -100px)}
    100% { transform: translate(-50%, 0)}
}

.alert{
    display: flex;
    gap:8px;
}

.alert-container{
    display: flex;
    gap:8px;
    align-self: flex-start;
    background: #0f172a;
    color: #fff;
    padding: 16px;
    border-radius: 6px;
    font-weight:500;
}

.components{
    display: flex;
    flex-direction: column;
    gap:16px;
    padding:0 0 48px 0;
}

.components h3{
    margin-top:24px;
}

.component-group{
    display: flex;
    flex-direction: column;
    gap:16px;
    background-color:white;
    padding:24px;
    border:1px solid var(--border);
    box-shadow: var(--shadow-default);
    border-radius: 6px;
}

.swatches {
    --gap: 12px;
    display: inline-flex;
    flex-wrap: wrap;
    margin: calc(-1 * var(--gap)) 0 0 calc(-1 * var(--gap));
    width: calc(100% + var(--gap));
}

.swatches > * {
    margin: var(--gap) 0 0 var(--gap);
}

.swatch{
    display: flex;
    box-sizing: border-box;
    border-radius: 6px;
    flex-direction: column;
    flex-grow: 1;
	flex-shrink: 0;
	flex-basis: 30%;
    line-height:150%;
    background-color: white;
    padding: 16px;
    gap:12px;
    border:1px solid var(--border);
    font-size: var(--font-size-xsm);
    font-family: "Roboto mono";
    box-shadow:var(--shadow-default);
}
.invert{
    color:white;
}
#ds-shadows{
    display: flex;
    flex-direction:row;
    gap:8px;
    justify-content: space-between;
}
.shadow{
    width:100%;
    border:1px solid var(--border);
    height:120px;
    display: flex;
    border-radius: 6px;
    align-items:center;
    justify-content: center;
    font-size: var(--font-size-xsm);
    font-family: "Roboto mono";
}

#ds-chips, #ds-buttons, #ds-alerts{
    display: flex;
    flex-direction: row;
    gap:8px;
}
.empty-state{
    background:var(--wash);
    border:1px solid var(--divider);
    border-radius:6px;
    padding:100px 64px;
    text-align:center;
}
.empty-state h5{
    font-weight: 500;
    color: var(--secondary);
}
.empty-state p{
    color: var(--tertiary);
    font-size:var(--font-size-sm);
    margin:4px 0 8px 0;
}

.table-empty-state{
    display: flex;
    flex-direction: column;
    gap:16px;
    padding:100px 0;
    text-align:center;
}
.table-empty-state i{
    font-size:24px;
}
.table-empty-state p{
    color: var(--tertiary);
    font-size:var(--font-size-sm);
    margin:4px 0 16px 0;
}
.entity-list{
    display: flex;
    flex-direction: column;
    gap:8px;
    width:100%;
}
.entity {
    display: flex;
    width:100%;
    justify-content: flex-start;
    padding: 16px 0;
    gap:12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    text-decoration:none;
    align-items: center;
}
.entity:first-child, .entity-stacked:first-child{
    padding-top:0;
}
.entity:last-child, .entity-stacked:last-child{
    border-bottom:none;
}

.entity-contained{
    display: flex;
    width:100%;
    justify-content: flex-start;
    gap:12px;
    text-align: left;
    border:1px solid var(--border);
    text-decoration:none;
    align-items: center;
    background:var(--wash);
    border-radius:6px;
    padding:16px;
}

.entity-stacked{
    display: flex;
    padding: 16px 0;
    text-align: left;
    border-bottom: 1px solid var(--border);
    gap:16px;
    text-decoration:none;
    align-items: flex-start;
    flex-direction: column;
}
.entity-icon{
    width:44px;
    height:44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    font-size: 24px;
    border:1px solid var(--border);
}
.entity-info{
    display: flex;
    flex-direction: column;
    flex:1;
    gap:4px;
}
#services .entity-info{
    gap:4px;
}
.entity-name{
    color:var(--primary);
    font-size: var(--font-size-md);
    font-weight: 600;
}
a.entity:hover .entity-name{
    color:var(--accent-blue);
 }
.entity-meta{
    color:var(--tertiary);
    font-size: var(--font-size-sm);
    line-height:150%;
}
.entity-meta p{
    line-height:16px;
}
.entity-actions{
    display: flex;
    gap:8px;
}

.delete-confirm{
    display: flex;
    gap:8px;
    align-items:center;
}
form {
    display: flex;
    flex-direction: column;
    gap:24px;
}
.input-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.input-container label {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--secondary);
}
.input-container input {
    padding: 10px;
    width:100%;
    color:var(--primary);
    border: 1px solid var(--input-border);
    border-radius: 6px;
    box-shadow: var(--shadow-default);
    background:white;
}
.input-container input:disabled {
    background: var(--tertiary);
    color: var(--secondary);
}
.input-container .field_with_errors input{
    border-color:var(--accent-red);
    box-shadow: 0 0 4px var(--accent-red);
}

.label-accessory {
    display: flex;
    justify-content: space-between;
}

.input-container-switch{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:center;
}
.label-stacked{
    display: flex;
    flex-direction:column;
    gap:4px;
    flex-basis:75%;
}
.input-container-switch label{
    font-weight: 500;
    color: var(--secondary);
    font-size: var(--font-size-base);
}

.input-container-switch p{
    font-size: var(--font-size-sm);
    color:var(--tertiary);
}

#fileList{
    padding:0;
    font-size:var(--font-size-sm);
    color:var(--tertiary);
    line-height:20px;
}

.form-helper {
    font-size: var(--font-size-xsm);
    border-top:1px solid var(--divider);
    padding: 16px 0;
}

.input-helper {
    font-size: var(--font-size-xsm);
    padding: 4px 0;
    color:var(--tertiary);
    line-height: 150%;
}
.input-helper a{
    color:var(--accent-blue);
}
.input-helper a:hover{
    color:var(--accent-blue-hover);
}

.no-divider{
    border:none;
    padding:4px 0;
}

.input-meta{
    font-size: var(--font-size-xsm);
    color:var(--tertiary);
    text-decoration:none;
    margin:4px 0;
}

input[type=checkbox] {
    -webkit-transform: scale(3,3);
}


.input-with-select{
    display: flex;
    gap:8px;
}
.input-with-select input{
    flex:1;

}
.input-with-select .custom-select{
    flex:1;
}
#rate_dependencies_complete{
    display: flex;
    flex-direction: column;
    gap:24px;
}

.h-group{
    display: flex;
    gap:8px;
}
.h-group .input-container{
    display: flex;
    flex:1;
}

.h-group input {
    padding: 10px;
    color:var(--primary);
    border: 1px solid var(--input-border);
    border-radius: 6px;
    box-shadow: var(--shadow-default);
    background:white;
}

.v-group{
    display: flex;
    flex-direction: column;
    gap:8px;
}
.check-row{
    padding:16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items:center;
    border:1px solid var(--input-border);
    border-radius: 6px;
    box-shadow:var(--shadow-default);
    background-color: white;
    cursor:pointer;
}

.check-row i.ph-check-circle{
    display: none;
}
.selected-row i.ph-circle{
    display: none;
}
.selected-row i.ph-check-circle{
    display: block;
}

.check-row-label{
    display: flex;
    gap:12px;
    align-items: center;
}

.check-row i{
    font-size: 24px;
}
.selected-row{
    border:1px solid white;
    outline:2px solid var(--accent-blue);
}

.promo-row{
    width:100%;
}
.promo-code-note{
    font-size: 12px;
    color:var(--tertiary);
}
.inline-field{
    display: flex;
    gap:8px;
}
.inline-field input[type=submit]{
    width:auto;
    height:100%;
}

@media only screen and (max-width: 768px){
    .input-container input{
        font-size:16px;
    }
}
.wrapper {
    display: flex;
    flex-direction: column;
    height:100%;
    background:var(--wash-light);
}

.dashboard-container {
    display: flex;
    flex:1;
    overflow-y: hidden;
}

main {
    display: flex;
    flex:1;
    justify-content: center;
    height:calc(-65px + 100vh);
    overflow-y: scroll;
}
.main-content{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 760px;
    padding:48px;
    gap:24px;
    justify-content: space-between;
    height:fit-content;
    overflow:visible;
    box-sizing: border-box;
}
.mini{
    max-width: 480px;
}



.table-view{
    max-width:1280px;
}
.table-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.table-header h4{
    font-weight: bold;
    color:var(--secondary);
}




@media only screen and (max-width: 960px){
    .wrapper{
        height:auto;
    }
    main{
        padding:24px;
        gap:0;
    }
    .main-content{
        padding:0;
    }
    .usage .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap:16px;
    }
}

@media only screen and (max-width: 768px){
    main{
        padding:16px 16px 48px 16px;
        gap:0;
    }
    /* Hide scrollbar for Chrome, Safari and Opera */
    main::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    main {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    .dashboard-container{
        flex-direction: column;
        height:auto;
    }
    .content-header{
        flex-direction: row;
        align-items: space-between;
        gap:8px;
    }
    .content-header a span{
        display: none;
    }
    .content-header a i{
        display: block;
    }
}
/**
 * Minified by jsDelivr using clean-css v5.3.2.
 * Original file: /npm/modern-normalize@2.0.0/modern-normalize.css
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
/*! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
*,::after,::before{box-sizing:border-box}html{font-family:system-ui,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji';line-height:1.15;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4}body{margin:0}hr{height:0;color:inherit}abbr[title]{text-decoration:underline dotted}b,strong{font-weight:bolder}kbd,samp{font-family:ui-monospace,SFMono-Regular,Consolas,'Liberation Mono',Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}
/*# sourceMappingURL=/sm/5b7c27b6a0fd11e81f813b36dc26f6049a71a06907ce03d53d65a3bfe866b576.map */
.test-mode-banner{
    background:var(--accent-orange);
    padding:8px;
    text-align:center;
    display: block;
    color:white;
    font-size:var(--font-size-sm);
    font-weight: 600;
    cursor:pointer;
    position:relative;
    z-index: 5555;
}
nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    background-color: white;
    padding: 16px;
    align-items: center;
    border-bottom: 1px solid var(--divider);
    position:relative;
    z-index: 4444;
}

.logo img {
    height: 24px;
}
.logo-web{
    display: block;
}
.logo-mobile{
    display: none;
}
.nav-section {
    display: flex;
    align-items: center;
}
.nav-left{
    gap:8px;
}
.current-project{
    color:var(--secondary);
}
.current-project-mobile{
    display: none;
}
.project-menu{
    display: flex;
    gap:0;
    align-items: center;
    font-weight: 500;
}

.project-menu .ph-caret-right{
    color: var(--quaternary);
}
.account-buttons{
    display: flex;
}
.support-links{
    display: flex;
    gap:8px;
}
a.mobile-docs-link, a.mobile-support-link{
    display: none;
}

nav a.btn-link {
    display: flex;
    text-decoration: none;
    gap: 6px;
    align-items: center;
    color:var(--secondary);
    font-weight: 500;
    font-size: var(--font-size-base);
    position: relative;
    transition: all 0.2s ease-in-out;
}

nav a i, nav button i{
    display: none;
    font-size:var(--font-size-md);
}

.nav-banner{
    background-color: var(--accent-orange);
    color:white;
    padding:8px;
    text-align:center;
    font-size:var(--font-size-xsm);
    font-weight: 500;
}
.nav-banner-warning{
    background-color: var(--accent-orange);
}
.nav-banner-alert{
    background-color: var(--accent-red);
}
.nav-banner a{
    color:white;
    text-decoration: underline;
}

@media only screen and (max-width: 768px){
    nav{
        padding:12px;
    }
    .current-project-mobile{
        display: flex;
    }
    .current-project-mobile span{
        max-width: 80px;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .current-project{
        display: none;
    }
    .logo img {
        height: 24px;
    }
    .nav-left{
        gap:4px;
    }
    .nav-right{
        gap:8px;
    }
    .support-links {
        display: none;
    }
    a.mobile-docs-link, a.mobile-support-link{
        display: block;
    }
    nav a span, nav button span{
        display: none;
    }
    nav a i, nav button i{
        display: block;
    }
    nav .ph-caret-right {
        display: none;
    }
    .logo-mobile{
        display: block;
    }
    .logo-web{
        display: none;
    }
    .test-mode-toggle span.toggle-label{
        display: none;
    }
    .test-mode-toggle i {
        display: block;
    }
}
.overview-request-count h4{
    color:var(--tertiary);
    font-weight: 500;
}
.overview-request-count h1{
    font-weight: bold;
    margin-top:16px;
}

.shortcuts{
    flex-direction: column;
    gap:12px;
    display:grid;
    grid-template-columns: 50% auto;
    grid-row: auto auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
.shortcuts h4{
    margin-bottom:12px;
}

.shortcut-card{
    display: flex;
    flex-direction: column;
    text-decoration: none;
    align-items: flex-start;
    display: flex;
    padding:16px;
    gap:16px;
    border: 1px solid var(--border);
    background-color:white;
    border-radius:6px;
    color:var(--secondary);
    box-shadow: var(--shadow-default);
    flex:1;
}


.shortcut-card-label{
    display: flex;
    flex-direction: column;
    gap:4px;
}
.shortcut-card i{
    font-size: 20px;
}

.shortcut-card label{
    font-weight: 700;
    color:var(--primary);
    font-size:var(--font-size-md);
}
.shortcut-card p{
    color:var(--tertiary);
    line-height:150%;
}

@media only screen and (max-width: 768px){
    .shortcuts{
        flex-direction: column;
        gap:12px;
        display:flex;
        flex-direction: column;
    }
}
.page-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom:1px solid var(--divider);
    padding-bottom:16px;
    box-sizing: border-box;
}
.with-subnav{
    border-bottom:none;
}
.page-header h1{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:8px;
    height: 32px;
}
.page-header h5{
    font-weight: normal;
    color:var(--secondary);
    margin-top:4px;
}
.page-header h1 i{
    color:var(--quaternary);
    font-size:16px;
}
.page-header h1 a{
    color:var(--primary);
    text-decoration: none;
}
.page-header h1 a:hover{
    text-decoration: underline;
}

.page-body{
    display: flex;
    flex-direction: column;
    gap:24px;
}
.page-footer{
    display: flex;
    justify-content: space-between;
    gap:8px;
}
.page-footer .footer-left{
    justify-content: flex-start;
}
.page-footer .footer-right{
    justify-content: flex-end;
}

.divider{
    padding:16px 0;
    border-top:1px solid var(--divider);
}
.header-icon{
    width:24px;
    height:24px;
    border-radius:4px;
    display: flex;
    justify-content: center;
    align-items: center;
    border:1px solid var(--border);
}
.header-icon img{
    width:16px;
    height:16px;
}

@media only screen and (max-width: 768px){
    .header-icon{
        display: none;
    }
}
.manage-link{
    display: flex;
    align-items: center;
}

.manage-link button{
    border:none;
    outline:none;
    text-decoration:underline;
    background:none;
    color:var(--accent-blue);
    padding:0;
    cursor:pointer;
}
.manage-link button:hover{
    color:var(--accent-blue-hover);
}

.plans-row{
    border-bottom: 1px solid var(--divider);
    padding-bottom:16px;
    gap:16px;
    font-size: var(--font-size-base);
    display: flex;
    flex-direction: column;
    font-weight: 400;
    justify-content: space-evenly;
    align-items:center;
}

.billing-toggle{
    display: flex;
    gap:8px;
    align-items: center;
    font-size: var(--font-size-sm);
    color:var(--tertiary);
}

.upgrade-cards{
    display: flex;
    gap:8px;
    justify-content: space-between;
    align-self: stretch;
}

.upgrade-card{
    text-decoration: none;
    display: flex;
    gap:24px;
    flex:1;
    flex-direction: column;
    background:white;
    border:1px solid var(--border);
    padding:16px;
    border-radius: 6px;
    box-shadow:var(--shadow-default);
}

.upgrade-card button{
    justify-content: center;
}
.upgrade-card a{
    justify-content: center;
}

.tier-details{
    display: flex;
    flex-direction: column;
    gap:16px;
}
.tier-plan{
    font-weight: 600;
    font-size:var(--font-size-base);
    text-transform: uppercase;
    color:var(--primary);
}
.tier-price{
    color:var(--secondary);
    font-size:var(--font-size-xl);
    font-weight:600;
}
.billing-period{
    font-size:var(--font-size-xsm);
    color:var(--tertiary);
    font-weight:500;
}
.tier-limit{
    color:var(--tertiary);
    font-size:var(--font-size-xxsm);
    font-weight:500;
}
.business-tier{
    font-size:var(--font-size-sm);
    color:var(--tertiary);
}
.business-tier a{
    color:var(--accent-blue);
}

.savings-chip{
    background:var(--accent-green);
    color:white;
    font-size:11px;
    font-weight: 600;
    padding:4px 6px;
    border-radius: 4px;
}

.popular{
    background-color: #EAFBF9;
    color: #22C55E;
    font-size: 11px;
    text-transform: none;
    font-weight: 600;
    border-radius: 6px;
    padding: 4px 8px;
}

.subscription-table-container{
    border:1px solid var(--border);
    border-radius: 6px;
    font-size:var(--font-size-xsm);
    box-shadow:var(--shadow-default);
    text-align:left;
    padding:0;
    width:100%;
}

.subscription-table{
    width:100%;
    border-collapse:collapse;
    border-radius: 6px;
    padding:16px;
    overflow:hidden;
}

.subscription-table th{
    text-align:left;
    padding:12px 10px;
    border-bottom:1px solid var(--input-border);
    font-weight:500;
    background-color:var(--wash-dark);
}

.subscription-table td{
    padding:12px 10px;
}

.subscription-table th:last-child, .subscription-table td:last-child{
    text-align:right;
}

.subscription-table td.number{
    font-family: monospace;
}

#promo-code-container{
    font-size:var(--font-size-xsm);
    padding:12px;
    border:1px solid var(--border);
    border-radius: 6px;
    box-shadow:var(--shadow-default);
    display: flex;
    flex-direction: column;
    gap:2px;
    align-items: flex-start;
}

.promo-code-pill{
    background-color:var(--accent-green-wash);
    border:1px solid var(--border);
    color:var(--accent-green);
    font-size:11px;
    font-weight: 600;
    padding:4px 6px;
    border-radius: 16px;
    display: inline-block;
    margin-bottom:4px;
}

@media only screen and (max-width: 768px){
    .upgrade-cards{
        flex-direction: column;
    }
    .upgrade-card{
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .tier-details{
        gap:8px;
    }

}
div {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}
h1 {
    font-size: var(--font-size-xxl);
}
h2 {
    font-size: var(--font-size-xl);
}
h3 {
    font-size: var(--font-size-lg);
}
h4 {
    font-size: var(--font-size-md);
}
h5 {
    font-size: var(--font-size-base);
    color: var(--secondary);
    font-weight: normal;
}
p{
    margin:0;
    padding:0;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid var(--border);
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    width:100%;
    padding: 0;
  }
aside {
    display: flex;
    flex-direction: column;
    width: 236px;
    flex: 0 0 236px;
    height: calc(100vh - 64px);
    background-color: white;
    border-right: 1px solid var(--divider);
    position:relative;
    z-index: 2;
    gap:8px;
    padding:16px 16px 48px 16px;
    overflow-y: auto;
    overflow-x:hidden;
}

.sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin:0;
}

.sidebar-section-label{
    padding:8px;
    font-weight: 500;
    font-size: var(--font-size-xsm);
    color:var(--tertiary);
}

.sidebar-section-label i{
    color:var(--quaternary);
}

.sidebar-section a {
    display: flex;
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    gap: 12px;
    align-items: center;
    color: var(--secondary);
    flex-wrap: nowrap;
    width: auto;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.sidebar-section a img{
    width:16px;
    height:16px;
    filter: invert()
}

.sidebar-section a:hover {
    background-color: var(--wash-dark);
    color: var(--primary);
}

.sidebar-section a.active, .sidebar-section a.active:hover {
    /* background-color: var(--primary); */
    color: var(--accent-blue);
}

.sidebar-section a i {
    font-size: var(--font-size-md);
}

.disabled {
    pointer-events: none;
    cursor: default;
    opacity:0.5;
}

.sidebar-service-tree .sidebar-label{
    display: flex;
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    color: var(--secondary);
    flex-wrap: nowrap;
    width: auto;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-service-tree .sidebar-label label{
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width:132px;
}

.sidebar-service-tree .sidebar-label i{
    color:var(--tertiary);
}
.sidebar-service-tree .sidebar-label span{
    display: flex;
    text-decoration: none;
    border-radius: 6px;
    gap: 12px;
    align-items: center;
    color: var(--secondary);
    flex-wrap: nowrap;
    width: auto;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: all 0.2s ease-in-out;
}
.sidebar-service-tree .sidebar-label:hover{
    background-color: var(--wash-dark);
    color: var(--primary);
    cursor:pointer;
}
.sidebar-service-tree .sidebar-label span img{
    width:16px;
    height:16px;
}
.sidebar-service-tree a{
    font-size:12px;
    margin-left:28px;
}
.add-service-button{
    display: flex;
    text-decoration: none;
    border-radius: 6px;
    gap: 12px;
    padding:8px;
    align-items: center;
    color: var(--accent-blue);
    background:var(--accent-blue-wash);
    flex-wrap: nowrap;
    width: auto;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: all 0.2s ease-in-out;
}
.add-service-button i{
    font-size: var(--font-size-md);
}
.add-service-button:hover{
    background: var(--accent-blue-wash-hover);
    box-shadow: none;
}
.add-service-button:active{
    transform: scale(0.98);
}
#services-link{
    display: none;
}

@media only screen and (max-width: 768px){
    aside{
        flex-direction: row;
        width: 100%;
        flex:0;
        gap:4px;
        padding:16px;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        border-bottom:1px solid var(--divider);
    }
    aside::-webkit-scrollbar {
        display: none;
    }
    hr{
        display: none;
    }
    .sidebar-section-label{
        display:none;
    }
    .sidebar-section{
        flex-direction: row;
        padding: 0;
        margin: 0;
        flex:none;
        gap:4px;
    }
    .sidebar-section::-webkit-scrollbar {
        display: none;
    }
    .sidebar-section a{
        border-radius: 24px;
        flex-shrink:0;
    }
    .sidebar-section a i{
        display: none;
    }
    .sidebar-section a.active, .sidebar-section a.active:hover {
        background-color: var(--primary);
        color: #fff;
    }
    .sidebar-service-tree{
        display: none;
    }
    .add-service-button{
        display: none;
    }
    #services-link{
        display: block;
    }
}
#status{
    display: flex;
    flex-direction: column;
    gap:48px;
}

#status h2{
    margin-bottom:24px;
}

.status-incident{
    border:1px solid var(--accent-orange);
    background-color: white;
    border-radius:8px;
    display: flex;
    box-sizing: border-box;
    box-shadow: var(--shadow-default);
}
.status-incident-icon{
    color:white;
    background-color: var(--accent-orange);
    padding:12px;
    display: flex;
    align-items: center;
    border-radius:7px 0 0 7px;
    font-size: 16px;
}

.status-incident-content{
    padding:12px;
    display: flex;
    flex-direction: column;
    gap:8px;
}
.status-incident h3{
    color:var(--accent-orange-hover);
}

.component-status{
    border:1px solid var(--divider);
    border-radius:8px;
}

.component-row{
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: space-between;
    border-bottom:1px solid var(--divider);
    padding:12px;
}
.component-row:last-child{
    border-bottom: none;
}

.component-row label{
    font-weight: 600;
}

.component-row .chip{
    font-weight: 400;
    text-transform: capitalize;
    display: flex;
    gap:4px;
    align-items:center;
}

.component-row .chip i{
    font-size: 10px;
}

.past-incidents{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.past-incident{
    display: flex;
    flex-direction: column;
    gap:16px;
    border-bottom:1px solid var(--divider);
    padding-bottom:24px;
}

.incident-title{
    line-height:125%;
    color:var(--primary)
}

.update-date{
    font-size:12px;
    font-weight: 500;
    color:var(--tertiary);
    text-transform: uppercase;
}

.update-body{
    line-height:150%;
    color:var(--secondary)
}
.update-body strong{
    text-transform: capitalize;
}

.incident-updates{
    display: flex;
    flex-direction: column;
    gap:24px;
}

.incident-update{
    display: flex;
    flex-direction: column;
    gap:8px;
}

.critical{
    color:var(--accent-red);
}
.minor{
    color:var(--accent-orange);
}

#integration-video video{
    width:100%;
    max-width: 960px;
    border-radius:6px;
    height:auto;
}
.help-video{
    background-color: black;
    border-radius: 4px;
    aspect-ratio: 16 / 9;
    flex-basis:25%;
    display: flex;
    cursor:pointer;
    position: relative;
    justify-content: center;
    align-items: center;
    background-image: url(/assets/video_poster-a7cd0887326427e21fdceb9364dfaede6385b098c65cb88958d57d06a6d1c46c.jpg);
    background-size: cover;
}

.help-video i{
    color:white;
    position:absolute;
    cursor:pointer;
    font-size:24px;
    padding:8px;
    background:black;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}
.help-video i:hover{
    transform: scale(0.9);
}

.modal-vid{
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100vh;
    z-index:8888;
    display:none;
}
.movie-box{
    top:0px;
    left:0px;
    display:table;
    width:100%;
    height:100vh;
    background-color:#232323;
    background-color:rgba(0, 0, 0, 0.80);
    color:#fff;
    text-align:center;
}

.close{
    position:absolute;
    font-weight:500;
    letter-spacing:0.125em;
    text-transform:uppercase;
    font-size:var(--font-size-base);
    right:0px;
    top:-30px;
    color:white;
    cursor:pointer;
}

.wide-screen{
    display:table-cell;
    text-align: center;
    vertical-align: middle;
}

.vid-holder{
    display:inline-block;
    top:0px;
    left:0px;
    position:relative;
    width:65%;
    aspect-ratio: 16/9;
    margin:0 auto;
    -webkit-box-shadow: 0 0 10px 0 #000000;
    box-shadow: 0 0 10px 0 #000000;
    border-style:solid;
    border-width:1px;
    border-color:#333;
}


.standard-img, .widescreen-img, .sixteen-nine, .pal{
    max-height:calc(100vh - 122px);
    max-width:calc(100vw - 122px);
    position:relative;
    margin:0 auto;
    /*transition: all 0.5s;*/
    display:none ;
}

.show{
    display:block;
}

.hide{
    display:none;
}

.vid-holder video, .vid-holder iframe{
    position: absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    background-color:#000;
    background-position:center center;
    background-repeat:no-repeat;
}

@media only screen and (max-width: 960px){
    .help-section{
        display: none;
    }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */


