

/* bigger screens mega settings*/
    
.fl-builder-content:not(.fl-builder-content-editing) [id^="mega-"] {
    visibility: hidden;
    display: none;
    opacity: 0;
    position: fixed;
    top:150px;
    left: 0;
    right: 0;
    width: 100%;
}
.showing-mega-menu .fl-builder-content:not(.fl-builder-content-editing)  .mega-absolute[id^="mega-"]{
    position: absolute;
}    



.showing-mega-menu .fl-builder-content:not(.fl-builder-content-editing) [id^="mega-"] {
    z-index: 100;
    -webkit-transition: all 100ms ease-in-out;
    -moz-transition: all 100ms ease-in-out;
    -ms-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;

}
.showing-mega-menu .show-mega{
    visibility: visible !important;
    display: block !important;
    z-index:101 !important;
}

.has-mega-menu a{
    padding-right: 28px !important;
}


/* small screens mega settings*/

.show-mega-mobile [id^="mega-"]{
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
    position: static !important;
}

.show-mega-mobile .mega-mobile-container{
    visibility: hidden;
    display: none;
    opacity: 0;
    position: fixed;
    top:150px;
    left: 0;
    bottom: 0;
    overflow-y: scroll;
    width: 100%;
    z-index: 100;
}

.show-mega-mobile{
    overflow: hidden;
}

.show-mega-mobile .mega-mobile-container{
    visibility: visible !important;
    opacity: 1 !important;
    display: block;
}
    
