﻿

/* 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

 *********/




/* --------------------------- INFRASTRUCTURE -------------------------- */




/********************************/
/*     CUSTOM SPACING UTILS     */
/********************************/

@media (min-width: 992px) {

    .pt-lg-5em {
        padding-top: 5em !important;
    }

    .pt-lg-7em {
        padding-top: 7em !important;
    }

    .pt-lg-8em {
        padding-top: 8em !important;
    }

    .pt-lg-9em {
        padding-top: 9em !important;
    }

    .pt-lg-10em {
        padding-top: 10em !important;
    }

}

@media (max-width: 575px) {

    .ls-n1 {
        letter-spacing: -1px;
    }
}






/********************************/
/*       CONTENT WRAPPER        */
/********************************/

.juf__brand__content__wrapper {
    background: #FFFFFF;
    padding: 0;
    margin: 0;
    /*margin-bottom: 20px;*/
}

@media (max-width: 500px) {
    .juf__brand__content__wrapper {
        padding: 0;
        margin-bottom: 30px;
    }
}





/********************************/
/*          TOP TRIM            */
/********************************/

.juf__brand__content__topTrim {
    margin-bottom: 40px;
    /* animate.css 4.0 */
    /*animation: fadeInDown;
    animation-delay: 0s;
    animation-duration: 4s;*/
    /* TEMP FOR TESTING */
    /*background-color: aliceblue;
    height: 400px;*/
}

@media (max-width: 575px) {
    .juf__brand__content__topTrim {
        margin-bottom: 30px;
    }

}



/********************************/
/*         BOTTOM TRIM          */
/********************************/

.juf__brand__content__bottomTrim--retina {
    background-image: url(../img/about_meta_bottomTrim_desktop_retina.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    height: 119px;
    z-index: 1;
}

.juf__brand__content__bottomTrim {
    background: url(../img/about_meta_bottomTrim_desktop.png) no-repeat center top;
    background-size: cover;
    height: 119px;
}





/********************************/
/*        BORDER-COLORS         */
/********************************/


.juf__brand__border__blue {
    border-color: #009bd3 !important;
}


.juf__brand__border__green {
    border-color: #80bb00 !important;
}


.juf__brand__border__dkGreen {
    border-color: #6aa339 !important;
}

.juf__brand__border__violet {
    border-color: #8347ad !important;
}

.juf__brand__border__p220 {
    border-color: #aa004f !important;
}





/********************************/
/*          ANIMATIONS          */
/********************************/

.chevron_bottom_pull_up {
    animation-name: chevAnim;
    animation-duration: 2s;
    animation-delay: .25s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

@-webkit-keyframes chevAnim {
    0% { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%); }
    100% { clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%); }
}
@keyframes chevAnim {
    0% { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%); }
    100% { clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%); }
}

@media (max-width: 991px) {
    @-webkit-keyframes chevAnim {
        0% { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%); }
        100% { clip-path: polygon(0% 0%, 100% 0%, 100% 95%, 50% 100%, 0% 95%); }
    }
    @keyframes chevAnim {
        0% { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%); }
        100% { clip-path: polygon(0% 0%, 100% 0%, 100% 95%, 50% 100%, 0% 95%); }
    }
}


/********************************/
/*           CONFETTI           */
/********************************/

#confetti-holder {
    z-index: 1100;  /* must be higher than sticky elements on page = z-index: 1022 */
}





/* ---------------------------- MAIN TYPOGRAPHY --------------------------- */

/* ----------- TEXT --------------*/
.juf__brand__htext {
    font-weight: 600;
    color: #002855;
    line-height: 1.2;
    margin: 0;
}

.juf__brand__htext__level1 {
    font-size: 40px;
    margin-bottom: .5em;
}

.juf__brand__htext__level2 {
    font-size: 32px;
    margin-bottom: .75em;
}

.juf__brand__htext__level3 {
    font-size: 24px;
    margin-bottom: .5em;
}


