
/* =========================================================
   The Feather Guy - Mobile Menu Fix
   Mobile only. Desktop layout/design stays unchanged.
   ========================================================= */

.tfg-mobile-menu-button {
    display: none;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .tfg-mobile-menu-button {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: #111111;
        color: #ffffff;
        border: 0;
        padding: 14px 18px;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: .05em;
        text-transform: uppercase;
        cursor: pointer;
        z-index: 99999;
        position: relative;
    }

    .tfg-mobile-menu-button span {
        color: #ffffff !important;
    }

    .tfg-mobile-bars {
        display: inline-block;
        width: 26px;
        height: 20px;
        position: relative;
        margin-left: 12px;
    }

    .tfg-mobile-bars:before,
    .tfg-mobile-bars:after,
    .tfg-mobile-bars span {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        width: 26px;
        height: 3px;
        background: #d8b46a;
        border-radius: 2px;
    }

    .tfg-mobile-bars:before {
        top: 0;
    }

    .tfg-mobile-bars span {
        top: 8px;
    }

    .tfg-mobile-bars:after {
        top: 16px;
    }

    body.tfg-mobile-menu-open .tfg-mobile-bars:before {
        transform: rotate(45deg);
        top: 8px;
    }

    body.tfg-mobile-menu-open .tfg-mobile-bars span {
        opacity: 0;
    }

    body.tfg-mobile-menu-open .tfg-mobile-bars:after {
        transform: rotate(-45deg);
        top: 8px;
    }

    .tfg-mobile-target-menu {
        display: none !important;
        width: 100% !important;
        background: #111111 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
    }

    body.tfg-mobile-menu-open .tfg-mobile-target-menu {
        display: block !important;
        overflow: visible !important;
    }

    .tfg-mobile-target-menu ul,
    .tfg-mobile-target-menu ol {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        background: #111111 !important;
    }

    .tfg-mobile-target-menu li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid rgba(216,180,106,.25) !important;
        float: none !important;
    }

    .tfg-mobile-target-menu a {
        display: block !important;
        width: 100% !important;
        padding: 14px 20px !important;
        color: #ffffff !important;
        background: #111111 !important;
        text-decoration: none !important;
        text-align: left !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: .04em !important;
        line-height: 1.35 !important;
        box-sizing: border-box !important;
    }

    .tfg-mobile-target-menu a:hover,
    .tfg-mobile-target-menu a:focus {
        background: rgba(216,180,106,.16) !important;
        color: #f1d99f !important;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }
}
