﻿
/* JUF WRAPPER STYLESHEET

 ***********
 BRAND COLORS
 
    Blues
    P295C100: #002855
    P295C80: #2D4D76
    P295C60: #627596
    P295C40: #94A1B8
    P295C20: #C8CEDA

    Purples
    P2587C100: #8347AD
    P2587C60: #B590CC

    Orange
    P170C100: #FF8671
    Pantone 7417C: R:230 G:75 B:56  HEX: #E64B38
    Pantone 1797C: R:207 G:51 B:57  HEX: #CF3339

    Reds
    P234C100: #A50063
    P233C100: #CA007B
    P218C100: #E96BAF

    Aquas
    Pantone 318 C: #84D9DE
    Pantone 319 C: #1DC9D3
    Pantone 7467 C: #00A0AF

 *********/




/********************************/
/*          NEW FORMS           */
/********************************/




/****** BOOTSTRAP 4 OVERRIDE ADJUSTMENTS ******/

/* .NET RadioButtonList/CheckBoxList render as:
    <span class="form-check-input">
      <input>
      <label>
      <input>
      <label>
        ...
    </span>
*/


.form-group {
    margin-bottom: 30px;
}

    .requiredField:after,
    .required > label:after,
    .form-group.required > label:after,
    .form-group.required [class*="col"] label:after,
    .form-group.required .control-label:after {
        content: "*";
        color: red;
        padding-left: 5px;
    }

span.validatorMsg:before {
    content: "\A"; /*line break*/
    white-space: pre-wrap;
}

.well .form-group:last-child {
    margin-bottom: 0;
}

.form-control {
    border-radius: 0;
    box-shadow: none;
}

    .form-control:focus {
        border-color: #999;
        box-shadow: none;
        outline: 2px solid #999;
    }



.text-primary {
    color: #009bd2 !important;
}

/*label {
    font-weight: bold;
}
*/


/* ALERTS & BACKGROUNDS */

/* Danger */
.bg-danger,
.alert-danger,
.border-primary {
    background-color: rgba(255, 184, 170, .5); /* 60% Pantone 170 C */
}

.alert-danger {
    color: #cf3339; /* Pantone 1797 C */
    border-color: transparent;
    border-radius: 0;
}

/* Info */
.bg-info,
.alert-info {
    background-color: rgba(242, 240, 238, .5); /* 30% Pantone Warm Gray 1 C */
}

.alert-info {
    color: #84888b; /* Pantone 877 C */
    border-color: transparent;
    border-radius: 0;
}

/* Success */
.bg-success,
.alert-success {
    background-color: rgba(201, 228, 162, .5); /* Pantone 367 C 60% */
}

.alert-success {
    color: #6aa339; /* Pantone 7737 C */
    border-color: transparent;
    border-radius: 0;
}





.panel {
    border-radius: 0;
    box-shadow: none;
}

.panel-survey {
    border-color: #dddddd;
    padding: 24px 10px 2px 10px;
    background-color: #f5f5f5;
}



/* BOOTSTRAP HELPER */

/* selects all <a> tags with .badge class that has the [data-toggle] property */
a.badge[data-toggle="popover"],
a i.material-icons {
    cursor: pointer;
}



/* Boostrap Form Overrides (developed in Big-Event.aspx) */
/*
    EXAMPLE
    O Label1   O Label2   O Label3

    RULE
    <asp:Form               class=NONE
    <asp:RadioButtonList    CssClass="radio"    //moves entire list on own line
    <asp:ListItem           class="radio-inline //keeps all inputs on same line
    
    OUTPUT
    <span class="radio">
        <span class="radio-inline">
            <input>
            <label>
        </span>
    </span>
*/

.radio .radio-inline label,
.checkbox .checkbox-inline label,
.radio span.aspNetDisabled label,
.checkbox span.aspNetDisabled label {
    margin-right: 50px;
    padding-left: 0;
}

/* inline radio/cb spacing */
span.radio-inline span.radio-inline,
span.checkbox-inline span.checkbox-inline {
    margin-right: 25px;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
    margin-left: 0;
}

