﻿
/* ----------------- NOAH CUSTOM ----------------- */

.FormArea,
.FormRow,
.FormLabelCol,
.FormHelpCol,
.FormControlCol,
.FormButtons {
    display: inline-block;
}

.FormArea {
    width: 100%;
}

.FormRow {
    clear: both;
    width: 100%;
    margin-top: .5vh;
}

.FormLabelCol {
    float: left;
    min-width: 33%;
    padding-left: 0;
    padding-right: 0;
}

.FormHelpCol {
    float: right;
    min-width: 0%;
    text-align: center;
    padding-right: .5em;
}

    .FormHelpCol img {
        width: 14px !important;
    }

.FormControlCol {
    float: left;
    /*width: 60%;*/
    padding-left: 1em;
    min-width: 60%;
    padding-left: 0;
    padding-right: 0;
}


[id*=PanelDictionaryFormBuilder] .FormControlCol
{
    width: 60%;
}

/* SPECIAL HANDLING FOR SIGNIN PANEL */
[id*="pnlSignIn"] .FormControlCol {
    width: 50%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    min-width: 250px;
}

.FormButtons {
    clear: both;
    width: 100%;
    margin-top: 2vh;
}

.FormHelpImage {
    background-image: url(/images/helpI-icn-grey.png);
    background-repeat: no-repeat;
    border-style: none;
    width: 14px;
    height: 13px;
}

.FormButton,
a.FormButton {
    display: inline-block;
    padding: .5em 1.75em;
    margin-bottom: 0;
    line-height: 1.42857143;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid #F3A550;
    border-radius: 0;
    letter-spacing: 1px;
    color: #fff;
    background-color: #F3A550;
    -webkit-transition: all 150ms ease-in;
    -moz-transition: all 150ms ease-in;
    -o-transition: all 150ms ease-in;
    transition: all 150ms ease-in;
    text-transform: uppercase;
}

.FormButton:hover,
.FormButton:active,
a.FormButton:hover,
a.FormButton:active {
    border-color: #F3A550;
    background-color: #F3A550;
    box-shadow: 0 3px 3px rgba(0,0,0,0.20);
    color: #fff;
}

.FormButtonSecondary,
a.FormButtonSecondary {
    background-color: #dfdfdf;
    border-color: #d7d7d7;
    color: #5f5b50;
    /*box-shadow: 0 4px 8px rgba(0,0,0,0.10);*/
}

.FormButtonSecondary:hover,
.FormButtonSecondary:active,
a.FormButtonSecondary:hover,
a.FormButtonSecondary:active {
    background-color: #dfdfdf;
    border-color: #F3A550;
    box-shadow: 0 3px 3px rgba(0,0,0,0.20);
    color: #6c6961;
}

.FormButton.disabled,
.FormButton[disabled],
.FormButton.disabled:hover,
.FormButton[disabled]:hover,
.FormButtonSecondary.disabled,
.FormButtonSecondary[disabled],
.FormButtonSecondary.disabled:hover,
.FormButtonSecondary[disabled]:hover {
    border-color: #E5E5E5;
    background-color: #efefef;
    box-shadow: none;
    color: #aaa;
    cursor: not-allowed;
}

.FormHead {
    font-weight: 300;
    font-size: 24px;
    line-height: 1.1;
    color: inherit;
    margin-top: 20px;
    margin-bottom: 10px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
}

.FormLabel,
.FormError {
    font-weight: 400;
}

.FormError {
    color: #a94442 !important;
}

