﻿
/* ----------------- NOAH CUSTOM ----------------- */

.FormArea,
.FormRow,
.FormLabelCol,
.FormHelpCol,
.FormControlCol,
.FormButtons {
    display: inline-block;
    font-family: 'Gotham Narrow Book';
}

.FormArea {
    width: 100%;
}

.FormRow {
    clear: both;
    width: 100%;
    margin-top: .5vh;
}


.FormLabelCol {
    float: left;
    min-width: 15vw;
    padding-left: 0;
    padding-right: 0;
}

.FormHelpCol {
    float: left;
    min-width: 6%;
    text-align: center;
}

    .FormHelpCol img {
        width: 14px !important;
    }

.FormControlCol {
    float: left;
    padding-left: 1em;
    min-width: 40vw;
    padding-left: 0;
    padding-right: 0;
}


/* 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: 24px;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid #D06F1A;
    border-radius: 43px;
    letter-spacing: 1px;
    color: #fff;
    background-color: #D06F1A;
    -webkit-transition: all 150ms ease-in;
    -moz-transition: all 150ms ease-in;
    -o-transition: all 150ms ease-in;
    transition: all 150ms ease-in;
}

    .FormButton:hover,
    .FormButton:active,
    a.FormButton:hover,
    a.FormButton:active {
        border-color: #777;
        background-color: #777;
        box-shadow: 0 3px 3px rgba(0,0,0,0.20);
        color: #fff;
    }

.FormButtonSecondary,
a.FormButtonSecondary {
    background-color: transparent;
    color: #49A842;
    border: none;
    border-bottom: 4px solid #49A842;
    border-radius: 0px;
    box-shadow: none;
    padding: .75em;
}

    .FormButtonSecondary:hover,
    .FormButtonSecondary:active,
    a.FormButtonSecondary:hover,
    a.FormButtonSecondary:active {
        background-color: transparent;
        border: none;
        border-bottom: 4px solid #000;
        border-radius: 0px;
        color: #000;
        box-shadow: none;
    }

.FormButton.disabled,
.FormButton[disabled],
.FormButton.disabled:hover,
.FormButton[disabled]:hover {
    border-color: #D06F1A;
    background-color: #D06F1A;
    box-shadow: none;
    color: #fff;
    cursor: not-allowed;
    opacity: .5;
}

.FormButtonSecondary.disabled,
.FormButtonSecondary[disabled],
.FormButtonSecondary.disabled:hover,
.FormButtonSecondary[disabled]:hover {
    background-color: #fff;
    color: #49A842;
    border: none;
    border-bottom: 4px solid #49A842;
    border-radius: 0px;
    box-shadow: none;
    padding: .75em;
}

.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;
    caret-color: auto; /* This can be changed to the main color of the website */
}

    .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%;
}


/* STORE CLASSES */
[id*="dlItemsView"] tr,
[id*="dlItemsView"] td,
.store-data,
.store-item,
.store-thumbnail-image {
    display: table-cell;
}

    .store-item:hover {
        background-color: rgb(252, 235, 187);
        border-top: 1px solid #FFBC00;
        border-bottom: 1px solid #FFBC00;
    }

.store-item {
    margin: 0;
    border: 1px solid transparent;
    border-bottom: 1px dotted #FFBC00;
    padding-bottom: 1em;
    height: 100%;
}

.store-thumbnail-image {
    padding-right: 1em !important;
}

.store-image img {
    max-width: 150px;
    max-height: 200px;
    margin-top: 1.5em;
    box-shadow: 0 0 .5em #555;
}

.store-thumbnail-image img {
    max-width: 150px;
    max-height: 200px;
    margin-top: 1em;
    box-shadow: 0 0 .5em #555;
}

.store-action {
    text-align: center;
}


/* CUSTOM CLASSES */
.NO-PADDING {
    padding: 0 !important;
}

.NO-MARGIN {
    margin: 0 !important;
}

.Image-Page-Heading {
    margin: 0 !important;
    padding: 0 !important;
}

.Left-Nav-Background-Color {
    border: 1px solid rgba(255, 188, 0, .25);
    background-color: rgba(255, 188, 0, .25);
    border-right: 1px solid rgb(131, 97, 0)
}

/* 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: 4em !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::-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;
    }

[id*=searchModal] .close {
    font-size: 2em;
    color: #8A1F03;
}

[id*=siteSearchInput]::placeholder {
    font-size: 2em;
}

[id*=lbQuickActivation] {
    margin-top: 1em !important;
    position: relative;
    display: inline-block;
}

[id*=lblConsent] {
    margin-top: 1em;
}

[id*=MatrixContainer] label {
    font-size: 12px;
}