/* -inline class on asp:RadioButtonList or asp:CheckboxList (use CssClass=)
    ALSO, make sure to set ASP Control to RepeatLayout="Flow" */

.form-horizontal span.radio,
.form-horizontal span.radio-inline,
.form-horizontal span.checkbox,
.form-horizontal span.checkbox-inline,
.form-horizontal span.aspNetDisabled {
    margin-bottom: 5px;
    padding-left: 20px;
}

.form-horizontal span.checkbox {
    padding-left: 22px;
}

.form-horizontal span.aspNetDisabled {
    display: inline-block;
    padding-top: 7px;
}

    .form-horizontal span.radio-inline:first-child,
    .form-horizontal span.radio span.radio-inline + span.radio-inline,
    .form-horizontal span.checkbox-inline:first-child,
    .form-horizontal span.aspNetDisabled:first-child {
        padding-top: 0;
    }

.form-horizontal .radio-inline label,
.form-horizontal .checkbox-inline label {
    margin-right: 50px;
}

.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #CCC;
}

.form-control::-moz-placeholder { /* Firefox 19+ */
    color: #CCC;
}

.form-control:-ms-input-placeholder { /* IE 10+ */
    color: #CCC;
}

.form-control:-moz-placeholder { /* Firefox 18- */
    color: #CCC;
}



.table:not(.gridViewTable) th a,
.table:not(.gridViewTable) th a:link {
    color: #FFF;
}

    .table:not(.gridViewTable) th a:hover,
    .table:not(.gridViewTable) th a:active {
        color: #DDD;
    }


/*style form datepicker calendar control*/
table:not(.gridViewTable) th {
    color: #ffffff;
    background-color: #627595;
}

td input[type="checkbox"] {
    float: left;
    margin: 0 auto;
    width: 100%;
}



/* INLINE FORM FORM-GROUP MARGIN ADJUSTMENT */

.form-inline .form-group {
    margin: 10px 10px 10px 0;
    vertical-align: inherit;
}



/* CUSTOM DROPDOWNLIST SELECT CONTROL STYLES */

/* Method #1 */

/*.form-select-reverse {
    background-color: #6c757d;
    border: 2px solid #ccc;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("/uploads/media/default/0001/02/f7b4d3d2ba3fe1d8518e6e63d7740e1e73921abf.png") 96% / 15% no-repeat #6c757d;
}*/

/* Method #2 */

select.form-select-reverse {
    font-size: .8rem;
    padding: 3px 6px;
    padding-right: 18px;
    border-radius: 0;
    box-shadow: none;
    background: #6c757d;
    border: none;
    outline: none;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    color: #FFF;
}

label.form-select-reverse-label {
    position: relative;
}

    label.form-select-reverse-label:after {
        content: '^';
        font: 11px "Consolas", monospace;
        color: #ddd;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
        right: 8px;
        top: 6px;
        position: absolute;
        pointer-events: none;
    }

/*label.form-select-reverse-label:before {
        content: '';
        right: 6px;
        top: 0px;
        width: 20px;
        height: 20px;
        background: #eee;
        position: absolute;
        pointer-events: none;
        display: block;
    }*/







/****** BOOTSTRAP 4 OVERRIDE ADJUSTMENTS ******/

/* .NET RadioButtonList/CheckBoxList render as:
    <span class="form-check-input">
      <input>
      <label>
      <input>
      <label>
        ...
    </span>
*/

/* Inline Checkbox/Radios */

.form-check-inline > label {
    margin-bottom: 0;
}

.form-check-inline span.form-check-input input {
    margin-right: .3125rem;
}

.form-check-inline span.form-check-input label {
    margin-bottom: 0;
    margin-right: 1rem;
}




/****** BOOTSTRAP 4 OVERRIDE ADJUSTMENTS ******/

/* .NET RadioButtonList/CheckBoxList render as:
    <span class="form-check-input">
      <input>
      <label>
      <input>
      <label>
        ...
    </span>
*/

