/* Navbar container */
.megamenu-navbar {
    overflow: hidden;
    background-color: #fff;
    font-family: Arial;
}

.megamenu-navbar .active {
    background-color: #FF571D;
    color: #fff;
}

/* Links inside the navbar */
.megamenu-navbar a {
    float: left;
    font-size: 16px;
    color: black;
    text-align: center;
    padding: 40px 16px;
    padding: 40px 16px;
    text-decoration: none;
    font-weight: bold;
}

/* The dropdown container */
.megamenu-dropdown {
    float: left;
    overflow: hidden;
}

/* Dropdown button */
.megamenu-dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: black;
    padding: 40px 16px;
    background-color: inherit;
    font: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
    font-weight: bold;
}

/* Add a red background color to navbar links on hover */
.megamenu-navbar a:hover, .megamenu-dropdown:hover .dropbtn {
    background-color: #FF571D;
    color: #fff;
}

/* Dropdown content (hidden by default) */
.megamenu-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 60%;
    left: 465px;
    top: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Mega Menu header, if needed */
.megamenu-dropdown-content .header {
    background: red;
    padding: 16px;
    color: white;
}

.has-submenu > a::after {
    content: "\e901";
    font-family: "icomoon" !important;
    font-size: 12px;
    transform: translateY(-50%);
    right: 5px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    float: right;
    margin-top: 12px;
    margin-right: 10px;
}

.megamenu-submenu-item {
    display: block;
    width: 100%;
}

.megamenu-submenu-item  a {
    padding: 15px 15px;
}

.megamenu-submenu-item  a:hover {
    background: #FF571D;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

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

/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 33.33%;
    padding: 5px;
    background-color: #fff;
    /*height: 260px;*/
}

#submenu-container-1 {
    width: 66.66%;
}

.column-2x {
    /*float: left;*/
    width: 66.66%;
    padding: 5px;
    background-color: #fff;
    /*height: 260px;*/
}

.scrollable-column {
    overflow: scroll;
    min-height: 400px;
    height: 400px;
}

/* Style links inside the columns */
.column a {
    float: none;
    color: black;
    padding: 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a background color on hover */
.column a:hover {
    color: #fff;
    background: #FF571D;
}

/* Clear floats after the columns */
.megamenu-row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
        height: auto;
    }
}
