﻿.mega-menu-container {
    width: 90%;
    background: white;
    height: 40vh;
    position: absolute;
    left: 5%;
    right: 0;
    top: 100%;
    display: none;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .27);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

.mega-menu-container.show {
    display: flex;
}

    .mega-menu-container .mega-menu-column {
        width: 33%;
        padding: 10px;
        border-right: 1px solid #eeeeee;
        position: relative;
    }

    .mega-menu-container .mega-menu-column:nth-child(3) {
        border-right: none;
    }

        .mega-menu-container .mega-menu-column .mega-menu-column-inner {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            display: none;
            overflow-y: auto;
            height: 100%;
        }

            .mega-menu-container .mega-menu-column .mega-menu-column-inner.show {
                display: block;
            }

        .mega-menu-container .mega-menu-column .mega-menu-label {
            font-weight: bold;
            color: black;
            padding: 10px;
        }

            .mega-menu-container .mega-menu-column .mega-menu-label:hover {
                background: unset !important;
                cursor: unset;
            }

        .mega-menu-container .mega-menu-column .mega-menu-list {
            list-style-type: none;
            padding-left: 0;
            margin-top: 0;
        }

            .mega-menu-container .mega-menu-column .mega-menu-list li, .mega-menu-container .mega-menu-column .mega-menu-list li button {
                display: flex;
                align-items: center;
                justify-content: space-between;
                background: unset;
                width: 100%;
                text-align: left;
            }

                .mega-menu-container .mega-menu-column .mega-menu-list li button {
                    padding: 0; margin: 0;
                }

                .mega-menu-container .mega-menu-column .mega-menu-list li .dropdown-link {
                    padding: 10px;
                    width: 100%;
                    cursor: pointer;
                }        
        
        .mega-menu-container .mega-menu-column .mega-menu-list li .icon {
            position: relative;
            transform: rotate(-90deg);
            margin-right: 10px;
        }

            .mega-menu-container .mega-menu-column .mega-menu-list li:hover {
                background: #eeeeee;
            }            
            
            .mega-menu-container .mega-menu-column .mega-menu-list li.active {
                background: #eeeeee;
            }

    .mega-menu-container .dropdown-link:hover {
        background: unset;
    }

    .mega-menu-container .dropdown-link.w--current {
        background: unset;
        background-color: unset;
    }