:root {
    --background-color: #EDEDED;
    --background-transparent: rgba(237, 237, 237, 0);
    --text-color: #1e1e1e;
}

@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #111111;
        --background-transparent: rgba(17, 17, 17, 0);
        --text-color: #f4f4f4;
    }
}

body {
    font-family: 'SFD', Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 15px;
    user-select: none;
    overflow: hidden;
}

.filler {
    height: 38vh;
}


.status {
    display: flex;
    align-items: center;
    width: fit-content;
    height: 100px;
    margin: 0 auto;
    font-size: 100px;
    opacity: 0.9;
    transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.indicator {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    transition: all 0.15s ease-out;
}

.statustext {
    margin-left: 18px;
}


.showcustom {
    margin: 40px auto;
    opacity: 0.7;
    font-family: 'SF', Arial, sans-serif;
    transition: opacity 0.2s ease-in-out;
}

.customdescript {
    width: fit-content;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 10px 0 10px;
    text-align: center;
    
}

.cosdata {
    display: block;
    width: fit-content;
    align-items: center;
}

.cosstate {
    display: flex;
    width: fit-content;
    max-width: 370px;
}


.fixed {
    z-index: 9;
    display: flex;
    align-items: center;
    font-family: 'SF', Arial, sans-serif;
    width: fit-content;
    position: fixed;
    bottom: 5px;
    left: 50%;
    font-size: 14px;
    transform: translateX(-55px);
    opacity: 0.7;
}

.info {
    margin-left: 5px;
    margin-right: 5px;
}

#recheck {
    padding: 0 4px 0 3px;
    letter-spacing: -0.5px;
    text-decoration: underline;
    opacity: 0.6;
    user-select: none;
    cursor: pointer;
}
.newuxprovider {
    z-index: 1;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.portux {
    display: none;
    position: absolute;
    width: 100%;
    height: 0px;
    bottom: 0px;
    background-color: var(--text-color);
    filter: none;
    opacity: 0;
    transform: translateY(0px);
    transition: opacity 0.2s ease-out, height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.deactivatedux {
    opacity: 0;
    transition: opacity 0.2s ease-in, height 0.5s cubic-bezier(0.6, 0.04, 0.98, 0.335);

}

.portuxstill {
    display: none;
    position: absolute;
    width: 100%;
    height: 0px;
    bottom: 0px;
    background-color: var(--text-color);
    filter: none;
    opacity: 0;
    transform: translateY(20px);
    transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.deactivateduxstill {
    height: 0px;
    transition: height 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.failed {
    color: #f12719e6;
}
.fine {
    background-color: #28c840;
}

.issue {
    background-color: #f8cd25;
}

.offline {
    background-color: #f12719;
}

.customized {
    background-color: #195df1;
}

.onboarding {
    background-color: var(--text-color);
}

.loading {
    opacity: 0.5;
    transition: opacity 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}



.hidden {
    display: none;
    opacity: 0;
}

@media (max-width: 700px) {
    .status {
        height: 50px;
    }
    .statustext {
        font-size: 40px;
        margin-left: 9px;
    }
    .indicator {
        width: 30px;
        height: 30px;
    }
    .showcustom {
        margin: 15px auto;
    }
    .portux {
        display: block;
        position: absolute;
        width: 100%;
        height: 60px;
        bottom: 0px;
        background-color: var(--text-color);
        filter: blur(180px);
        opacity: 1;
        transform: translateY(70px);
        transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .deactivatedux {
        opacity: 0;
        transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    
    }
    
    .portuxstill {
        display: block;
        position: absolute;
        width: 100%;
        height: 6px;
        bottom: 0px;
        background-color: #ffffff;
        filter: blur(20px);
        opacity: 1;
        transform: translateY(20px);
        transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .deactivateduxstill {
        opacity: 0;
        transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    }
}

@media (min-width: 2560px) {
    .status {
        height: 180px;
    }
    .statustext {
        font-size: 160px;
        margin-left: 35px;
    }
    .indicator {
        height: 110px;
        width: 110px;
    }
    .fixed {
        font-size: 20px;
    }
    .showcustom {
        font-size: 20px;
        margin: 60px auto;
    }
}


@font-face {
    font-family: 'SF';
    src: url('sf-pro-text_regular.woff2') format('woff2');
}
@font-face {
    font-family: 'SFD';
    src: url('sf-pro-display_regular.woff2') format('woff2');
}
