.rw-menu-button {
    display: none;
}

@media only screen and (max-width: 980px) {

    body.rw-menu-responsive {

        .et-fixed-header#main-header {
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1) !important;
        }

        .mobile_menu_wrapper {
            position: fixed;
            inset: 0;
            opacity: 0;
            z-index: -1;
            display: flex !important;
            transition: all 0.3s ease;
            padding: 30px 60px;
            flex-direction: column;
            justify-content: center;
            align-items: end;
            gap: 15px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(9.5px);
            -webkit-backdrop-filter: blur(9.5px);

            .et_mobile_menu {
                border-radius: 10px;
                box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 10px;
                margin: 0;
                box-sizing: border-box;
                padding: 20px;
                border: none;
                position: relative;
                width: 100%;
                transition: all 0.3s ease;
                transform: translate(0, 20px);

                li {
                    a {
                        color: #000 !important;
                        font-weight: 600;
                        padding: 10px 20px;
                        text-align: center;
                        transition: all 0.3s ease;
                        font-size: 18px !important;

                        &:hover {
                            background-color: #f5f5f5;
                        }
                    }

                    &:last-child {
                        a {
                            border-bottom: none;
                        }
                    }
                }

                li.wpml-ls-item {
                    a:before {
                        display: none;
                    }

                    a {
                        font-size: 15px !important;
                    }
                }
            }

            .rw-menu-button-close {
                display: flex;
                background-color: #fff;
                border-radius: 50%;
                justify-content: center;
                align-items: center;
                width: 30px;
                height: 30px;
                font-size: 14px;
                box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                transform: translate(0, -10px);
            }
        }

        .mobile_menu_wrapper.show {
            opacity: 1;
            z-index: 6147483646;

            .rw-menu-button-close {
                transform: translate(0, 0);
            }

            .et_mobile_menu {
                transform: translate(0, 0);
            }
        }

        .rw-menu-button {
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 30px;
            height: 20px;
            justify-content: center;
            margin: 5px 0 0 0;

            &:after, &:before, span {
                content: "";
                height: 3px;
                width: 100%;
                background-color: #000;
            }
        }

        .logo_container {
            width: 60% !important;
        }

        #main-header .container {
            height: 75px;
        }

        span.et_close_search_field {
            background-color: #fff;
        }

        #et_mobile_nav_menu {
            display: flex !important;
            /*width: 65px;*/
            justify-content: flex-end;
        }

        #et-top-navigation {
            display: flex !important;
            gap: 20px;
            padding-top: 28px !important;

            .mobile_menu_bar {
                display: none !important;
            }

            #et_top_search {
                margin: 0;
            }
        }

    }


}