﻿
:root {
    --primary-color: #0077b0;
    --secondary-color: #f90;
    --primary-color-highlight: #005d8a;
    --secondary-color-highlight: rgb(148, 89, 0);
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    font-weight: 300;
}

body {
    margin: 0;
    padding: 0;
    color: #666;
    height: 100vh;
    line-height: 1rem;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}


button, input, optgroup, select, textarea {
    line-height: 1rem;
    border: 1px #ccc solid;
}

    input:focus, textarea:focus, select:focus,
    input:focus-visible, textarea:focus-visible, select:focus-visible {
        border: solid 1px #1988B7;
    }


.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

/*******************************************************/

/* Scrollbars */

/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ddd;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #1988B7;
    }



/*       Cover   */

.cover {
    transition: 1s;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    position: fixed;
    left: 0;
    top: 0;
    display:flex;
}



/* HTML: <div class="loader"></div> */
.loader {
    height: 4px;
    width: 100vw;
    justify-content:center;
    --c: no-repeat linear-gradient(#f90 0 0);
    background: var(--c),var(--c),#1988B7;
    background-size: 60% 100%;
    animation: l16 3s infinite;
}

@keyframes l16 {
    0% {
        background-position: -150% 0,-150% 0
    }

    66% {
        background-position: 250% 0,-150% 0
    }

    100% {
        background-position: 250% 0, 250% 0
    }
}