
    /* colors

        #073a3e - Dark Blue
        #fec715 - Dark Purple
        #000000 - White
    
    */
    
    .bg-cause {
        background-color: #bd0006;
    }
    
    .bg-event {
        background-color: #D72D21;
    }
    
    .bg-sidebar {
        background-color: #D72D21;
    }
    
    .btn-rounded {
        border-radius: 30px;
    }
    
    .btn-gray {
        background-color: #737373;
        color: white;
    }
    
    .btn-counter {
        color: #0F0F0F !important;
        background-color: #FFC7C7;
        padding-top: 7px;
        padding-bottom: 2px;
    }
    
    .btn-counter:hover {
        background-color: #FFC7C7;
        color: #0F0F0F !important;
    }
    
    .btn-sidebar {
        border: 0px;
        color: #0F0F0F;
        background-color: #FFC7C7;
    }
    
    .heading {
        font-weight: bold;
    }
    
    .invisible-card {
        border: 0px;
        background-color: transparent;
    }
    
    
    /* for phone */
    
    @media only screen and (max-width: 600px) {
        .countdown-number {
            text-align: center;
            font-weight: bold;
            font-size: 1em;
            border: 1px solid;
            padding-left: 6px;
            padding-right: 6px;
            margin-left: 3px;
            margin-right: 3px;
        }
        .card-body {
            padding-top: 0px;
            padding-bottom: 0px;
        }
    }

    /* Bootstrap pairs .row's -15px side margins with .container-fluid's 15px
       padding so they cancel out. page_global.css zeroes that padding, so any
       .row that is a direct child of .container-fluid (the sticky bottom bar,
       navbar/footer rows) bleeds 15px past the right edge and makes the whole
       document scroll sideways -- which in-app webviews then shrink-to-fit. */
    .container-fluid > .row {
        margin-left: 0;
        margin-right: 0;
    }

    /* backstop so no future element can force sideways scroll.
       'clip' rather than 'hidden': hidden would make body a scroll
       container and break the sticky bottom bar. */
    body {
        max-width: 100%;
        overflow-x: clip;
    }

    .wrapper {
        max-width: 100%;
    }
    
    
    /* for desktop */
    
    @media only screen and (min-width: 601px) {
        .countdown-number {
            text-align: center;
            font-weight: bold;
            font-size: 3em;
            border: 1px solid;
            padding-left: 15px;
            padding-right: 15px;
            margin-left: 10px;
            margin-right: 10px;
        }
    }
    
    .countdown-title {
        text-align: center;
        font-weight: lighter;
        padding: 5px;
    }
    
    .tab-content {
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 5px 0 rgba(0, 0, 0, 0.2);
        padding: 15px;
        max-width: 100%;
        overflow-x: auto;
    }

    /* pasted CMS content (Word/Sheets) can carry hard-coded pixel widths
       on tables/cols/images that overflow narrow viewports/webviews */
    .tab-content table {
        max-width: 100%;
    }

    /* override hard-coded widths on pasted tables only -- Bootstrap's own
       .table is left alone so it keeps its width: 100% */
    .tab-content table:not(.table) {
        width: auto !important;
    }

    .tab-content col {
        width: auto !important;
    }

    /* overflow-wrap, not word-break: break-word -- the latter maps to
       overflow-wrap: anywhere, which lets a column shrink below its
       longest word and was squeezing the Info tab's label column */
    .tab-content td,
    .tab-content th {
        overflow-wrap: break-word;
    }

    .tab-content img {
        max-width: 100%;
        height: auto;
    }

    .text-md-justify {
        overflow-wrap: break-word;
    }

    /* Info tab is a "label : value" table. On a phone there is not enough
       width for 3 columns, so stack each row -- label on its own line with
       the value at full width beneath it -- rather than squeezing the
       label column. Scoped to #nav-home so the pasted Rewards table,
       which is a real 2-column table, keeps its own layout. */
    @media only screen and (max-width: 600px) {
        #nav-home .table,
        #nav-home .table tbody,
        #nav-home .table tr,
        #nav-home .table td {
            display: block;
            width: auto;
        }

        /* the ":" separator column has no meaning once stacked */
        #nav-home .table td:nth-child(2) {
            display: none;
        }

        #nav-home .table td:first-child {
            font-weight: bold;
            padding-bottom: 0;
        }

        /* only the label carries the row separator, otherwise every
           cell draws its own border-top once they are all blocks */
        #nav-home .table td + td {
            border-top: 0;
            padding-top: .25rem;
        }
    }
    
    .border-shadow {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 15px 0 rgba(0, 0, 0, 0.2);
    }
    
    .nav-tabs .nav-link.tab-desc {
        font-weight: bold;
        color: #FFFFFF;
        background-color: #0F0F0F;
        margin-right: 10px;
    }
    
    .nav-tabs .nav-link.tab-faq {
        font-weight: bold;
        color: #FFFFFF;
        background-color: #0F0F0F;
        margin-right: 10px;
    }
    
    .nav-tabs .nav-link.tab-rules {
        font-weight: bold;
        color: #FFFFFF;
        background-color: #0F0F0F;
        margin-right: 10px;
    }
    
    .nav-tabs .nav-link.active {
        color: #FFFFFF;
        background-color: #AF170B;
    }
    
    .nav-tabs .nav-link:hover {
        color: #FFFFFF;
        background-color: #FFC7C7;
    }
    
    .overlay-container {
        position: relative;
        width: 50%;
    }
    
    .overlay-image {
        opacity: 1;
        display: block;
        width: 100%;
        height: auto;
        transition: .5s ease;
        backface-visibility: hidden;
    }
    
    .overlay-middle {
        transition: .5s ease;
        opacity: 0;
        position: absolute;
        top: 42%;
        left: 50%;
        transform: translate(-50%, -42%);
        -ms-transform: translate(-50%, -42%);
        text-align: center;
    }
    
    .overlay-container:hover .overlay-image {
        opacity: 0.3;
    }
    
    .overlay-container:hover .overlay-middle {
        opacity: 1;
    }
    
    .overlay-text {
        background-color: #707070;
        font-weight: bold;
        color: white;
        font-size: 18px;
        padding: 14px 30px;
        border-radius: 30px;
    }