﻿/*********** Table of Contents ***********
    1.0: Generic Tabs
*****************************************/
.generictab-bar {
    box-shadow: 0px 1px 1px #0000006b !important;
    font-weight: 600
}
.generictab-bar .navbar-nav {
    font-size: var(--font-size-body);
}
.navbar-dark .navbar-toggler {
    color: initial;
}
.nav-item .active {
    background: #ffffff40;
    text-underline-position: under;
    transition: 0.5s;
}

.short-active {
    background: #ffffff40;
    transition: 0.5s;
    text-underline-position: under;
}
.nav-item .active {
    background: #00000012;
    text-underline-position: under;
    text-decoration: underline;
}
.generictab-bar button.navbar-toggler{
    width: 100%;
    text-align: left;
    background: transparent;
}

.notification-banner {
    height: 40px;
    width: 100%;
    position: absolute;
    z-index: 20;
    display: flex;
    filter: opacity(0.95);
}

.notification-banner .view-button {
    background: #ffffff26;
    color: white;
    border: none;
    text-decoration: underline;
    height: auto;
    font-weight: 400;
    border-radius: 4px;
}

.notification-banner .dismiss-button {
    background: #ffffff26;
    color: white;
    border: 1px solid white;
    height: 100%;
    font-weight: 400;
    border-radius: 4px;
}

.notification-banner .dismiss-button:hover, .notification-banner .view-button:hover {
    border: 1px solid white;
}



#close-flag {
    z-index: 100 !important;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    width: 50px;
    height: 50px;
    background-color: var(--background-primary-accent-color);
    position: fixed;
    color: white;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

    #close-flag.active {
        opacity: 1;
    }

    #close-flag > div {
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

        #close-flag > div.arrow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translateY(-50%) translateX(-50%);
            opacity: 1;
        }

        #close-flag > div.text {
            font-size: 5px;
            font-size: 0.5rem;
            line-height: 10px;
            text-transform: uppercase;
            font-weight: 900;
            font-family: "Open Sans", sans-serif;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateY(50%) translateX(-50%);
            opacity: 0;
            margin-top: 1px;
        }

    #close-flag:hover > div.arrow {
        transform: translateY(-150%) translateX(-50%);
        opacity: 0;
    }

    #close-flag:hover > div.text {
        transform: translateY(-50%) translateX(-50%);
        opacity: 1;
    }

    #close-flag.openMenu, .generictab-bar .openMenu {
        margin-left: 300px !important;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }