/* 
    Document   : psCSS
    Created on : Mar 27, 2019, 10:24:19 PM
    Author     : Brian
    Description:
        Purpose of the stylesheet follows.
*/

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
}

            
                #headerSection {
                    /*float: left;*/
                    display: inline-block;
                    width: 100%;
                    height: 10%;
                    background-color: #25826C;
/*background-color: yellow;*/
                }
                
                
                    #headerLogo {
                        float: left;
                        /*display: inline-block;*/
                        width: 15%;
                        height: 100%;
                        background-color: #25826C;
/*background-color: darkcyan;*/
                    }
                        #headerLogo img {
                            width: 100%;
/*height: 100%;*/
                        }
                
                    #horizMenuBox {
                        /*NAVIGATION MENU CONTAINER*/
                        float: left;
                        /*display: inline-block;*/
                        width: 70%;
                        height: 100%;
                        background-color: #25826C;

/*background-color: green;*/
                        
                    }
                        .menuTabs {
                            float: left;
                            display: table;
                            /*line-height: 100%;*/
                            height: 100%;
                            text-align: center;
                            padding-left: 10px;
                            padding-right: 10px;
                            margin-left: 10px;
                            margin-right: 10px;
                            /*border: 2px black solid;*/
                            background-color: transparent;
                            
/*background-color: gray;*/
                        }
                
/*                            .menuTabs .tabTextCon {
                                line-height: 1.5;
                                display: table-cell;
                                vertical-align: middle;
                            }*/
                
                                .tabTextCon {
                                    display: table-cell;
                                    vertical-align: middle;
                                    background-color: transparent;
                                    
                                    
/*background-color: white;*/
                                }
                                .tabTextBox {
                                    /*height: fit-content;*/
                                    background-color: transparent;
                                    margin-left: 10px;
                                    margin-right: 10px;
                                    font-weight: bold;
                                    /*heighst: 100%;*/
/*background-color: purple;*/
                                }
                                .navTabSel {
                                    border-bottom: 2px solid #80DDBD;
                                }
                                .navTabNoSel:hover {
                                    transition: .25s;
                                    /*height: max-content;*/
                                    border-top: 2px solid #80DDBD;
                                    border-bottom: 2px solid #80DDBD;
                                    padding-top: 5px;
                                    padding-bottom: 5px;
                                    /*padding-bottom: 5px;*/
                                }
                                
/*
DARK/BLACK = LICORICE #131515
GRAY = CHARLESTON GREEN #2B2C28
DARK GREEN = VIRIDIAN #25826C
LIGHT GREEN = PEARL AQUA #80DDBD
WHITE = ISBELLINE #F4EFF0
*/                                
                                
                                
                #signInBox {
                    display: inline-block;
                    height: 100%;
                    width: 15%;

                }
                
            
                
                    





/* MAIN CSS FUNCTIONS */

.alignRight {
    text-align: right;
}
.alignCenter {
    text-align: center;
    /*margin: 0 auto;*/
}
.alignLeft {
    text-align: left;
}
.alignVerticle {
    /*Aligns a div vertically in parent cell*/
    /*parent cell must have display: table; */
    display: table-cell;
    vertical-align: bottom;

}


.clearBoth {
    clear: both;
}
.cursorHelp {
    cursor: help;
}
.cursorLink {
    cursor: pointer;
}
.floatLeft {
    float: left;
    
}
.floatRight {
    float: right;
}
.hiddenDiv {
    display: none;
}
.noLink {
    text-decoration: none;
    /*Took color out because is overriding specific font colors, must set individually*/
    /*color: black;*/
    color: inherit;
}
.noLink:visited {
    text-decoration: none;
    /*Took color out because is overriding specific font colors, must set individually*/
    /*color: black;*/
    color: inherit;
}
.shadowBox{
    /*a shadow for a box*/
    box-shadow: 5px 5px 20px #3e4038;
}

.tableIcon {
    /*for small icons*/
    width: 20px;
    height: 20px;
}





