<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: 'Raleway';
    src: url('../font/Raleway-VariableFont_wght.ttf') format('truetype');
}

.fancy-title {
    font-family: 'Raleway';
    font-weight: bolder;
}

/* HOMEPAGE -&gt; */

@media screen and (max-width: 768px) {
    .mobile-shrink {
        font-size: 1em !important;
    }

    .homepage-subtitle {
        font-size: 0.8em !important;
    }

    .homepage-title {
        font-size: 2.8em !important;
    }
}

/* Homepage Hero Animation --&gt; */

:root {
    --font-size: 3rem;
    --line-height: 1.2;
    --animation-duration: 8s;
}

.rotating-text {
    font-size: var(--font-size);
    line-height: var(--line-height);
    text-align: center;
    text-shadow: black 2px 2px;
    font-family: 'Raleway'
}

.window {
    display: inline-block;
    /*outline: 1px dashed white;*/
    /*border-radius: 0.5rem;*/
    overflow: hidden;
    flex-grow: 1;
    height: calc(var(--font-size) * var(--line-height));
    vertical-align: bottom;
}

.window-inner {
    display: inline-block;
    animation: scroll-text var(--animation-duration) ease-in-out infinite;
    color: white;
}

.window span {
    display: block;
}

@keyframes scroll-text {
    0% {
        transform: translateY(0%);
    }

    20% {
        transform: translateY(calc(-20%));
    }

    40% {
        transform: translateY(calc(-40%));
    }

    60% {
        transform: translateY(calc(-60%));
    }

    80% {
        transform: translateY(calc(-80%));
    }

    100% {
        transform: translateY(calc(-80%));
    }
}

/* &lt;-- Homepage Hero Animation */

.homepage-subtitle {
    text-align: center;
    font-family: 'Raleway';
}


.homepage-title {
    text-align: center;
    font-family: 'Raleway';
    font-weight: bolder;
    text-transform: uppercase !important;
}

.homepage-text {
    text-align: justify;
}

.homepage-special-text {
    font-family: 'Raleway';
    font-size: 1.3em;
    font-weight: bolder;
}

.homepage-hover {
}

.homepage-hover:hover {
    scale: 1.05;
}

.homepage-icon {
    width: 48px;
    filter: invert(26%) sepia(60%) saturate(5217%) hue-rotate(240deg) brightness(101%) contrast(96%);
}

html {
    scroll-behavior: smooth;
}

#services {
    scroll-margin-top: 79px;
}

@media (prefers-reduced-motion: no-preference) {

    .hidden-a01 {
        scale: 0;
        transition: scale 1.5s;
    }

    .show-a01 {
        scale: 1;
    }

    .hidden-a02 {
        opacity: 0;
        transform: translateY(10%);
        transition: transform 1.5s;
    }

    .show-a02 {
        opacity: 1;
        transform: translateY(0);
    }

}

/* &lt;-- HOMEPAGE */

/* Slider --&gt; */

.accordion {
    width: auto;
}

.accordion ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.accordion li {
    margin: 0;
    padding: 0;
}

.accordion [type=radio], .accordion [type=checkbox] {
    display: none;
}

.accordion label {
    display: block;
    width: 3em !important;
    background: var(--mud-palette-background);
    border-radius: 4px;
    color: var(--mud-palette-text-primary);
    font-family: 'Raleway';
    font-weight: bold;
    letter-spacing: 0.1em !important;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    transform-origin: center;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
}

.accordion ul li label:hover, .accordion [type=radio]:checked ~ label, .accordion [type=checkbox]:checked ~ label {
    background: var(--mud-palette-black);
    border-radius: 4px;
    color: #FFF;
}

.accordion [type=radio]:checked ~ label, .accordion [type=checkbox]:checked ~ label {
    border-radius: 4px 0px 0px 4px;
}


.accordion .content {
    padding: 0 10px;
    border-radius: 0px 4px 4px 0px;
    overflow: auto;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
}


/* Horizontal */
/* Unfortunately fixed heights need to be set for this */
.horizontal {
    overflow: hidden;
    height: 400px;
}

.horizontal ul li {
    float: left;
    margin: 0 1px 0 0;
}

.horizontal ul li label {
    word-wrap: break-word;
    letter-spacing: 10px;
    text-align: center;
    height: 400px;
    padding: 10px 0 10px 5px;
    width: 25px;
    float: left;
}

