﻿/* ----------------- 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;
}

.FormHelpCol {
    float: left;
    min-width: 6%;
    text-align: center;
}

    .FormHelpCol img {
        width: 14px !important;
    }

.FormControlCol {
    float: left;
    padding-left: 1em;
    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;
    margin-right: 1em;
}

.FormButton,
a.FormButton {
    display: inline-block;
    padding: .5em 1.75em;
    margin-bottom: 0;
    line-height: 1.42857143;
    text-align: center;
    text-decoration: none;
    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: 0px solid transparent;
    border-radius: 8px;
    letter-spacing: 1px;
    color: #fff;
    background-color: #81b261;
    -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;
    font-weight: bold;
}

    .FormButton:hover,
    .FormButton:active,
    a.FormButton:hover,
    a.FormButton:active {
        border-color: transparent;
        background-color: #bdd2a8;
        box-shadow: 0 3px 3px rgba(0,0,0,0.20);
        color: #fff !important;
    }

.psw-main-content .FormButton,
.psw-main-content a.FormButton {
    color: #fff !important;
}

.FormButtonSecondary,
a.FormButtonSecondary {
    background-color: #005544;
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.10);
}

    .FormButtonSecondary:hover,
    .FormButtonSecondary:active,
    a.FormButtonSecondary:hover,
    a.FormButtonSecondary:active {
        background-color: #297562;
        border-color: transparent;
        box-shadow: 0 4px 8px rgba(0,0,0,0.20);
        color: #fff;
    }

    .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: darkgray;
        box-shadow: none;
        color: #fff;
        cursor: not-allowed;
        opacity: .5;
    }

.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: #f60404 !important;
}

.FormControl {
    display: inline-block;
    width: 100%;
    padding: 6px 12px;
    font-size: 1em;
    line-height: 1.42857143;
    color: #222;
    background-color: #fff;
    background-image: none;
    border: 1px solid #CCC;
    border-radius: 8px;
    -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;
    outline: 0 !important;
}

    .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: transparent;
        border-color: transparent;
        border-width: 0px;
        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;
    clear: both;
    position: relative;
}

    .noahFormMessage.noahFormError,
    .noahFormMessage.noahFormValidationSummary,
    .dnnFormMessage.dnnFormError,
    .dnnFormMessage.dnnFormValidationSummary {
        color: #a94442;
        background-color: #f2dede;
        border-color: #ebccd1;
        bottom: 0;
    }

    .noahFormMessage.noahFormWarning,
    .dnnFormMessage.dnnFormWarning {
        color: #8a6d3b;
        background-color: #fcf8e3;
        border-color: #faebcc;
        bottom: 0;
    }

    .noahFormMessage.noahFormSuccess,
    .dnnFormMessage.dnnFormSuccess {
        color: #3c763d;
        background-color: #dff0d8;
        border-color: #d6e9c6;
        bottom: -1em;
    }

/* 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: #61a410;
    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%;
    /*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;
    }

#searchModal .closeButton {
    font-size: 3em;
    color: darkred;
}

.ShoppingCart-Actions input {
    width: unset !important;
}


.RadComboBox {
    /*border: 1px solid #ccc;*/
    border-radius: 8px;
}



.monthly {

}

span[disabled], span[disabled] input, span[disabled] label, span[disabled] label::before {
    cursor: not-allowed;
    opacity: 0.7;
}

[id*=rpvMemberChoices] .FormControl {
    border: none !important;
}