/*BOXES BOXES BOXES*/
.qTaskCon {
    width: 100%;
    /*height: 100%;*/
    font-family: sans-serif;
}
    .qTaskHeightSpacer {
        display: inline-block;
        /*float: left;*/
        width: 100%;
        height: 20%;
        content: "";
/*background-color: blue;*/
        
    }
    .qTaskCol {
        float: left;
        /*width: 33.33%;*/
        width: 33%;
        height: 60%;
        text-align: center;
    /*margin-top: 10%;*/
        /*border: 1px solid black;*/
/*background-color: red;*/
        
    }
        .qTaskBox {
            display: inline-block;
            position: relative;
            width: 90%;
            max-width: 200px;
            height: 200px;
            border-radius: 20px;
            border: 2px solid #25826C;
            background-color: #AEE9D5;
            cursor: pointer;
        }

            .qTaskHdrMargin {
                height: 5%;
            }
            .qTaskImg {
                width: 94%;
                height: 40%;
                margin: auto;
        /*border: 1px solid #2B2C28;*/
                text-align: center;
            }
            .qTaskImg img {
                height: 100%;

            }
            .qTaskText {
                color: #2B2C28;
                font-weight: 900;
                /*font-weight: bold;*/
                /*font-size: 2em;*/
                font-size: 1.5vw;
            }
            
            .qTaskBox:hover {
                transition: .25s;
                background-color: #DCF5ED;
                box-shadow: 5px 5px 20px #3e4038;
            }

            

/* Notification badge (top-right circle) */
.qTaskBadge {
    position: absolute;
    top: 4px;
    right: 6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;

    background: #ff5c5c;      /* tweak to taste */
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;

    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
    z-index: 2;
}
            
            
            
            
            
            
            
            
.sepRadio {
    margin-left: 6px;
}            
.floatClear {
    clear: both;
}            
            
            
/*THIS IS FOR FORMATTING THE QUESTIONS ON THE REPORT QAIRY*/            
            
    
            .quBox {
                width: 100%;
                text-align: center;
                margin-top: 10%;
                padding-left: 10%;
                padding-right: 10%;
            }
            .quBoxLeft {
                display: inline-block;
                width: fit-content;
                text-align: left;
/*                margin-top: 10%;
                padding-left: 10%;
                padding-right: 10%;*/
                
            }

                .quText {
                    color: #2B2C28;
                    font-weight: 900;
                    /*font-weight: bold;*/
                    font-size: 2em;
                }
            .quAnsBox {
                width: 100%;
                text-align: center;
                margin-top: 3%;
                
            }
                .quSelect {
                    font-size: 20px;

                }
                .quFormattedOption {
                    font-family: Consolas, monospace;
                }
                .quAnsText {
                    font-size: 20px;
                    font-weight: bold;
                }
                .quInst {
                    font-weight: normal;
                    font-style: italic;
                    font-size: smaller;
                }
                .quCbAns{
                    width: 20px;
                    height: 20px;
                }
                .quCbHoriz {
                    margin-right: 15px;
                }
                .quCbBox {
                    /*This is a div containter to put a box around the cb/radio*/
                    display: inline-table;
                    /*float: left;*/
                    width: 50%;
                    max-width: 200px;
                    height: 200px;
                    border-radius: 20px;
                    border: 2px solid #25826C;
                    background-color: #AEE9D5;
                    padding: 10px;
                    margin: 10px;
                }
                
            .quNext {
                width: 100%;
                text-align: center;
                margin-top: 3%;
            }
            .quNextButton {
                margin-top: 3%;
                font-size: 25px;
                
            }
            
            
/*
TABLE TABLE TABLE
TABLE TABLE TABLE
TABLE TABLE TABLE
*/


            .thInst {
                /*for small instruction in header column*/
                font-style: italic;
                font-size: 11px;
            }

            .oddColor {
                background-color: #f2e394;
            }
            .evenColor {
                background-color: #daead4;
            }








            

/*BUTTONS BUTTONS BUTTONS*/

.genBut {
    display: inline-block;
    /*background-color: #2B2C28;*/
    border: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    color: #F4EFF0;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
}
.genBut_80 {
    width: 80%;
}
.genBut:hover {
    box-shadow: 5px 5px 20px #3e4038;
    /*box-shadow: 5px 5px 20px #131515;*/
}
.genBut:after {
    box-sizing: inherit;
}
.genBut:before {
    box-sizing: inherit;
}

