/* ================================================================================================================
General Styling (Changes pushed live on 30-mar-2021)
================================================================================================================ */

    /* ---------------------------------------------------
    General HTML Elements & Classes
    --------------------------------------------------- */

    html {
        scroll-behavior: smooth;
        height: 100%;
    }
    
    body {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .w-45 {
        width: 45%;
    }
    
    /* ---------------------------------------------------
    Generic Colours
    --------------------------------------------------- */
    
    .bg-lms-blue {
        background-color: #0168b1 !important;
        color: #fff !important;
    }
    
    .c-lms-blue {
        color: #0168b1 !important;
    }
    
    /* ---------------------------------------------------
    Scrollbar Styling
    --------------------------------------------------- */
    
    ::-webkit-scrollbar {
        display: initial;
        width: 16px;
        background-color: transparent;
    }
    
    ::-webkit-scrollbar-button {
        display: none;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #dadce0;
        background-clip: padding-box;
        border: 4px solid transparent;
        border-radius: 8px;
        box-shadow: none;
        min-height: 50px;
    }
    
    ::-webkit-scrollbar-track {
        background: none;
        border: none;
    }
    
    .no-scroll {
        overflow: hidden;
    }

/* ================================================================================================================
Header Styling
================================================================================================================ */

    header {
        width: 100%;
        height: 70px;
        position: fixed;
        display: flex;
        background-color: #fff;
        padding: 0 1.25rem;
        justify-content: space-between;
        align-items: center;
        z-index: 100;
    }
    
    /* ---------------------------------------------------
    Title Header Styling
    --------------------------------------------------- */
    
    #module-menu {
        display: none;
    }
    
    .button-menu {
        padding: 6px;
        border-radius: 50%;
        background-color: transparent;
        cursor: pointer;
        transition: all 200ms ease-in;
    }
    
    .button-menu:hover {
        background-color: rgb(238, 238, 238);
        background-color: rgba(33,33,33, 0.1);
        border-radius: 50%;
        padding: 6px;
    }
    
    .page-title {
        margin-left: 5%;
        margin-bottom: 0;
    }
    
    .page-title a,
    .page-title a:hover {
        display: flex;
        color: #212529;
        text-decoration: none;
        vertical-align: middle;
    }
    
    #desktop-search {
        width: 20%;
        margin-right: 5%;
    }

    /* ---------------------------------------------------
    Navigation Header Styling
    --------------------------------------------------- */

    .navigation {
        padding: 0;
        top: 70px;
        overflow: hidden;
        align-items: stretch;
        background-color: #0168b1;
        box-shadow: 0 5px 18px rgba(0, 0, 0, 0.19), 0 3px 6px rgba(0, 0, 0, 0.23);
        z-index: 100;
    }
    
    /* ---------------------------------------------------
    Desktop Navigation
    --------------------------------------------------- */

    #desktop-nav {
        width: 90%;
        margin: 0 5%;
        display: block;
        background-color: #0168b1;
        align-items: stretch;
        transition: all 300ms ease-in-out;
    }
    
    #desktop-nav .nav-link {
        position: relative;
        height: 70px;
        display: flex;
        flex-direction: column;
        text-align: center;
        font-size: 0.8rem;
        padding: 0.6rem;
        transition: all 300ms ease-in-out;
    }
    
    #desktop-nav .nav-link svg {
        display: block;
        width: 1.7rem;
        height: 1.7rem;
        margin: auto;
    }
    
    #desktop-nav .nav-link,
    #desktop-nav .nav-link svg g.module-icon {
        color: rgba(255, 255, 255, 0.6);
        stroke: rgba(255, 255, 255, 0.6);
        stroke-width: 3;
    }
    
    #desktop-nav .nav-link:hover,
    #desktop-nav .nav-link:hover svg g.module-icon,
    #desktop-nav .nav-link.active,
    #desktop-nav .nav-link.active svg g.module-icon {
        color: rgba(255, 255, 255, 1);
        stroke: rgba(255, 255, 255, 1);
    }

    #desktop-nav .nav-link:hover::after,
    #desktop-nav .nav-link.active::after {
        display: block;
        position: absolute;
        content: "";
        padding: 1.25px;
        width: 100%;
        left: 0;
        bottom: 0;
        background-color: #ffffff;
        animation-name: switchTabs;
        animation-duration: 400ms;
        animation-timing-function: ease-in-out;
    }

/* ================================================================================================================
Animations
================================================================================================================ */

    @keyframes button-gradien-in {
        
        0% {
            background-position: 0%;
        }
        
        50% {
            background-position: 50%;
        }
        
        100% {
            background-position: 77%;
        }
      
    }
    
    @keyframes button-gradien-out {
        
        0% {
            background-position: 77%;
        }
        
        50% {
            background-position: 50%;
        }
        
        100% {
            background-position: 0%;
        }
      
    }
    
    @keyframes switchTabs {
        
        0% {
            transform: scale(0);
        }
    
        100% {
            transform: scale(1);
        }
        
    }