﻿/* 
 ***************************
 * Use CSS custom properties/variables to define colors
 * Arizona State University
 ***************************
 */

:root {
    --asu-maroon-rgb: 140, 30, 64;
    --asu-gold-rgb: 255, 198, 39;
    --asu-red-rgb: 210, 49, 83;
    --asu-maroon: rgba(var(--asu-maroon-rgb), 1);
    --asu-gold: rgba(var(--asu-gold-rgb), 1);
    --asu-red: rgba(var(--asu-red-rgb), 1);
}

/* 
 ***************************
 * Typography
 ***************************
 */

.text-primary {
    color: var(--asu-maroon);
}

/* I gave this less weight than the page title, but you can change it back if you want. */
.activity-feed-header {
    font-size: 2rem;
    font-weight: 300;
}

.section_subtitle {
    font-size: 14px;
    font-weight: bold;
    color: var(--asu-maroon);
}

.Question_Category {
    color: var(--asu-maroon);
}

.hp .Question_Category {
    color: var(--asu-maroon);
}

/* 
 ***************************
 * Links
 ***************************
 */

a {
    color: var(--asu-maroon);
}

    a:hover {
        color: var(--asu-red);
        text-decoration: none;
    }

/* 
 ***************************
 * Buttons
 ***************************
 */

.btn-primary {
    background-color: var(--asu-maroon);
    border-color: var(--asu-maroon);
}

    .btn-primary:hover,
    .btn-primary:active {
        border-color: var(--asu-red) !important;
        background-color: var(--asu-red) !important;
        color: white !important;
    }

.btn-outline-primary {
    border-color: var(--asu-maroon);
    color: var(--asu-maroon);
}

    .btn-outline-primary:hover,
    .btn-outline-primary:active {
        border-color: var(--asu-maroon) !important;
        background-color: var(--asu-maroon) !important;
        color: white !important;
    }

.next_btn_Style {
    background-color: var(--asu-maroon);
    color: white;
}

    .next_btn_Style:hover,
    .next_btn_Style:active {
        border-color: var(--asu-red);
        background-color: var(--asu-red);
        color: white;
    }

.btn_style {
    background-color: var(--asu-maroon);
    color: white;
}

.hp .btn_style {
    background-color: var(--asu-maroon);
}

.es .btn_style {
    background-color: var(--asu-maroon);
}

/* 
 ***************************
 * Main navigation
 ***************************
 */

.navbar {
    padding: 0;
}

    .navbar .btn {
        color: #2a2a2a;
        border-color: var(--asu-gold);
        background-color: var(--asu-gold);
    }

        .navbar .btn:focus,
        .navbar .btn:active {
            color: #2a2a2a !important;
            background-color: var(--asu-gold) !important;
            border-color: var(--asu-gold) !important;
        }

        .navbar .btn:hover {
            color: #2a2a2a !important;
            background-color: #ffd053 !important;
            border-color: #ffd053 !important;
        }

.navbar-collapse {
    background-color: #353535; /*Super_Dark_Grey*/
}

.nav-item .nav-link {
    padding: 0.75rem;
    color: #ededed !important; /*Pasty_White*/
    /* Bold matches ASU, but I think it looks worse. Up to you. */
    /* font-weight: bold;  */
    transition: all 0.25s ease-in-out;
}

    .nav-item .nav-link:hover {
        background-color: #1f1f1f; /*Almost_Black*/
        color: var(--asu-gold) !important;
    }

    .nav-item .nav-link:active,
    .nav-item .nav-link:focus {
        color: var(--asu-gold) !important;
    }

.nav-item.active {
    border-bottom: none;
}

    .nav-item.active .nav-link {
        background-color: #1f1f1f; /*Almost_Black*/
        color: var(--asu-gold) !important;
        font-weight: bold;
    }

.navbar-brand {
    padding: 1.5rem;
    margin-right: 0;
}

@media (min-width: 992px) {
    /* By making the navbar wrap and setting the navbar-nav to the full width of the screen
  we can force the nav links onto a new line, making the links appear below the logo, 
  which mimics the layout of ASU's site. Since this is inside a media query that matches
  Bootstrap's large breakpoint, this doesn't affect the collapsed/mobile menu. */
    .navbar {
        flex-wrap: wrap;
    }

    .navbar-nav {
        width: 100vw;
        justify-content: center;
    }

    /* Add some extra padding to the links so they look like those on ASU's site */
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 1rem 1.25rem;
    }
}

/* 
 ***************************
 * Activity feed navigation
 ***************************
 */

.nav-pills > a.nav-link.active {
    background-color: var(--asu-maroon);
}

/* 
 ***************************
 * Page footer
 ***************************
 */

/* Make footer background color match ASU site's footer */
#Template_Footer {
    padding: 1rem;
    background-color: #1e1e1e;
}

    /* Make footer links match style of links in ASU site's footer */
    #Template_Footer a {
        color: #ccc;
        border-bottom: 1px dotted #ccc;
    }

        #Template_Footer a:hover {
            text-decoration: none;
            color: #fff;
            border-color: #fff;
        }

    /* Lighten eeds logo to account for darker background */
    #Template_Footer img {
        filter: invert(1);
    }

/* 
 ***************************
 * Badges
 ***************************
 */

.badge-success {
    background-color: var(--asu-maroon);
    font-weight: normal;
}

/* 
 ***************************
 * Clickable DIVs
 ***************************
 */

.nav_hover {
    border: solid 2px white;
}

    .nav_hover:hover {
        border: solid 2px var(--asu-maroon);
        cursor: pointer;
    }

/* 
 ***************************
 * Description DIVs
 ***************************
 */

#description_content {
    background-position: left;
    background-repeat: no-repeat;
    padding-left: 20px;
    min-height: 400px;
    position: absolute;
    top: 300px;
    left: 310px;
}

.div_description {
    background-color: white; /* White */
    width: 580px;
    display: none;
}

.description_content_hover {
    background-color: white;
    background-image: none;
    border-left: 2px solid var(--asu-maroon);
}

.link_content_hover {
    margin-top: -2px;
    margin-left: -2px;
    padding-bottom: 0px;
    background-color: white;
    border-top: 2px solid var(--asu-maroon);
    border-left: 2px solid var(--asu-maroon);
    border-bottom: 2px solid var(--asu-maroon);
}

.info_nav_hover:hover {
    border: solid 2px var(--asu-maroon);
    border-right: none;
    cursor: pointer;
}

a.main_link {
    background: none;
    color: black;
    border: none;
}

/* 
 ***************************
 * CME Calendar
 ***************************
 */

#calendar_header_table {
    border-collapse: collapse;
    table-layout: fixed;
    border-color: var(--asu-maroon);
}

    #calendar_header_table td {
        border-color: var(--asu-maroon);
        color: white;
        background-color: var(--asu-maroon);
    }

    #calendar_header_table a {
        color: white;
        background-image: none;
    }

.symposium_calendar_item {
    background-color: #e3d7de;
}

.presentation:hover {
    cursor: pointer;
    color: var(--asu-red);
    border-color: var(--asu-red);
}

/* 
 ***************************
 * Timeline
 ***************************
 */

#steps_div {
    margin-top: 10px;
    margin-left: 10px;
    clear: both;
}

    #steps_div .step {
        float: left;
        width: 120px;
        text-align: center;
        vertical-align: top;
    }

    #steps_div #title {
        font-size: 16px;
        font-weight: bold;
        text-align: left;
        padding-bottom: 4px;
        color: var(--asu-maroon);
    }

.page_subtitle {
    color: black;
}

#steps_div .step .text {
    width: 90%;
    color: #cccccc; /*Silver_Grey*/
    margin: 0 auto;
}

#steps_div .step .box {
    width: 90%;
    height: 7px;
    background-color: #cccccc; /*Silver_Grey*/
    margin: 0 auto;
}

#steps_div .step.on .box {
    background-color: var(--asu-maroon);
}

#steps_div .step.on .text {
    color: var(--asu-maroon);
    font-weight: bold;
}

/* 
 ***************************
 * Timeline
 ***************************
 */

#minitabs {
    margin: 0;
    padding: 0 0 20px 10px;
    border-bottom: 1px solid #ccc; /* Light_Grey */
}

    #minitabs li {
        margin: 0;
        padding: 0;
        display: inline;
        list-style-type: none;
    }

    #minitabs a:link,
    #minitabs a:visited {
        float: left;
        line-height: 14px;
        font-weight: bold;
        margin: 0 4px 2px 10px;
        padding-bottom: 2px;
        text-decoration: none;
        color: #ccc; /* Light_Grey */
    }

    #minitabs a.active:link,
    #minitabs a.active:visited,
    #minitabs a:hover {
        color: var(--asu-red);
        border-bottom: 4px solid var(--asu-red);
        padding-bottom: 2px;
        background: #fff;
    }

/* 
 ***************************
 * Portal Mini-SubTabs Navigation
 * (used when there are multiple sponsors)
 ***************************
 */

.minisubtabs_container {
    border: 1px solid var(--asu-maroon);
    padding: 20px;
    margin: 10px 0 10px 0;
    background: #fff;
}

#minisubtabs {
    margin: 0;
    padding: 15px 0px 0px 0px;
}

    #minisubtabs li {
        margin: 0;
        padding: 0;
        display: inline;
        list-style-type: none;
    }

    #minisubtabs a:link,
    #minisubtabs a:visited {
        float: right;
        line-height: 14px;
        font-weight: bold;
        margin: 0 10px 4px 10px;
        padding-bottom: 2px;
        text-decoration: none;
        color: #ccc; /* Light_Grey */
    }

    #minisubtabs a.active:link,
    #minisubtabs a.active:visited,
    #minisubtabs a:hover {
        border-bottom: 4px solid var(--asu-red);
        padding-bottom: 2px;
        background: #fff;
        color: var(--asu-red);
    }

/* 
 ***************************
 * Portal structure
 ***************************
 */

.Imageless_Text {
    font-size: 20px;
}

#Organization_Logo_Area {
    font-size: 24px;
    margin-top: -30px;
    float: left;
}

#Organization_Address_Area {
    color: #808080; /* Medium_Grey */
    float: right;
}

.vr {
    background-image: url(../images/pixel_grey.jpg);
    background-position: top right;
    background-repeat: repeat-y;
}

/* 
 ***************************
 * Enduring materials page
 ***************************
 */

.Hoverable_Conference_Series {
    border: 2px solid #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

    .Hoverable_Conference_Series:hover {
        border: 2px solid var(--asu-maroon); /* Primary_Color: Mt_Carmel_Purple */
    }

/* 
 ***************************
 * Custom calendar nav
 ***************************
 */

.custom_calendar_button {
    padding: 5px;
    border-bottom: 2px solid #999999;
    font-weight: bold;
    color: #999999 !important;
    font-size: 14px;
    float: right;
    margin-right: 10px;
}

.selected_custom_calendar_button {
    padding: 5px;
    border-bottom: 2px solid var(--asu-maroon);
    font-weight: bold;
    color: var(--asu-maroon) !important;
    font-size: 14px;
    float: right;
    margin-right: 10px;
}

    .selected_custom_calendar_button:hover {
        text-decoration: none;
    }

.custom_calendar_button:hover {
    border-bottom: 2px solid var(--asu-maroon);
    font-weight: bold;
    color: var(--asu-maroon) !important;
    text-decoration: none;
}
