﻿#Meny
{
    display:block;
    width:100%;
    height:100%;
}

    #Meny .main-menu {
        margin: 0px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

.menu-item a {
    color: white;
    padding: 18px 30px;
    font-size: 16px;
    text-transform:uppercase;
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.menu-item {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.menu-item ol {
    display: none;
    position: absolute;
    background-color: rgba(0,0,0,0.5);
    min-width: 160px;
    padding-left: 0px;
    top: 42px;
    z-index: 10000;
}

/* Links inside the dropdown */
.menu-item ol a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    text-transform:uppercase;
    display: block;
}

    /* Change color of dropdown links on hover */
.menu-item ol a:hover {
    background-color: rgba(0,0,0,0.5);
}

/* Show the dropdown menu on hover */
.menu-item:hover ol {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.menu-item:hover .mainItem {
    background-color: rgba(0,0,0,0.5);
}

.sub-menu .menu-item 
{
    width:100%;
}

.mobmenu .sub-menu
{
    display:none;
}