/*
Theme Name: Divi Child
Description: Mobile Menu Styles
Version: 1.0.1
Author: WebTecs Inc.
*/

/* Global Menu */
.wt-global-menu {
    position: relative;
    height: 75px;
}

.wt-global-menu img {
    width: 200px;
    padding: 4px;
}

.wt-global-menu .bellows .bellows-nav .bellows-target {
    color: var(--wt-color-primary-25-shade);
}
.bellows {
    margin: 50px 0;}
.wt-global-menu-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  background:white;
    border: none;
    font-size: 24px;
    cursor: pointer;
   
}

.wt-global-menu-popup {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 1000;
    overflow: scroll;
    transition: right 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.wt-global-menu-popup.show {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.wt-global-menu-popup.hidden {
    right: -100%;
    opacity: 0;
    visibility: hidden;
}

.wt-global-menu-popup .menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1101;
}

@media (max-width: 768px) {
    .wt-global-menu-popup {
        width: 100%;
    }
}

/* Local Menu */
.wt-local-menu-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    background: var(--wt-color-primary-25-shade);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    overflow:scroll;
    padding-bottom: 48px;
}

.wt-local-menu-popup.show {
    visibility: visible;
    opacity: 1;
}

.wt-local-menu-popup.hidden {
    visibility: hidden;
    opacity: 0;
}

.wt-local-menu-popup .menu-close {
    position: fixed;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1101;
}

.wt-local-menu-popup .menu-close i {color:white;}

/* Floating Mobile Navigation */
.wt-mobile-float-nav {
    position: fixed;
    bottom: 0;
    background: var(--wt-color-primary-base);
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    height: 80px;
    align-items: center;
    text-align: center;
    z-index: 1200;
}

.bellows .bellows-nav .bellows-custom-content.bellows-custom-content-padded,
.bellows .bellows-nav .bellows-target,
.bellows .bellows-nav .bellows-target.bellows-target-w-image > .bellows-image.bellows-image-padded,
.bellows .bellows-nav .bellows-target.bellows-target-w-image > .bellows-target-text {
    color: white;
}

.wt-mobile-nav-column {
    width: 33%;
    flex: 1;
    color: white;
}

.wt-mobile-nav-column i {
    display: block;
}

.wt-mobile-float-nav a {
    color: white;
}

.hidden {
    display: none;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
    position: fixed;
    width: 100%;
}

.wt-local-menu-toggle,
.wt-mobile-nav-column {
    padding: 40px 0px 13px 0px;
    position: sticky;
    height: 88px;
}
