@media (max-width: 991.98px) {
			.iframe{
				width:auto!important;
			}
            .app-bottom-nav {
                position: fixed;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 1050;
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                gap: 4px;
                padding: 10px 12px calc(16px + env(safe-area-inset-bottom));
                background: rgba(255, 255, 255, 0.96);
                border-top: 1px solid rgba(16, 16, 16, 0.08);
                backdrop-filter: blur(14px);
                -webkit-backdrop-filter: blur(14px);
            }

            .app-bottom-nav__link {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 4px;
                color: #101010;
                font-size: 11px;
                line-height: 1;
                font-weight: 600;
                text-decoration: none;
            }

            .app-bottom-nav__icon {
                width: 22px;
                height: 22px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            body {
                padding-bottom: 86px;
            }
        }
		.app-bottom-nav__link:hover{
			color: #ffffff !important;
		}
        @media (min-width: 992px) {
            .app-bottom-nav {
                display: none;
            }
        }