/****************************
vertical navigation box
****************************/
.vertical-nav {
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-sizing: border-box;
    color: #554275;
    display: block;
    margin-top: 95px;
    margin-left: -10px;
    max-width: 200px;
    padding: 5px;
    position: fixed;
    text-decoration: none;
    transition: background-color 0.3s;
    transition: left 0.3s;
    transition: transform 0.3s ease-out;
    width: 150px;
    z-index: 99;
    left: 10;
    top: 0;
}

.vertical-nav::after {
    content: '';
    position: absolute;
    top: 2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    box-shadow: 5px 0 5px rgba(110, 14, 165, 0.767),
                -5px 0 5px rgba(110, 14, 165, 0.767),
                0 5px 5px rgba(250, 163, 250, 0.767);
    z-index: -1;
    border-radius: 0 0 10px 10px;
    animation: strobe-border 6s infinite;
}

@keyframes strobe-border {
    0%, 100% { box-shadow: 5px 0 5px rgba(110, 14, 165, 0.767),
        -5px 0 5px rgba(110, 14, 165, 0.767),
        0 5px 5px rgba(250, 163, 250, 0.767);}
        
    50% { box-shadow: 5px 0 5px rgba(52, 33, 65, 0.767),
        -5px 0 5px rgba(52, 33, 65, 0.767),
        0 5px 5px rgba(52, 33, 65, 0.767); }
}

.nav-title {
    color: #554275;
    background-color: rgba(255, 255, 255, 0.7);
    background: url('/images/logos/logo-general.png') no-repeat center center;
    background-size: contain;
    position: sticky;
    top: 0;
    width: 152px;
    height: 100px;
    display: block;
    text-align: center;
    line-height: 100px;
    margin-left: -0.35rem;
    border-bottom: 2px solid #554275;
}
  
.nav-title::after {
    content: '';
    display: block;
    height: 2px;
    background-color: #554275;
    width: 100%;
    margin-top: 0.5rem;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    position: fixed;
    left: 202px;
    top: 120px;
    z-index: 1001;
    cursor: pointer;
    display: none;
    color: #8579b0;
    background-color: #da00ee;
}

@keyframes flash {
    0%, 100% { background-color: #e78df0; }
    50% { background-color: #a1ce9d; }
}

/****************************
unordered list
****************************/
.vertical-nav ul {
    list-style: none;
    padding: 0;
    margin-top: 0;
}

/****************************
unordered list items
****************************/
.vertical-nav li + li {
    margin-top: 0px;
}

/****************************
unordered list links
****************************/
.vertical-nav a {
    display: block;
    padding: 10px;
    color: #c98cd8;
    transition: background-color 0.3s;
    text-decoration:solid;
    border-radius: 10px 10px 10px 10px;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/****************************
unordered list links hovered
****************************/
.vertical-nav a:hover {
    background-color: #9ed3ff;
    border-radius: 10px 10px 10px 10px;
}

.flex-container-vert-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* padding-top: var(--nav-height); */
    margin-top: auto;
    max-height: 800px;
    height: 100%;
}



/****************************
VIEW PORT SIZE SPEICIFIC BELOW **************************** VIEW PORT SIZE SPEICIFIC BELOW **************************** VIEW PORT SIZE SPEICIFIC BELOW
****************************/


/****************************
resolution 1200px and above
****************************/
@media (min-width: 1200px) {
    .vertical-nav {
        position: fixed;
        left: calc((100% - 1200px) / 2);
    }
}

/* @media (min-width: 601px) and (max-width: 1199px) {
    .vertical-nav {
    }
} */

@media only screen and (max-width: 1199px) {
    #menu-toggle {
        width: 50px;
        display:inline;
        position: absolute;
        margin-left: -47px;
        margin-top: -10px;
        z-index: 1001;
        cursor: pointer;
        color: #9ed3ff;
        border-radius: 0px 10px 10px 0px;
        animation: flash 6s infinite;
    }
    .vertical-nav {
        position: fixed;
        left: -155px;
        transition: left 0.3s ease-out;
        border-radius: 10px 10px 10px 10px;
        box-shadow: 5px 5px 5px rgba(20, 20, 20, 0.767);
    }
    
    .vertical-nav::after {
        content: '';
        position: absolute;
        box-shadow: 0px 0 0px rgba(20, 20, 20, 0.767),
                    0px 0 0px rgba(20, 20, 20, 0.767),
                    0 0px 0px rgba(20, 20, 20, 0.767);
        z-index: -1;
        border-radius: 0 0 0px 0px;
        animation: none;
    }    
    
    .vertical-nav.menu-visible {
        left: 0;
    }

    .nav-title {
        margin-left: -0.55rem;
    }
    
}
