/*
Theme Name: Extendable Child
Template: extendable
Author: Andri
Description: Child theme based on Extendable 
Requires at least: 6.6
Tested up to: 6.8
Requires PHP: 7.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: extendable-child
Tags: one-column, custom-colors, custom-menu, custom-logo, e-commerce, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments

Extendable is a derivative work of the code from the
Twenty Twenty-Two WordPress Theme, which is licensed GPLv2.

Extendable WordPress Theme, (C) 2022 Extendify Inc.
Extendable therefore is also distributed under the terms of the GNU GPL.
*/


/* стилі для банера DEMO */
.demo-banner {
  position: fixed;
  top: 35px;
  left: -26px;
  width: 420px;
  height: 30px;
  background: #ffcc00;
  overflow: hidden;
  transform: rotate(-20deg);
  z-index: 9999;
  opacity: 0.9;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  border: 2px solid #000;
}

.demo-text {
  position: absolute;
  width: max-content;
  color: #000;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 18px;
  white-space: nowrap;
  animation: scrollText 8s linear infinite;
  text-shadow: 1px 1px 0 #000;
  letter-spacing: 2px;
}

/* Анімація руху тексту */
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
