﻿/* ######### Drop Down ULs CSS ######### */


.ddsubmenustyle,
.ddsubmenustyle ul {
    /* Layout */
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 4px 0;
    list-style: none;
    min-width: 180px;
    /* Typography */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    /* Appearance */
    background-color: #ffffff;
    border: 1px solid rgba(23, 25, 74, 0.2);
    border-radius: 6px;
    /* Depth */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    /* Behaviour */
    visibility: hidden;
    z-index: 1000;
}
    .ddsubmenustyle li a {
        display: block;
        width: 190px; /* keeps original menu width */
        padding: 8px 14px;
        /* Typography */
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
        font-size: 13px;
        font-weight: 500;
        color: #17194A;
        text-decoration: none;
        white-space: nowrap;
        /* Flat background */
        background-color: #ffffff;
        /* Divider + hover space reservation */
        border-bottom: 2px solid transparent;
        /* Interaction */
        cursor: pointer;
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    }


        .ddsubmenustyle li a:hover {
            color: #17194A;
            background-color: rgba(23, 25, 74, 0.06);
            border-bottom: 2px solid #17194A
        }




/* ######### Neutral CSS  ######### */


.downarrowpointer {
    display: inline-block;
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #ffffff;
}

.rightarrowpointer{ /*CSS for "right" arrow image added to drop down menu items*/
position: absolute;
padding-top: 3px;
left: 100px;
border: 0;
}

.ddiframeshim{
position: absolute;
z-index: 500;
background: transparent;
border-width: 0;
width: 0;
height: 0;
display: block;
}