.form-check {
    display: block;
    padding-left: 0;
}

    .form-check > span {
        position: relative;
        display: block;
        padding-left: 2.5rem;
    }

        .form-check > span > input {
            position: absolute;
            margin-top: .3rem;
            margin-left: -1.25rem;
        }

        .form-check > span > label {
            margin-bottom: 0;
        }

    /* Inline Checkbox/Radios */

    .form-check.form-check-inline > input {
        position: static;
        margin-top: 0;
        margin-right: .4rem;
        margin-left: 0;
    }

    .form-check.form-check-inline > label {
        margin-bottom: 0;
        margin-right: 1.25rem;
    }


.form-check-inline span.form-check-input input {
    margin-right: .3125rem;
}

.form-check-inline span.form-check-input label {
    margin-bottom: 0;
    margin-right: 1rem;
}


/* Selects first <span> under .form-check that has .form-check-inline children */
.form-check > span:first-of-type:has(.form-check-inline) {    
    padding-left: 0;
}






/* BOOTSTRAP MULTI-SELECT LISTBOX CONTROL OVERRIDES */

.multiselect-container {
    padding: 10px;
    width: 100%;
}

    .multiselect-container > li > a > label {
        padding: 3px 20px 3px 10px
    }

.content__editWell__wrapper {
    background-color: #EEEEEE;
    border-radius: 0;
}

.content__editWell__headerText {
    color: #999999;
    font-size: 8pt;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.multiselect-container.dropdown-menu.show {
    z-index: 10000;
    top: 150px;
    left: 100px;
    min-width: 34rem;
    max-height: 28rem;
    overflow-y: scroll;
}







/* FOR SURVEY-LIKE NUMBERS ABOVE RADIO LIST 1-10 SCALE */

.NumbersAbove {
    margin-top: 10px;
}

    .NumbersAbove span.radio-inline,
    .NumbersAbove span.checkbox-inline {
        margin-right: 25px;
    }

@media (max-width: 995px) {

    .NumbersAbove {
        margin-top: 0;
    }

        .NumbersAbove span.radio-inline,
        .NumbersAbove span.checkbox-inline {
            margin-top: 20px;
        }
}

.NumbersAbove span.radio-inline label,
.NumbersAbove span.checkbox-inline label {
    position: relative;
    left: -18px;
    top: -15px;
}




/* BUTTONS
    -------------------------------------- */


/* Bootstrap Overrides */

.btn:active,
.btn:focus {
    box-shadow: none;
    outline: none;
}


/* legacy */

.juf-btn,
.pri-btn {
    color: #007dc3;
    border: 3px #007dc3 solid;
    padding: 8px 24px;
    font-size: 22px;
    display: inline-block;
    font-weight: bold;
    margin: 20px 0 30px 0;
    text-transform: uppercase;
    border-radius: 0px;
    background-color: #FFFFFF;
}

    .juf-btn:hover {
        color: #FFFFFF;
        background-color: #007dc3;
        text-decoration: none;
    }


.pri-btn {
    color: #007dc3;
    border: 3px #007dc3 solid;
}

    .pri-btn:hover {
        color: #FFFFFF;
        background-color: #007dc3;
        text-decoration: none;
    }

.sec-btn {
    color: #db801b;
    border: 3px #db801b solid;
}

    .sec-btn:hover {
        color: #FFFFFF;
        background-color: #db801b;
        text-decoration: none;
    }


.juf-btn-wide {
    width: 100%;
}

.juf-btn-small {
    border-width: 2px !important;
    padding: 4px 12px !important;
    font-size: 80% !important;
    display: inline-block;
    font-weight: bold;
    margin: 10px 0 !important;
}

.juf-btn-tiny {
    border-width: 1px !important;
    display: inline-block;
    font-size: 75% !important;
    font-weight: bold;
    margin: 5px 0 0 0 !important;
    padding: 2px 5px !important;
}



.button__pill--sidebar {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 10px 0px;
    color: #627596;
    opacity: .5;
    transition: opacity .1s ease-in-out;
    width: 70%;
    margin-bottom: 1rem;
}

    .button__pill--sidebar:last-child {
        margin-bottom: 0;
    }

    .button__pill--sidebar:hover,
    .button__pill--sidebar:focus {
        color: #627596;
        opacity: .75;
    }

    .button__pill--sidebar:active {
        opacity: 1;
    }

.button__pill--100 {
    width: 100%;
}

.button__pill {
    padding: 10px 20px;
    background-color: #FFFFFF;
    border-radius: 24px;
    text-transform: uppercase;
    font-weight: 700;
    min-width: 8rem;
    /*transition: background-color .1s ease-in-out;*/
}

.button__pill__small {
    padding: 2px 8px;
    background-color: #FFFFFF;
    border-radius: 24px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .75rem;
    line-height: 1.5;
}

.button__pill--primary {
    color: #627596;
    border-color: #627596;
}

    .button__pill--primary:hover,
    .button__pill--primary:focus {
        color: #FFFFFF;
        border-color: transparent;
        background-color: #94A1B8;
    }

    .button__pill--primary:active {
        color: #FFFFFF;
        border-color: transparent;
        background-color: #627596;
        /* push down animation effect */
        /*padding: 8px 18px;
        margin: 3px 3px;
        font-size: 99%;*/
    }

.button__pill--secondary {
    color: #FFFFFF;
    border-color: transparent;
    background-color: #84D9DE;
}

    .button__pill--secondary:hover,
    .button__pill--secondary:focus {
        color: #FFFFFF;
        border-color: transparent;
        background-color: #1DC9D3;
    }

    .button__pill--secondary:active {
        color: #FFFFFF;
        border-color: transparent;
        background-color: #00A0AF;
    }

.button__pill--warning {
    color: #FF8671;
    border-color: #FF8671;
    background-color: #FFFFFF;
}

    .button__pill--warning:hover,
    .button__pill--warning:focus {
        color: #FFFFFF;
        border-color: transparent;
        background-color: #E64B38;
    }

    .button__pill--warning:active {
        color: #FFFFFF;
        border-color: transparent;
        background-color: #CF3339;
    }


.button__listBox {
    color: #999;
    border-color: #CCC;
    padding: 10px 20px;
    background-color: #FFFFFF;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
}


/* OVERRIDE BOOTSTRAP DISABLED BUTTON OPACITY */
.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    opacity: .25 !important;
}



