/* Omnichannel Chat Widget CSS */

.omnichat-widget {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

/* Admin bar adjustment */
body.admin-bar .omnichat-container {
  bottom: calc(22px + var(--wp-admin--admin-bar--height, 0px));
}

@media (max-width: 768px) {
  body.admin-bar .omnichat-container {
    bottom: calc(32px + var(--wp-admin--admin-bar--height, 0px));
  }
}

.omnichat-widget * {
  box-sizing: border-box;
}

.omnichat-container {
  position: fixed;
  z-index: 99999;
  display: block;
  transform-origin: calc(100% + 40px) calc(100% + 40px);
  /* Default desktop positioning */
  right: 47px;
  bottom: 22px;
}

/* Welcome Message */
.omnichat-welcome {
  position: absolute;
  bottom: 80px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 16px 20px;
  min-width: 260px;
  max-width: 320px;
  opacity: 0;
  transform: scale(0.9) translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.omnichat-welcome.show {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

.omnichat-welcome.right {
  right: 0;
}

.omnichat-welcome.left {
  left: 0;
}

.omnichat-welcome-close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.omnichat-welcome-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.omnichat-welcome-text {
  margin-right: 20px;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

/* Main Button */
.omnichat-main-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  background: linear-gradient(135deg, #448AFF 0%, #2979FF 100%);
}

.omnichat-main-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(68, 138, 255, 0.4);
}

.omnichat-main-button:active {
  transform: scale(0.95);
}

.omnichat-icon-open,
.omnichat-icon-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.omnichat-icon-close {
  opacity: 0;
  transform: rotate(-180deg) scale(0.3);
}

.omnichat-widget.active .omnichat-icon-open {
  opacity: 0;
  transform: rotate(180deg) scale(0.3);
}

.omnichat-widget.active .omnichat-icon-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* Caption */
.omnichat-caption {
  position: absolute;
  left: -10px;
  transform: translateX(-100%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.omnichat-main-button:hover .omnichat-caption {
  opacity: 1;
}

/* Channel Items */
.omnichat-channels {
  position: absolute;
  bottom: 80px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.omnichat-widget.active .omnichat-channels {
  opacity: 1;
  pointer-events: all;
}

.omnichat-channel-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s ease;
}

.omnichat-widget.active .omnichat-channel-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.omnichat-channel-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
}

.omnichat-channel-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.omnichat-channel-button svg {
  z-index: 1;
  position: relative;
}

/* Instagram gradient background */
.omnichat-instagram {
  background: linear-gradient(45deg, #FFD521 0%, #F30005 50%, #B900B4 100%);
}

/* Channel Caption */
.omnichat-channel-caption {
  position: absolute;
  left: -10px;
  transform: translateX(-100%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.omnichat-channel-item:hover .omnichat-channel-caption {
  opacity: 1;
}

/* Branding */
.omnichat-branding {
  position: absolute;
  bottom: -30px;
  right: 0;
  font-size: 11px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.omnichat-branding:hover {
  opacity: 1;
}

.omnichat-branding a {
  color: #666;
  text-decoration: none;
}

.omnichat-branding a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(68, 138, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(68, 138, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(68, 138, 255, 0);
  }
}

.omnichat-main-button.pulse {
  animation: pulse 2s infinite;
}

/* Tablet */
@media (max-width: 1024px) {
  .omnichat-container {
    right: 40px;
    bottom: 25px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .omnichat-container {
    transform-origin: calc(100% + 20px) calc(100% + 20px);
    right: 20px;
    bottom: 32px;
  }
  
  .omnichat-main-button,
  .omnichat-channel-button {
    width: 50px;
    height: 50px;
  }
  
  .omnichat-main-button svg,
  .omnichat-channel-button svg {
    width: 28px;
    height: 28px;
  }
  
  .omnichat-welcome {
    max-width: 280px;
    bottom: 70px;
  }
  
  .omnichat-channels {
    bottom: 70px;
  }
  
  .omnichat-caption,
  .omnichat-channel-caption {
    font-size: 12px;
    padding: 4px 8px;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .omnichat-welcome {
    background: #1e1e1e;
    color: #e0e0e0;
  }
  
  .omnichat-welcome-text {
    color: #e0e0e0;
  }
  
  .omnichat-welcome-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .omnichat-branding a {
    color: #999;
  }
}

/* RTL Support */
.rtl .omnichat-container.right {
  right: auto;
  left: 40px;
  transform-origin: calc(0% - 40px) calc(100% + 40px);
}

.rtl .omnichat-welcome.right {
  right: auto;
  left: 0;
}

.rtl .omnichat-caption,
.rtl .omnichat-channel-caption {
  left: auto;
  right: -10px;
  transform: translateX(100%);
}

.rtl .omnichat-channels {
  right: auto;
  left: 0;
}

.rtl .omnichat-channel-item {
  justify-content: flex-start;
  flex-direction: row-reverse;
}

/* Bird Chat Widget Compatibility */
/* Ensure our widget doesn't overlap with Bird's widget */
.omnichat-widget {
  z-index: 999998; /* Just below Bird's typical z-index */
}

/* When Bird widget is present, adjust our position */
body:has([data-bird-chat-widget]) .omnichat-container.right,
body:has(.bird-chat-widget) .omnichat-container.right,
body:has(iframe[src*="bird.com"]) .omnichat-container.right {
  bottom: 120px !important; /* Move up to avoid Bird widget */
}

/* Alignment with other fixed position elements */
.omnichat-container {
  /* Ensure consistent spacing with other icons */
  transition: all 0.3s ease;
}

/* When multiple fixed position widgets exist */
body:has(.header-whatsapp) .omnichat-container {
  /* Adjust positioning to stack properly with WhatsApp icon */
  bottom: calc(22px + 80px); /* Base position + WhatsApp icon height + spacing */
}

@media (max-width: 768px) {
  body:has(.header-whatsapp) .omnichat-container {
    bottom: calc(32px + 65px);
  }
}

body:has([data-bird-chat-widget]) .omnichat-container.left,
body:has(.bird-chat-widget) .omnichat-container.left {
  right: 40px !important; /* Move to opposite side if Bird is on left */
  left: auto !important;
}

/* Hide our widget when Bird chat is open */
.bird-chat-open .omnichat-widget,
[data-bird-chat-open="true"] .omnichat-widget,
body:has(.bird-chat-open) .omnichat-widget {
  opacity: 0.3;
  pointer-events: none;
}

/* Ensure Bird widget stays hidden when configured */
.omnichat-hide-bird [data-bird-chat-widget],
.omnichat-hide-bird .bird-chat-widget,
.omnichat-hide-bird .bird-widget-launcher,
.omnichat-hide-bird .bird-chat-button,
.omnichat-hide-bird iframe[src*="bird.com"]:not(.bird-chat-frame) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Conversation History Styles */
.bird-chat-history {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.bird-chat-history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.bird-chat-history-header h4 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.bird-chat-history-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.bird-chat-new-conversation {
  background: #007cba;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.bird-chat-new-conversation:hover {
  background: #005a87;
}

.bird-chat-history-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bird-chat-history-item {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.bird-chat-history-item:hover {
  background: #e8e8e8;
}

.bird-chat-history-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.bird-chat-history-item-name {
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.bird-chat-history-item-date {
  font-size: 12px;
  color: #666;
}

.bird-chat-history-item-status {
  font-size: 12px;
  color: #888;
}

.bird-chat-back-btn {
  background: #f0f0f0;
  color: #333;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.bird-chat-back-btn:hover {
  background: #e0e0e0;
}

/* ======================
   UI Enhancements
   ====================== */

/* Typing Indicator */
.omnichat-typing-indicator,
#bird-typing-indicator {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  margin: 4px 0;
  animation: fadeIn 0.3s ease-in-out;
}

.omnichat-typing-dots {
  display: flex;
  gap: 4px;
}

.omnichat-typing-dot {
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
}

.omnichat-typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.omnichat-typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typingDot {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Notification Badge */
.omnichat-notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4444;
  color: white;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
  }
}

/* Skeleton Loading */
.omnichat-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonLoading 1.5s infinite;
  border-radius: 4px;
}

.omnichat-skeleton-text {
  height: 14px;
  margin: 8px 0;
  border-radius: 4px;
}

.omnichat-skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

@keyframes skeletonLoading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Smooth Reveal Animations - Professional entrance */
.omnichat-fade-in {
  animation: elegantFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

@keyframes elegantFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.omnichat-slide-up {
  animation: elegantSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform: translateY(15px);
  opacity: 0;
}

@keyframes elegantSlideUp {
  0% {
    transform: translateY(15px) scale(0.98);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Business Hours Indicator */
.omnichat-business-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

.omnichat-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
}

.omnichat-status-dot.offline {
  background: #999;
  box-shadow: 0 0 0 2px rgba(153, 153, 153, 0.3);
}

/* Sound Toggle */
.omnichat-sound-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.omnichat-sound-toggle:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.omnichat-sound-toggle.muted {
  background: rgba(255, 0, 0, 0.1);
}

/* Minimize/Maximize Animations - Professional smooth transitions */
.omnichat-widget.minimizing .omnichat-channels {
  animation: smoothClose 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.omnichat-widget.maximizing .omnichat-channels {
  animation: smoothOpen 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes smoothClose {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
}

@keyframes smoothOpen {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Glass Effect for Premium Feel */
.omnichat-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Ripple Effect */
.omnichat-ripple {
  position: relative;
  overflow: hidden;
}

.omnichat-ripple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.omnichat-ripple:active::after {
  width: 300px;
  height: 300px;
}

/* Hover Lift Effect */
.omnichat-channel-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.omnichat-channel-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ======================
   Mobile Specific Styles
   ====================== */

/* Mobile Detection */
@media (max-width: 768px) {
  .omnichat-widget {
    --mobile-safe-area-bottom: env(safe-area-inset-bottom, 0px);
    --mobile-safe-area-left: env(safe-area-inset-left, 0px);
    --mobile-safe-area-right: env(safe-area-inset-right, 0px);
  }
}

/* Mobile Button Sizes */
.omnichat-widget[data-mobile-button-size="large"] .omnichat-main-button {
  width: 72px;
  height: 72px;
}

.omnichat-widget[data-mobile-button-size="extra_large"] .omnichat-main-button {
  width: 80px;
  height: 80px;
}

/* Small Mobile */
@media (max-width: 480px) {
  .omnichat-container {
    right: 15px;
    bottom: 20px;
  }
}

/* Mobile Base Styles */
.omnichat-widget.omnichat-mobile {
  /* Larger touch targets */
  --min-touch-target: 48px;
}

.omnichat-widget.omnichat-mobile .omnichat-container {
  /* Adjust for safe areas on notched devices */
  margin-bottom: var(--mobile-safe-area-bottom);
}

.omnichat-widget.omnichat-mobile.left .omnichat-container {
  margin-left: var(--mobile-safe-area-left);
}

.omnichat-widget.omnichat-mobile.right .omnichat-container {
  margin-right: var(--mobile-safe-area-right);
}

/* Mobile Bottom Bar Layout */
.omnichat-widget.omnichat-mobile-bottom-bar .omnichat-container {
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100%;
  margin: 0;
  padding: 12px var(--mobile-safe-area-left) calc(12px + var(--mobile-safe-area-bottom)) var(--mobile-safe-area-right);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px 20px 0 0;
  transform-origin: center bottom;
}

.omnichat-widget.omnichat-mobile-bottom-bar .omnichat-main-button {
  width: 100%;
  max-width: 280px;
  height: 56px;
  border-radius: 28px;
  margin: 0 auto;
}

.omnichat-widget.omnichat-mobile-bottom-bar .omnichat-welcome {
  bottom: 76px;
  left: 16px;
  right: 16px;
  max-width: none;
}

/* Mobile Fullscreen Mode */
.omnichat-widget.omnichat-mobile-fullscreen.active .omnichat-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.5);
  padding: 0;
}

.omnichat-widget.omnichat-mobile-fullscreen.active .omnichat-channels {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 24px 16px calc(24px + var(--mobile-safe-area-bottom)) 16px;
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.omnichat-widget.omnichat-mobile-fullscreen.active .omnichat-main-button {
  display: none;
}

/* Swipe indicator for fullscreen mode */
.omnichat-widget.omnichat-mobile-fullscreen.active .omnichat-channels::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}

/* Mobile Channel Grid */
.omnichat-widget.omnichat-mobile .omnichat-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 16px;
  padding: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.omnichat-widget.omnichat-mobile .omnichat-channel-item {
  position: static;
  opacity: 1;
  transform: none;
  margin: 0;
}

.omnichat-widget.omnichat-mobile.active .omnichat-channel-item {
  animation: mobileFadeIn 0.3s ease forwards;
}

@keyframes mobileFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile Touch Feedback */
.omnichat-widget.omnichat-mobile .omnichat-channel-item:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

.omnichat-widget.omnichat-mobile .omnichat-main-button:active {
  transform: scale(0.95);
}

/* Mobile Welcome Message */
.omnichat-widget.omnichat-mobile .omnichat-welcome {
  font-size: 16px;
  padding: 14px 18px;
  bottom: 76px;
  max-width: calc(100vw - 32px);
}

/* Landscape Orientation Adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .omnichat-widget.omnichat-mobile-fullscreen.active .omnichat-channels {
    max-height: 90vh;
    padding-top: 16px;
  }
  
  .omnichat-widget.omnichat-mobile .omnichat-channels {
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
    gap: 12px;
    padding: 16px;
  }
}

/* Prevent body scroll when widget is open on mobile */
body.omnichat-mobile-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Accessibility improvements for mobile */
.omnichat-widget.omnichat-mobile button,
.omnichat-widget.omnichat-mobile a {
  min-width: var(--min-touch-target);
  min-height: var(--min-touch-target);
}

/* Animation adjustments for mobile */
.omnichat-widget.omnichat-mobile,
.omnichat-widget.omnichat-mobile * {
  /* Reduce motion for better performance */
  animation-duration: 0.2s !important;
  transition-duration: 0.2s !important;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .omnichat-widget.omnichat-mobile,
  .omnichat-widget.omnichat-mobile * {
    animation: none !important;
    transition: none !important;
  }
}