@charset "UTF-8";

/* --------------------------------------------------------------------------------------------------------- */
/*  ROFO - Preferences - Fonts                                                                               */
/* --------------------------------------------------------------------------------------------------------- */

@font-face {
    font-family: "Roboto Flex";
    src: url("/fonts/Roboto_Flex/RobotoFlex-VariableFont_GRAD,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf") format("truetype") tech(variations), /* tech always without quotes */
         url("/fonts/Roboto_Flex/RobotoFlex-VariableFont_GRAD,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf") format("truetype-variations");       /* fallback to old syntax for backward-compatibility */
    font-weight: 100 1000;
    font-stretch: 25% 151%;
    font-style: normal;
}

/* --------------------------------------------------------------------------------------------------------- */
/*  ROFO - Preferences - Variables                                                                           */
/* --------------------------------------------------------------------------------------------------------- */

:root {
    --r-viewport-min-width: 320px;

    --r-color-bg-001: rgba(255,255,255,1); /* #ffffff white */

    --r-color-fo-001: rgba(68,68,68,1);    /* #444444 darkgrey */
}

/* --------------------------------------------------------------------------------------------------------- */
/*  ROFO - Preferences - Themes                                                                              */
/* --------------------------------------------------------------------------------------------------------- */

.t-light {}

.t-dark {}

/* --------------------------------------------------------------------------------------------------------- */
/*  ROFO - Preferences - Utility Namespaces                                                                  */
/* --------------------------------------------------------------------------------------------------------- */

.u-\!animation { animation: none !important; }
.u-\!display { display: none !important; }
.u-\!visible { visibility: hidden !important; }
.u-\!bgcolor { background-color: transparent !important; }
.u-\!bgimage { background-image: none !important; }

/* --------------------------------------------------------------------------------------------------------- */
/*  ROFO - Preferences - Micro Clearfix                                                                      */
/* --------------------------------------------------------------------------------------------------------- */

.u-clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/* --------------------------------------------------------------------------------------------------------- */
/*  ROFO - Preferences - Resets                                                                              */
/* --------------------------------------------------------------------------------------------------------- */

:focus { outline: none; }

*, ::before, ::after {
    margin: 0;
    padding: 0;
    font: inherit;
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------------------------------------- */
/*  ROFO - Preferences - Globals                                                                             */
/* --------------------------------------------------------------------------------------------------------- */

html {
    background-color: var(--r-color-bg-001);
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape mode while allowing user zoom */
        -ms-text-size-adjust: 100%;
            text-size-adjust: 100%;
}

body {
    font-family: "Roboto Flex", Helvetica, Arial, sans-serif; /* font-family, font-fallback, font-fallback, generic-family */
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.2;
    color: var(--r-color-fo-001);
    background-color: var(--r-color-bg-001);
    min-width: var(--r-viewport-min-width);
    cursor: default;
}










.c-welc {
    margin: 40px 0 0 0;
    text-align: center;
    font-size: 18px;
}

.c-coso {
    margin: 10px 0 0 0;
    text-align: center;
    font-size: 15px;
}

.c-logo {
    width: 180px;
    height: 180px;
    margin: 50px auto;
    background-image: url("/system/core/img/pixel/rofo_logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* --------------------------------------------------------------------------------------------------------- */
/*  YOMO - Aurora - Base - Ripple                                                                            */
/* --------------------------------------------------------------------------------------------------------- */

.c-ripp {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    z-index: 2000000200;
    animation: 0.4s linear 0s 1 cripp;
}

@keyframes cripp {
      0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(10); opacity: 0; }
}