.FormControl {
    display: inline-block;
    width: 100%;
    padding: 6px 12px;
    font-size: 1em;
    line-height: 1.42857143;
    color: #555;
    background-color: #FFF;
    background-image: none;
    border: 1px solid #CCC;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.FormControl:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}

.FormControl::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.FormControl:-ms-input-placeholder,
.FormControl::-webkit-input-placeholder {
    color: #999;
}

.FormControl[disabled],
.FormControl.disabled,
.FormControl[readonly] {
    background-color: #EEE;
    opacity: 1;
}

.FormControl[disabled],
.FormControl.disabled {
    cursor: not-allowed;
}

select.FormControl {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(../../../images/arrow.png) no-repeat;
    background-position: 98.5% 50%;
    border: 1px solid #CCC;
}

/* DNN / NOAH form message box */
.noahFormMessage,
.dnnFormMessage {
    color: #31708f;
    background: #d9edf7;
    border: 1px solid #bce8f1;
    border-radius: 4px;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 15px;
    max-width: none;
}

.noahFormMessage.noahFormError,
.noahFormMessage.noahFormValidationSummary,
.dnnFormMessage.dnnFormError,
.dnnFormMessage.dnnFormValidationSummary {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.noahFormMessage.noahFormWarning,
.dnnFormMessage.dnnFormWarning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.noahFormMessage.noahFormSuccess,
.dnnFormMessage.dnnFormSuccess {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}





/* SQL FORMATTING OF STANDARD PREPARED DATA */
.Section
{
    display: block;
    padding: .5em;

    margin-bottom: 1em;
    /*
        border: 1px solid #555;
        width: 100%;
    */
}

.Section-Label
{
    width: 100%;
    display: block;
    font-weight: bold;

    background-color: #555;
    color: #FFF;

    padding: 0.5em;
}

.Sub-Section
{
    width: 100%;
    display: block;
}

.Sub-Section-Label
{
    padding: 0.5em;
    width: 100%;
}

.Sub-Section-Row
{
    width: 100%;
    display: inline-flex;
}

.Sub-Section-Row-Label
{
    width: 40%;
    display: inline-block;
    float: left;

    background-color: #EEE;
    padding: 0.5em;
    text-align: right;
    border-bottom: 1px solid #DDD;

    font-weight: bold;
}

.Sub-Section-Row-Label
{
    padding: 0.5em;
}

.Sub-Section-Row-Column-Header, .Sub-Section-Row-Column-Data
{
    width: 15%;
    display: inline-block;
    float: left;

    text-align: center;

    padding: 0.5em;
}

.Sub-Section-Row-Column-Data
{

}

.Sub-Section-Row-Column-Header
{
    font-style: italic;
    font-weight: bold;
    font-size: .75em;

    background-color: #EEE;
}

.Col1
{
    width: 100%;
    text-align: left;
    padding-left: 1em;
}

.Col2
{
    width: 50%;
}

.Col3
{
    width: 33%;
}

.Col4
{
    width: 25%;
}

.Col5
{
    width: 20%;
}





[id*=pnlUpload]
{
    width: 100%;
    border: 1px solid #DDD;
    padding: 1em;
}

[id*=pnlUpload] [id*=pnlRepository]
{

}

[id*=pnlUpload] [id*=pnlRepository] [id*=PaddingTop]
{
    height:0 !important;
}

[id*=pnlUpload] [id*=pnlRepository] [id*=rgDocuments]
{
    
}

[id*=pnlUpload] [id*=pnlRepository] .rgCommandRow
{
    background-color: rgba(0, 137, 196, .1) !important;
}



/* SEARCH MODAL */
#searchModal .modal-dialog {
    width: 90% !important;
    height: 90% !important;
}

#searchModal .modal-content {
    height: 100%;
    background-color: transparent;
    border: 0;
    box-shadow: 0 0;
}

#searchModal .modal-title {
    font-size: 3em !important;
    color: #EEE !important;
    text-shadow: 0 0 .125em #000;
}

#searchModal .modal-body {
    height: 90%;
}

#searchModal .input-group {
    height: 100%;
    width: 100%;
    /*line-height: 45em;*/
}

#searchModal .input-group > input,
#searchModal .input-group > input:hover {
    height: 100%;
    line-height: 22em;
    background-color: transparent;
    color: #fff !important;
    font-size: 1.5em;
    border: 0;
    text-align: center;
    box-shadow: 0 0 #000 !important;
}

#searchModal .input-group > input:focus
{
    box-shadow: 0;
}

#searchModal .input-group > input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #222;
  font-style: italic;
}
#searchModal .input-group > input::-moz-placeholder { /* Firefox 19+ */
  color: #222;
  font-style: italic;
}
#searchModal .input-group > input:-ms-input-placeholder { /* IE 10+ */
  color: #222;
  font-style: italic;
}
#searchModal .input-group > input:-moz-placeholder { /* Firefox 18- */
  color: #222;
  font-style: italic;
}

#searchModal .searchButton {
    border-radius: 1em;
    padding: 2em;
    border: 3px solid #555;
    display: none;
}

#searchModal .searchButton i
{
    font-size: 4em;
}

#searchModal .closeButton {
    font-size: 3em;
    color: darkred;
}
