
    *{
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Inter', sans-serif;
        margin: 0;
        background: #FFF;
        color: #010101;
        font-size: 14px;
    }

    .ui-status-service{
        width: 100%;
        height: 100svh;
        position: fixed;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        padding: 0 7vw;
    }

    .ui-status-service img{
        width: 28px;
        position: relative;
        display: block;
        animation: ui-blink 1.1s;
        animation-iteration-count: infinite;
    }
    @keyframes ui-blink {
      0% {
        opacity: 0;
      }
      50% {
        opacity: 1;
      }
      100% {
        opacity: 0;
      }
    }

    .ui-status-service h1{
        font-weight: 550;
        width: 100%;
        text-align: center;
    }
    .ui-status-service p{
        margin-top: -5px;
        text-align: center;
    }

    .ui-status-service-debug{
        margin: auto;
        position: fixed;
        bottom: 20px; left: 0; right: 0;
        opacity: 0.5;
        font-size: 10px;
        text-align: center;
        width: 100%;
    }