.juf__brand__text__p {
    font-size: 16px;
    color: #4d4d4d;
    line-height: 2;
}


.juf__brand__text__ul,
.juf__brand__text__ol {
    margin-bottom: 0;
}

.juf__brand__content ul li,
.juf__brand__content ol li {
    color: #80bfe4;
    font-size: 20px;
    margin-bottom: 15px;
}








/********************************/
/*            LINKS             */
/********************************/
.juf__brand__content a {
    transition: all 0.25s ease-in-out;
    text-decoration: none;
}

    .juf__brand__content a:link,
    .juf__brand__content a:visited {
        color: #144d8e;
    }

    .juf__brand__content a:hover,
    .juf__brand__content a:active,
    .juf__brand__content a:focus {
        color: #009bd2;
    }

    /*.juf__brand__content a:link:not(h4 a),
    .juf__brand__content a:visited:not(h4 a) {
        color: #144d8e;
    }

    .juf__brand__content a:hover:not(h4 a),
    .juf__brand__content a:active:not(h4 a),
    .juf__brand__content a:focus:not(h4 a) {
        color: #009bd2;
    }*/

/* BADGE LINKS */

a.badge,
a.badge:link,
a.badge:visited {
    color: #FFFFFF;
}

    a.badge:hover,
    a.badge:focus {
        opacity: .8;
    }



/* BOOTSTRAP OVERRIDES */

.page-link {
    color: #009bd3;
}
/* Disabled State Input Buttons */
.aspNetDisabled.page-link {
    color: #dee2e6;
}
    .page-link.inactive:active,
    .page-link.inactive:hover,
    .page-link.inactive:focus,
    .aspNetDisabled.page-link:active,
    .aspNetDisabled.page-link:hover,
    .aspNetDisabled.page-link:focus {
        background: initial;
        border: 1px solid #dee2e6;
        outline: initial;
    }

.nav-link {
    color: #009bd3;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #777;
}

.donorResponse_navs *:not(i) {
    font-size: 15px;
}

.tooltip-inner {
    text-align: left;
}



/********************************/
/*           BADGES             */
/********************************/

/*.juf__phonothon__badge {
    letter-spacing: 1px;
}*/

.juf__phonothon__badge__spouseAccountID {
    color: #6aa339;
    border: 1px solid #6aa339;
}

.juf__phonothon__badge__coveringAccountID {
    color: #a50063;
    border: 1px solid #a50063;
}




/********************************/
/*    PARALLAX TITLE + TEXT     */
/********************************/
.juf__brand__parallax__textWrapVertCenter {
    position: absolute;
    left: 0;
    top: 35%;
    width: 100%;
    text-align: center;
}

.juf__brand__title {
    font-size: 63px;
    line-height: 1.5;
    font-weight: 400;
    color: #002855;
    display: block;
    margin-bottom: 18px;
}

.juf__brand__subText {
    font-size: 21px;
    line-height: 2;
    font-weight: 400;
    color: #002855;
    display: block;
}

.juf__brand__title--reverse,
.juf__brand__subText--reverse {
    color: #FFFFFF;
}

.juf__brand__title__parallax--top {
    margin-top: 50px;
}

.juf__brand__title__parallax--bottom {
    line-height: 1;
    margin-bottom: 0;
}