.butn {
  /*GENERAL BUTTON*/  
  background: #2B2C28;
  background-image: -webkit-linear-gradient(top, #2B2C28, #bbbcbd);
  background-image: -moz-linear-gradient(top, #2B2C28, #bbbcbd);
  background-image: -ms-linear-gradient(top, #2B2C28, #bbbcbd);
  background-image: -o-linear-gradient(top, #2B2C28, #bbbcbd);
  background-image: linear-gradient(to bottom, #2B2C28, #bbbcbd);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  -webkit-box-shadow: 0px 1px 3px #666666;
  -moz-box-shadow: 0px 1px 3px #666666;
  box-shadow: 0px 1px 3px #666666;
  font-family: Arial;
  color: #ffffff;
  font-size: 20px;
  padding: 10px 20px 10px 20px;
  border: solid #80DDBD 1px;
  text-decoration: none;
}

.butn:hover {
  background: #3cb0fd;
  text-decoration: none;
}


/*COLORS*/
/*
DARK/BLACK = LICORICE #131515
GRAY = CHARLESTON GREEN #2B2C28
DARK GREEN = VIRIDIAN #25826C
LIGHT GREEN = PEARL AQUA #80DDBD
LIGHT GREEN SHADE = #AEE9D5 / EVEN LIGHTER = #DCF5ED
WHITE = ISBELLINE #F4EFF0
*/

.bgDark {
    background-color: #2B2C28;
}
.bgPink {
    background-color: lightpink;
}





/*TEXT TEXT TEXT INPUT INPUTS*/
/*TEXT TEXT TEXT INPUT INPUTS*/
/*TEXT TEXT TEXT INPUT INPUTS*/

            .bigInp {
                font-size: 1.2em;
                font-size: 1.5vw;
            }
            
            .fmtTextBox {
                /*FOR USE WITH JS formatInpSize()*/
                max-width: 90%;
                /*!!!MUST HAVE A MIN-WIDTH IN CSS FOR TEXT ELEMENT*/
                text-align: center;
            }
            .textInst {
                /*for small instructions around buttons*/
                font-style: italic;
                font-size: 10px;
            }
            .optionGrey {
                color: grey;
            }

/*WIZARD WIZARD*/            
/*WIZARD WIZARD*/            
/*WIZARD WIZARD*/

        
            #wizCon {
                /*MUST BE FIXED HEIGHT*/
                /*width and height are in mbIncludePage*/
                display: inline-block;
                height: 100%;
                width: 100%;
                overflow-x: hidden;
            }
            #wizForm {
                width: 100%;
                height: 100%;
            }
                #wizInputCon {
                    display: inline-block;
                    width: 100%;
                    height: 90%;
background-color: beige;                    
                }
                #wizInputArea {
/*!!!THE FOLLOWING WILL VERTICAL CENTER THE LABEL AND INPUTS
BUT NEEDS BROWSER VENDOR PREFIXES*/
                    position: relative;
                    top: 50%;
                    transform: translateY(-50%);
                    /*display: inline-block;*/
                    /*width: 100%;*/
                    /*height: fit-content;*/
                    
/*background-color: yellow;*/                    
                }
                    .wizInputLabelCon {
                        /*Title/explanatgion of the input*/
                        display: inline-block;
                        width: 100%;
                        font-size: 2em;
                        font-weight: bold;
                        text-align: center;
                        color: #2B2C28;
                        margin-bottom: 5%;
/*background-color: PURPLE;*/                    
                    }
                    .wizInputElementsCon {
                        display: inline-block;
                        width: 100%;
                    }
                        .wizInpMaxSize {
                            /*SETS THE INPUT TO A MAX SIZE OF */
                            /*width: 30em;*/
                            min-width: 20%;
                        }
                        .wizInpMinSize {
                            /*SETS THE INPUT TO A MAX SIZE OF */
                            /*width: 5em;*/
                            min-width: 5em;
                        }
                        .wizInpCon100 {
                            /*Container for input element 100% width*/
                            display: inline-block;
                            width: 100%;
                            text-align: center;
background-color: pink;
                        }
                        
                        .wizInpConFloat {
                            /*Container for input element content-width and floats*/
                            float: left;
                            width: auto;
                            height: fit-content;
                            text-align: center;
background-color: purple;
                            
                        }
                #wizNavArea {
                    display: inline-block;
                    width: 100%;
                    height: 9%;
background-color: bisque;                    
                }
                    .wizNavSpacer {
                        width: 100%;
                        height: 20%;
                        background-color: transparent;
                    }
                    .wizButtonCon {
                        /*Container around nav buttons in wizard pages*/
                        float: left;
                        display: inline-block;
                        width: 19%;
                        height: 60%;
                        text-align: center;
/*background-color: green;*/
                    }