﻿:root {
    --while-color: #ffffff;
    --black-color: #000000;
    --text-color: #333333;
    --object-color: #004242;
    --industry-color: #006b6b;
    --printer-color: #009999;
    --conten-color: #00c9c9;
    --error-color: #ff0000;
    --warning-color: #e29b00;
    --running-color: #00a700;
}

html {
    font-size: 62.5%;
    line-height: 1.6rem;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    background-color: var(--industry-color);
}

body {
    width: 100%;
    overflow-x: hidden;
}

    body::-webkit-scrollbar {
        display: none;
    }

* {
    box-sizing: inherit;
    list-style: none;
    text-decoration: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.spinnerApp {
    width: 50px;
    height: 50px;
    border: 3px solid var(--while-color);
    border-top: 3px solid var(--industry-color);
    border-radius: 100%;
    margin: auto;
    animation: spinApp 1s infinite linear;
}

@keyframes spinApp {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#overlayApp {
    background: var(--industry-color);
    margin-top: 100px;
}

.about-section {
    padding: 50px;
    text-align: center;
    background-color: var(--industry-color);
    color: white;
}

.hideLayout {
    display: none;
}

@media only screen and (min-width: 1024px) {
    #layoutDesktop {
        display: block;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    #layoutTablet {
        display: block;
    }
}

@media only screen and (min-width: 10px) and (max-width: 767px) {
    #layoutMobile {
        display: block;
    }
}