@media (max-width: 575px) {
    
    .juf__brand__title {
        font-size: 40px;
    }

    .juf__brand__subText {
        font-size: 16px;
        line-height: 1.8;
    }

    .juf__brand__title__parallax--top {
        margin-top: 90px;
    }

    .juf__brand__title__parallax--bottom {
        font-size: 45px;
    }
    .juf__brand__subText__parallax--bottom {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    
}


/********************************/
/*  SECTION TITLES, TEXT + BGs  */
/********************************/

.juf__brand__section {
    clip-path: polygon(0% 0%, 100% 0%, 100% 96%, 50% 100%, 0% 96%);
    padding-bottom: 3rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .juf__brand__section {
        clip-path: polygon(0% 0%, 100% 0%, 100% 99%, 50% 100%, 0% 99%);
        padding-bottom: 4rem;
    }
}

.juf__brand__section__title {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 400;
    /*letter-spacing: -1px;*/
    color: #002855;
    display: block;
    padding-top: 20px;
    margin-bottom: 28px;
}

.juf__brand__section__subText,
.juf__brand__section__text {
    color: #4D4D4D;
    display: block;
    margin-bottom: 0;
}

.juf__brand__section__subText {
    font-size: 22px;
    line-height: 41px;
}

.juf__brand__section__text {
    font-size: 20px;
    line-height: 1.75;
}


/* --------- STATS ----------  */

.juf__brand__stat__title {
    display: block;
    margin-bottom: 14px;
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
}

.juf__brand__stat__title--120 {
    font-size: 120px;
}



@media (max-width: 575px) {

    .juf__brand__section__title {
        font-size: 28px;
        padding-top: 14px;
        margin-bottom: 16px;
    }

    .juf__brand__section__subText {
        font-size: 17px;
        line-height: 1.9;
    }

    .juf__brand__stat__title,
    .juf__brand__stat__title--120 {
        font-size: 80px;
    }

    .juf__brand__section__text {
        font-size: 15px;
        line-height: 1.75;
    }
}






/********************************/
/*        CUSTOM STYLES         */
/********************************/


/* --------- FONT COLORS ----------  */

.juf__brand__color--orange {
    color: #ff9f38;
}

.juf__brand__color--lilac {
    color: #b590cc;
}

.juf__brand__color--blue {
    color: #53a4f7;
}

.juf__brand__color--green {
    color: #a1d45d;
}

.juf__brand__text__grey {
    color: #4d4d4d;
}


/* ------ BACKGROUND COLORS -------  */

.juf__brand__bgColor__grey {
    background-color: #f2f0ee; /* Pantone 30% Grey */
}

.juf__brand__bgColor__violet {
    background-color: #8347ad;
}

.juf__brand__bgColor__violetLite {
    background-color: #ede5f8;
}

.juf__brand__bgColor__blue {
    background-color: #0081c9;
}

.juf__brand__bgColor__blueLite {
    background-color: #E5F2F9;
}

.juf__brand__bgColor__green {
    background-color: #6aa339;
}
.juf__brand__bgColor__greenLite {
    background-color: #f0f7e1;
}
.juf__brand__bgColor__p220 {
    background-color: #aa004f;
}





/* CARD META TITLES */
/*-------------------------------------------*/
.juf__text__supraFunction {
    display: block;
    color: #627595;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.juf__text__eventName {
    display: block;
    color: #002855;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.3;
}

.juf__text__progressBar {
    color: #FFFFFF;
    font-weight: 600;
    top: 1px;
}

.juf__text__contentFunction {
    display: block;
    color: #002855;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: -1px;
}




/* PHONOTHON CARD LEADERBOARD */
/*-------------------------------------------*/

.juf__text__leaderboard__titles {
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    line-height: 1;
}

.juf__text__leaderboard__content {
    display: inline-block;
    font-size: 12px;
}


.juf__text__leaderboard__totalsThe {
    color: #9E7BC4;
    font-size: 30px;
}

.juf__text__leaderboard__totalsTotals {
    color: #9E7BC4;
    font-size: 22px;
}

.juf__text__leaderboard__callersTop {
    color: #008ACC;
    font-size: 30px;
}

.juf__text__leaderboard__callersCallers {
    color: #008ACC;
    font-size: 20px;
}





/* OFFCANVAS SLIDEOUT */
/*-------------------------------------------*/

/* Bootstrap Overrides */

.offcanvas {
    visibility: visible !important;
}

.offcanvas-end {
    border-left: none;
}


/* Custom Offcanvas Rules */

.offcanvasVisibleActionBar {
    position: absolute;
    top: 160px;
    left: -34px;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
    padding-top: 20px;
    padding-right: 8px;
    padding-bottom: 0;
    padding-left: 8px;
    height: 100%;
    color: #999;
    display: inline-grid; /* for Firefox box expansion */
}


.juf__offcanvas__ActionButtonWrapper {
    position: absolute;
    left: -25%;
    top: 25%;
}

.juf__offcanvas__ActionText {
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.juf__offcanvas__ActionButton {
    font-size: 1.5em;
    color: #999;
    padding: 0;
    border: none;
    background: none;
}

/* Rotate Text */
.juf__text__rotate__n90 {
    writing-mode: vertical-rl;
    /*transform: rotate(180deg);
    white-space: nowrap;
    overflow: visible;*/
}




/********************************/
/*  LONGEGIVITY SOCIETY ICONS   */
/********************************/

.juf__icon__society {
    background-repeat: no-repeat;
    background-size: cover;
    width: 25px;
    height: 25px;
    opacity: 1;
}
.juf__icon__society__none {
    background-color: none;
    border: 1px #999 solid;
    border-radius: 50%;
}
.juf__icon__society__becomechai {
    background-image: url(/assets/img/icon-society-becomechai.png);
}
.juf__icon__society__becomegoldengiver {
    background-image: url(/assets/img/icon-society-becomegoldengiver.png);
}
.juf__icon__society__becomesilvercircle {
    background-image: url(/assets/img/icon-society-becomesilvercircle.png);
}
.juf__icon__society__becomesinai {
    background-image: url(/assets/img/icon-society-becomesinai.png);
}
.juf__icon__society__becometzedakah {
    background-image: url(/assets/img/icon-society-becometzedakah.png);
}
.juf__icon__society__chai {
    background-image: url(/assets/img/icon-society-chai.png);
}
.juf__icon__society__goldengivers {
    background-image: url(/assets/img/icon-society-goldengivers.png);
}
.juf__icon__society__silvercircle {
    background-image: url(/assets/img/icon-society-silvercircle.png);
}
.juf__icon__society__sinai {
    background-image: url(/assets/img/icon-society-sinai.png);
}
.juf__icon__society__tzedakah {
    background-image: url(/assets/img/icon-society-tzedakah.png);
}




/********************************/
/*            MISC              */
/********************************/


.juf__innerShadow__10a20 {
    box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,.20);
}

.h100 {
    height: 100%;
}

.wauto {
    width: auto !important;
}

@media (max-width: 575px) {
    .tableMax {
        width: auto !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .tableMax {
        width: auto !important;
    }
}

@media (min-width: 1200px) {
    .tableMax {
        width: auto !important;
    }
}

canvas.jq-cabg-canvas {
    transition: all 0.25s ease-in-out;
}


.msgUploadPanel {
    display: block;
}

/* QR Code Images */

.qrImageWrapper {
    width: 100px;
    height: 100px;
}

.qrImageMissingWrapper {
    top: 35%;
    left: 38%;
}



/********************************/
/*          UTILITIES           */
/********************************/

/* Bootstrap Overrides */
.accordion-button:focus {
    box-shadow: none;
}



/* Font Weights */
.juf__brand__bold {
    font-weight: bold;
}

.bold300 {
    font-weight: 300;
}
.bold400 {
    font-weight: 400;
}
.bold500 {
    font-weight: 500;
}
.bold600 {
    font-weight: 600;
}
.bold700 {
    font-weight: 700;
}
.bold800 {
    font-weight: 800;
}
.bold900 {
    font-weight: 900;
}



/********************************/
/*     DATA TABLES OVERRIDES    */
/********************************/

.dataTable,
.dataTables_length,
.dataTables_filter,
.dataTables_info,
.dataTables_paginate * {
    font-size: 11px;
}

.dataTables_wrapper > .row {
    --bs-gutter-y: 0.5rem !important;
}


/*.phonothonGridviewBody tbody td {
    font-size: .7em;

}*/