.horizontal ul li .content {
    height: 400px;
    padding: 0;
    display: inline-block; /* Makes its work in FF */
    visibility: hidden;
    width: 1px;
    border-left: 0;
}

.horizontal [type=radio]:checked ~ label {
    border-right: 0;
}



.horizontal [type=radio]:checked ~ label ~ .content {
    visibility: visible;
    width: 980px;
    padding: 10px 10px;
}

@media only screen and (min-width: 600px) {
    .horizontal [type=radio]:checked ~ label ~ .content {
        width: 270px;
    }
}

@media only screen and (min-width: 700px) {
    .horizontal [type=radio]:checked ~ label ~ .content {
        width: 370px;
    }
}

@media only screen and (min-width: 800px) {
    .horizontal [type=radio]:checked ~ label ~ .content {
        width: 470px;
    }
}

@media only screen and (min-width: 960px) {
    .horizontal [type=radio]:checked ~ label ~ .content {
        width: 395px;
    }
}

@media only screen and (min-width: 1180px) {
    .horizontal [type=radio]:checked ~ label ~ .content {
        width: 610px;
    }
}

@media only screen and (min-width: 1280px) {
    .horizontal [type=radio]:checked ~ label ~ .content {
        width: 710px;
    }
}

@media only screen and (min-width: 1380px) {
    .horizontal [type=radio]:checked ~ label ~ .content {
        width: 810px;
    }
}

@media only screen and (min-width: 1500px) {
    .horizontal [type=radio]:checked ~ label ~ .content {
        width: 880px;
    }
}

@media only screen and (min-width: 1600px) {
    .horizontal [type=radio]:checked ~ label ~ .content {
        width: 980px;
    }
}

/* Custom classes */

.paper-infobox {
    background-color: var(--mud-palette-surface);
    max-height: 100%;
    overflow-y: auto;
}

/* &lt;-- Slider */


.floating-img {
    height: 225px;
    margin-bottom: 8px;
}

.floating-img-small {
    height: 150px;
    margin-bottom: 8px;
}

.floating-img-large {
    height: 350px;
    margin-bottom: 8px;
}

.floating-img-r {
    float: right;
    margin-left: 16px;
}

.floating-img-l {
    float: left;
    margin-right: 16px;
}

@media screen and (max-width: 768px) {
    .floating-img {
        float: none;
        max-width: 100%;
        height: auto;
        margin-left: 0;
        margin-right: 0;
    }
}

.text-justify {
    text-align: justify;
}

.text-center {
    text-align: center;
}

/* Sensors */

.text-black-border {
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 1), 1px -1px 0 rgba(0, 0, 0, 1), -1px 1px 0 rgba(0, 0, 0, 1), 1px 1px 0 rgba(0, 0, 0, 1);
}

.special-sensor-normal {

}

.special-sensor-no-data {

}

.special-sensor-active-fault {
    color: red;
}

.special-sensor-active-warning {
    color: orange;
}

/* Status 0 */
.special-sensor-status-off {
    color: black;
}

/* Status 1 */
.special-sensor-status-error {
    color: red;
}

/* Status 2 */
.special-sensor-status-ready {
    color: rgb(192,192,192);
}

/* Status 3 */
.special-sensor-status-startup {
    animation: flashGreyGreen 0.5s steps(1, end) infinite;
}

@keyframes flashGreyGreen {
    0%, 100% {
        color: rgb(150,150,150);
    }

    50% {
        color: rgb(0,255,0);
    }
}

/* Status 4 */
.special-sensor-status-run {
    color: rgb(0,255,0);
}

/* Status 5 */
.special-sensor-status-stopping {
    animation: flashOrangeGreen 0.5s steps(1, end) infinite;
}

@keyframes flashOrangeGreen {
    0%, 100% {
        color: rgb(255,153,0);
    }

    50% {
        color: rgb(0,255,0);
    }
}

/* Status 6 */
.special-sensor-status-ready-maintenance {
    color: rgb(0,255,255);
}

/* Status 7 */
.special-sensor-status-run-maintenance {
    animation: flashBlueGreen 1s steps(1, end) infinite;
}

@keyframes flashBlueGreen {
    0%, 100% {
        color: rgb(0,255,255);
    }

    50% {
        color: rgb(0,255,0);
    }
}

</pre></body></html>