﻿
/* Button and textbox styles */
input.stsButton {
    background-color: #086972;
    color: white;
    cursor: pointer;
    border-radius: 3px;
    padding: 20px 10px 20px 10px;
    width: 140px;
    height: 60px;
    border: none;
}

input.stsNextButton:hover {
    background-color: #0B95A2;
    font-weight: 600;
    align-self: end;
}


input.stsPreviousButton:hover {
    background-color: #0B95A2;
    font-weight: 600;
}

input.stsRestartButton {
    margin-top: 30px;
}


input.stsSubmitButton:hover {
    background-color: #0B95A2;
    font-weight: 600;
}


input.stsTextBox {
    background-color: #B4D1D4;
    border-color: #086972;
    padding: 5px 8px 5px 8px;
    border-radius: 5px 5px 5px 5px;
    width: auto;
}

input.stsEmailTextBox {
    background-color: #B4D1D4;
    border-color: #086972;
    padding: 5px 8px 5px 8px;
    border-radius: 5px 5px 5px 5px;
}

label.stsRadioLabel {
    padding:  5px 10px 5px 15px;
    align-items: center;
}


/* div layout styles */
div.stsAnswerSummary {
    border: none;
    display: grid;
    grid-template-columns: 5% 80% 15%;
    justify-items: start;
}

div.stsAnswerSummaryItem {
    padding-top: 10px;
    padding-bottom: 10px;
}


div.stsAnswerSummaryItemCenter {
    justify-self: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

div.stsAnalysisResults {
}

div.stsAnalysisResultsItem {
}


div.stsEmailReportForm {
    border: none;
    display: grid;
    grid-template-columns: 20% auto 25% 15%;
    vertical-align: middle;
    margin-bottom: 20px;
}

div.stsEmailReportFormItem {
    align-self:  center;
}

div.stsEmailReportFormItemDomain {
    align-self: center;
    text-align: left;
}

    div.stsEmailReportFormItem:first-child {
        padding-right: 10px;
    }

    div.stsEmailReportFormItem:last-child {
        justify-self: end;
    }


div.stsRestart {
    text-align: end;
}


div.stsOuterDiv {
    border: none;
    padding: 20px 0px 20px 0px;
}

div.stsQuestionDiv {
    border: none;
    display: grid;
    grid-template-columns: 60% 40%;
    padding: 10px 0px 10px 0px;
    align-items: center;
    line-height: 2;

}

    div.stsQuestionDiv:first-child {
    }

div.stsQuestionText {
    border: none;
    line-height: 1.4;
    padding-top: 8px;
    width: 100%;
    text-align: left;
}

div.stsQuestionItem:last-child {
    width: 100%;
    text-align: center;
}


div.stsExplanationDiv {
    border: none;
    background-color: #B4D1D4;
    padding: 20px 20px 20px 20px;
    align-items: center;
    border-radius: 10px 10px;
    font-style: italic;
    margin-bottom: 30px;
}

div.stsNavigationDiv {
    border: none;
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 20px 0px 10px 0px;
}

div.stsNavigationItem:first-child {
    justify-self: start;
}

div.stsNavigationItem:last-child {
    justify-self: end;
}


/* Message box style */
div.stsPleaseWait {
    display: none;
    background-color: #086972;
    width: 450px;
    text-align: center;
    padding: 75px 40px 75px 40px;
    font-family: 'Noto Sans';
    color: white;
    font-size: 12pt;
    font-weight: 600;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px 10px;
    z-index: 100;
}


/* Heading Styles*/
h2.stsHeading2 {
    font-family: 'Noto Sans';
    color: #086972;
    padding-top: 20px;
}

h3.stsHeading3 {
    font-family: 'Noto Sans';
    color: #086972;
    padding: 20px 0px 0px 0px;
}