/* GRID VIEW STYLES */

.gridViewTable tr th {
    font-size: 13px;
}

.gridViewTable tr td {
    font-size: 12px;
}

.ascending a {
    background: url(/assets/img/ascending.png) 95% no-repeat;
    background-position-y: 5px;
    display: block;
    padding: 0 35px 0 5px;
}

.descending a {
    background: url(/assets/img/descending.png) 95% no-repeat;
    background-position-y: 5px;
    display: block;
    padding: 0 35px 0 5px;
}





/* PAGINATION CONTROLS */

.page-link:focus,
.page-link:active {
    /*color: #0a58ca;
    background-color: #e9ecef;
    box-shadow: 0 0 0 0.15rem rgb(0 0 0 / 25%);*/
    box-shadow: none;
    outline: 1px grey solid;
}


/* PAGINATION CONTROLS BS 5.2 */


/*.gvPagerStyle table,
.gvPagerStyle tbody {
    border: none;
    border-style: hidden;
}*/

.gvPagerStyle > td {
    padding-top: 10px;
    padding-bottom: 10px;
}

.gvPagerStyle table {
    border: 1px solid #CCC;
}

    .gvPagerStyle table td {
        padding: 5px;
        font-size: medium;
        width: auto;
    }

.gvPagerStyle tbody row {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: var(--bs-link-hover-color);
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #0d6efd;
    --bs-pagination-active-border-color: #0d6efd;
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: inline-block;
    padding-left: 0;
    list-style: none;
}


    .gvPagerStyle tbody row td a /*.page-link*/ {
        position: relative;
        display: block;
        padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
        font-size: var(--bs-pagination-font-size);
        color: var(--bs-pagination-color);
        text-decoration: none;
        background-color: var(--bs-pagination-bg);
        border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

    .gvPagerStyle tbody row td span /*.active + .page-link, .page-link.active */ {
        z-index: 3;
        color: var(--bs-pagination-active-color);
        background-color: var(--bs-pagination-active-bg);
        border-color: var(--bs-pagination-active-border-color);
    }

    .gvPagerStyle tbody row td:first-child span /*.page-item:first-child .page-link*/ {
        border-top-left-radius: var(--bs-pagination-border-radius);
        border-bottom-left-radius: var(--bs-pagination-border-radius);
    }

    .gvPagerStyle tbody row td:not(:first-child) a /*.page-item:not(:first-child) .page-link*/ {
        margin-left: calc(var(--bs-border-width) * -1);
    }


/* LEGACY PAGER (Blue, Square Boxes) */

.GridPager > td {
    padding-top: 20px;
    padding-bottom: 18px;
}

.GridPager a {
    color: #007dc3;
    text-decoration: none;
    background-color: #ffffff;
    border: solid 1px #007dc3;
    padding: 4px 8px;
    margin-right: 4px;
}

.GridPager a {
    color: #007dc3;
    text-decoration: none;
}

.GridPager span {
    color: #ffffff;
    text-decoration: none;
    background-color: #007dc3;
    border: solid 1px #007dc3;
    padding: 4px 8px;
    margin-right: 4px;
}





/* JUF STYLES */


.reqAsterisk {
    color: red;
}

.reqField:after {
    content: "\a0*";
    color: red;
    position: absolute;
    top: 0px;
    right: 0px;
}

.rfvError {
    color: #e64b38;
    font-weight: bold;
}

label .noBold,
.noBold label {
    font-weight: normal !important;
}

.form_validation {
    text-align: left;
    padding: 15px 25px 5px 5px;
    color: Red;
}



/********************************/
/*   CUSTOM LABELS + CONTROLS   */
/********************************/


/* BOOTSTRAP OVERRIDES */

.form-label {
    margin-bottom: 0.1rem;
    font-size: 14px;
}

.form-control-plaintext {
    padding: 0.25rem 0;
}

.form-control,
.form-select {
    border-radius: 0;
    box-shadow: none;
}

    .form-control:focus,
    .form-select:focus {
        /*border-color: #999;*/
        border-color: #627595;
        box-shadow: none;
        outline: 2px solid #999;
    }

.form-check input[type=radio],
.form-check input[type=checkbox] {
    margin-right: 0.5em;
}

textarea.form-control-plaintext {
    line-height: 1.3;
    font-size: .95rem;
}



/* CUSTOM FORM RULES */

.juf__phonothon__form__primaryLabel {
    text-transform: uppercase;
    color: #94A1B8;
    font-size: .75rem;
    font-weight: bold;
    white-space: nowrap;
    margin-bottom: .75em;
}

.juf__phonothon__form__secondaryLabel {
    text-transform: uppercase;
    color: #888;
    font-size: .65rem;
}

.juf__phonothon__form__preferred {
    font-weight: 600;
}

    .juf__phonothon__form__preferred:after {
        content: "\a0*"; /* added non-breaking space: \a0 */
    }



.labelHelper i {
    color: #2280BE;
    text-align: left;
    font-family: "Open Sans",sans-serif !important;
    font-size: 12px;
    font-style: normal;
}

.labelHelperSmall {
    color: #666;
    font-size: 10px;
    font-style: normal;
}

    .labelHelperSmall span {
        color: #007dc3;
    }






/* EVENT INFO LAYOUT FOR MOBILE DEVICE SIZES */

@media (max-width: 992px) {
    .mReg__EventName {
        margin-bottom: .25em !important;
    }

    .mReg__Info__Element {
        padding-top: .35em;
        padding-bottom: .35em;
    }

    .mReg__Info__Element__Glyph {
        color: #007DC3;
        margin-right: .75em;
        margin-bottom: .5em; /* MIN: Use for short addresses */
        /*margin-bottom: 2em;*/ /* MAX: Use for very long addresses */
        float: left;
        top: 5px;
    }
}

@media (max-width: 767px) {
    .mReg__Info__Element__Glyph {
        margin-bottom: .5em;
    }
}





/* MISCELLANEOUS */

.ErrMsg1 {
    color: #FFB8AA;
    font-size: 25pt;
    font-weight: 700;
}

.ErrMsg2 {
    color: #e64b38;
    font-size: 21pt;
    font-weight: 700;
}

.ErrMsg3 {
    color: #FFB8AA;
    font-size: 18pt;
    font-weight: 600;
}
