:root {
    --mvu-neutral:  #faf5f0;    /* background */
    --mvu-light:  #eec988;      /* button standard */
    --mvu-medium: #e5ab47;      /* button hover */
    --mvu-dark:  #c4871c;       /* button active */

    --mvu-font-family: Arial, Helvetica, sans-serif;;
    --mvu-font-color: #000000;

    --mvu-background: #000000;
    --mvu-navbar-background: #000000;

    --mvu-button: #000000;
    --mvu-button-hover: #000000;
    --mvu-button-active: #000000;
    --mvu-button-inactive: #000000;

    --mvu-needs-attention-background: #000000;
        
    --ff-bg: #F6EDE5; /*#f3ece6;*/
    --ff-nav: #E5D1D3;
    --ff-white: #ffffff;
    --ff-red: red;
    --ff-lgray: lightgray;
    --tm-orange: #F58C32;
    --tm-warmyellow: #F5AA0A;
    --tm-yellow: #F0C814;
    --tm-warmneutral: #E5D1D3;
    --tm-coolneutral: #C8C8D2;
    --tm-ocean: #8BAAC3;
    --tm-sky: #A5C3D7;
    --tm-air: #D2E6EB;
    --tm-neutral: #F6EDE5;
    --tm-offwhite: #F9F7E9;
    --tm-midnight: #462850;
    --ff-cont-width: 650px;
}

#spinner {
    background-color: rgba(255,255,255,0.5);
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 9999;
    display: none;
}

@-webkit-keyframes spin {
	from {-webkit-transform:rotate(0deg);}
	to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}

#spinner::after {
    content:'';
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 80px;
    height: 80px;
    border-style: solid;
    border-color: var(--mvu-dark);
    border-top-color: transparent;
    border-width: 8px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}
#spinnertxt{
    height: 100vh;
    width: 100%;
    font-size: 20pt;
    font-family: var(--mvu-font-family);
    line-height: 1.5;
    text-align: center;
    position: absolute;
}