/*
:root {
  --bs-body-line-height: 1.4;
}
*/

html {
    font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-top:12px;
    margin-bottom: 60px;
}

label {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 3px;
    background-color: transparent;
    /*
            padding: 10px 20px;
            font-family: sans-serif, Arial;
            font-size: 16px;
            border: 1px solid #666;
            border-radius: 4px;
        */
}

label:hover {
    /*
        background: cyan;
    background-color: #b1e3c1;
    */
}


/* https://dev.to/kallmanation/styling-a-radio-button-with-only-css-4llc */

    label > input[type="radio"] {
        position: absolute;
        opacity: 0;
        width: 1em;
        height: 1em;
        /* better for screen readers */
    }

    label > input[type="radio"] + *::before {
        vertical-align: text-bottom;
        content: "";
        display: inline-block;
        width: 1.1em;
        height: 1.1em;
        margin-right: 0.3rem;
        border-radius: 100%;
        border-style: solid;
        border-width: 0.1rem;
        border-color: gray;
    }

    label > input[type="radio"]:hover + *::before {
        /* only affects the inside of "fake" button */
        background: blue;
    }

    label > input[type="radio"]:hover + * {
        /* background: cyan; */
        color: blue;
        font-weight: 500;
    }

    label > input[type="radio"]:disabled + *::before {
        /* only affects the inside of "fake" button */
        background: inherit;
    }

    label > input[type="radio"]:disabled + * {
        color: inherit;
    } 

    label > input[type="radio"]:checked + *::before {
        background: navy;
        border-color: navy;
    }

    label > input[type="radio"]:checked + * {
        color: navy;
        font-weight: 600;
    }


    /* not used as label needs to be after input */
    input[type="radio"] {
        /* 
            position: fixed;
            opacity: 0;
            width: 0;
        */
    }

    input[type="radio"]:checked {
        /*
        background-color: #76cf9f;
        */
    }


    input[type="radio"]:checked + label {
        /*  
        border-color: #666;
        background-color: #76cf9f;
        */
    }

    input[type="radio"]:focus + label {
        /*  
            border: 2px dashed #666;
        */
    }

#headerspan {
    font-size: larger;
    color: black;
    font-weight: 700;
}

#categoryspan {
    color: black;
    font-weight: 600;
}

#submittedspan {
    color: navy;
    font-weight: 600;
}

.login-lblshow {
    width: 100px;
    display: inline-block;
}

.login-txtshow {
    width: 200px;
    display: inline-block;
}

.login-lstshow, .login-btnshow {
    display: inline-block;
}

.login-lblhide, .login-lsthide, .login-txthide, .login-btnhide {
    display: none;
}
