﻿/* || GENERAL STYLES */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    display: flex;
    justify-content: center;
}

body {
    /*height: 100vh;*/
    max-width: 80rem;
    width: 100vw;
    width: 100dvw;
    background-color: white;
    color: #333333;
    font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

    body.wait-cursor * {
        cursor: wait !important; /* !important ensures it overrides other cursor styles */
    }

/*
body {
    font-size: clamp(1rem, 2.5vw, 2rem);
}
*/

/*
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
*/
h1 {
    font-size: 2.4rem;
    margin-top: 1rem;
}

h2 {
    font-size: 2.0rem;
    margin-top: 1rem;
}

p {
    font-size: 1.6rem;
    margin-top: 1rem;
}

a {
    font-size: 1.6rem;
}

    a:link, a:visited {
        color: navy; /*navy; #034af3; */
    }

    a:hover {
        color: #EE0000; /*#1d60ff;*/
        text-decoration: none;
    }

    a:active {
        color: navy; /* #034af3; */
    }

input {
    padding: 0.3rem;
}

    input[type="radio"] {
        vertical-align: middle;
    }


/* || PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/
.body-content {
    /*min-height: 42rem;*/
    /*background-color: white;*/
}
/*
header {
}
*/
main {
    margin-top: 3rem;
    /*min-width: 10vw;*/
    /* padding: 2rem;*/
}

footer {
    border-top: 1px solid lightgrey; /* #808080;*/
    margin-top: 2rem;
    padding: 0;
}

    footer p {
        font-size: 1rem;
        margin: 0.5rem;
    }

/* || HEADER 
----------------------------------------------------------*/

.header-title {
    background-color: cornflowerblue;
    color: white;
    font-size: 2.8rem;
    font-weight: 200;
    height: 8rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/*
.header-title span {
    justify-content: center;
    align-items: center;
}
*/
.header-menu {
    background-color: white;
    border-bottom: 1px solid cornflowerblue;
    font-size: 1.6rem;
}

    .header-menu ul {
        list-style: none;
        display: flex;
        flex-direction: row;
    }

    .header-menu li {
        padding: 0.5rem 1rem;
    }

.header-signin {
    margin-left: auto;
}

/* || Wrapper
----------------------------------------------------------*/

.wrapper {
    width: 100%;
}

    .wrapper h1 {
        text-align: center;
    }


/* || Content 
----------------------------------------------------------*/

.content {
    font-size: 1.4rem;
    min-height: 30rem;
}

.content-stack {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /*  flex-direction: column;
    align-items: center;*/
    margin-top: 2rem;
    /*  background-color: lightyellow;*/
}

    .content-stack ul {
        width: fit-content;
        /*    border: 1px solid blue;*/
    }

    .content-stack li {
        display: flex;
        flex-direction: row;
        padding-top: 1.0rem;
        align-items: center;
    }

        .content-stack li > span {
            width: 40%;
            text-align: right;
            /*            overflow-x: hidden;*/
        }

            .content-stack li > span + span {
                flex: 1;
                /*width: 60%;*/
                text-align: left;
                margin-left: 1.5rem;
            }

    .content-stack input[type="checkbox"] {
        vertical-align: middle;
        width: auto;
        padding: 0;
        margin: 0;
    }

.content-message {
    color: red;
}



/* || End - Site.css 
----------------------------------------------------------*/
