/* Extracted from functions.php. */
.sticky-app-buttons {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 10px;
            z-index: 999;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            border-radius: 5px;
            margin: 0 auto;
            width: 100%;
            max-width: 100%;
        }

        .sticky-app-buttons a {
            display: inline-flex;
            align-items: center;
            background-color: #fff;
            color: #333;
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .sticky-app-buttons img {
            height: 20px;
            margin-right: 8px;
        }

        .sticky-app-buttons .google-play {
            background-color: #160d31;
            color: #fff;
        }

        .sticky-app-buttons .app-store {
            background-color: #160d31;
            color: #fff;
        }

        .sticky-app-buttons .web-app {
            background-color: #160d31;
            color: #fff;
        }

        .sticky-app-buttons a:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        @media (min-width: 769px) {
            .sticky-app-buttons {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .sticky-app-buttons {
                bottom: 0;
                padding: 6px;
            }

            .sticky-app-buttons a {
                padding: 0;
                font-size: 12px;
            }

            .sticky-app-buttons img {
                height: 18px;
            }
        }

.sticky-app-buttons .gt-sticky-badge { display:block; width:142px; height:60px; margin:0; }
.sticky-app-buttons .close-sticky { position:absolute; top:-10px; right:5px; background:#fff; border:0; border-radius:50%; width:24px; height:24px; line-height:21px; text-align:center; cursor:pointer; box-shadow:0 2px 5px rgba(0,0,0,.2); font-size:23px; color:#22143e; }
