﻿/*=========== 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;
    padding-left: 0;
    padding-right: 0;
    min-width: 90vw;
}

.FormHelpCol {
    float: left;
    min-width: 6%;
    text-align: center;
}

    .FormHelpCol img {
        width: 14px !important;
        margin-right: .5em;
    }

.FormControlCol {
    float: left;
    padding-left: 1em;
    padding-left: 0;
    padding-right: 0;
    min-width: 25vw;
    max-width: 90vw;
}

/* SPECIAL HANDLING FOR SIGNIN PANEL */
[id*="pnlSignIn"] .FormControlCol {
    width: 30vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    min-width: 13vw;
}

.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 #777;
    border-radius: 0;
    letter-spacing: 1px;
    color: #fff;
    background-color: #777;
    -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: #777;
        background-color: #777;
        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: #777;
        box-shadow: 0 4px 8px 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 0px;
    padding-left: 10px;
    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;
}

    .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;
    background-color: #fff;
}

/*=========== 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;
}

.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: 3em !important;
    color: #EEE !important;
    text-shadow: 0 0 .125em #000;
}

#searchModal .modal-body {
    height: 90%;
}

#searchModal .input-group {
    height: 100%;
    width: 100%;
}

    #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 {
            color: #222;
            font-style: italic;
        }

        #searchModal .input-group > input::-moz-placeholder {
            color: #222;
            font-style: italic;
        }

        #searchModal .input-group > input:-ms-input-placeholder {
            color: #222;
            font-style: italic;
        }

        #searchModal .input-group > input:-moz-placeholder {
            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;
}

[id*=wcbForm] .Required-Asterisk {
    position: relative !important;
    float: unset !important;
    right: 0 !important;
    top: -0.5em !important;
}

select[id*=lstMemberType], select[id*=lstSpecialMember] {
    background: #fff !important;
}

/*==================================================================*/
/*==================================================================*/
/*===== (min-width : 1px) and (max-width : 992.99px) =====*/
/*==================================================================*/
/*==================================================================*/
@media screen and (min-width : 1px) and (max-width : 992.99px) {
    
}