:root {
    --ws-primary: #3a8bca;
    --ws-primary-dark: #2a6a9c;
    --ws-status-green: #58c83b;
}

body.scroll_block {
    overflow: hidden;
}

.nobr { white-space:nowrap!important; }

/* =========================================
   STYLE LIVE CHATU - WEB-SPEC
   ========================================= */
   #ws-chat-fab {
    position: fixed;
    bottom: 30px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ws-primary), #FFC66D);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(58, 139, 202, 0.4);
    border: none;
    z-index: 9998;
    outline: none;

    /* Zmiana tutaj: ujednolicamy transition */
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;

    /* --- ANTI-JITTER FIX (Wymuszenie akceleracji GPU) --- */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0); /* Inicjuje warstwę 3D przed hoverem */
    will-change: transform;
    /* ---------------------------------------------------- */
}

#ws-chat-fab:hover {
    /* Ważne: w hoverze również trzymamy translateZ(0) żeby nie zrzuciło go z GPU! */
    transform: scale(1.1) translateZ(0);
    color: white;
}
/* Fix dla samej ikony wewnątrz fab'a */
#ws-chat-fab i {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

#ws-chat-widget {
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: fixed;
    bottom: 105px;
    right: 40px;
    width: 360px;
    height: 600px;
    max-height: 70svh;
    background: white;
    border-radius: 16px;
    /* FIX JUMPING: Ramka jest tu zawsze, by zachować wymiary box-model. W świetle jest niewidoczna. */
    border: 1px solid transparent;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 9998;

    /* Zapobiega render-bugom i "skakaniu" ułamków pikseli podczas animacji skalowania */
    backface-visibility: hidden;
    will-change: transform, opacity;

    /* --- FANCY ANIMACJA DESKTOP --- */
    opacity: 0;
    /* ZMIANA ORIGINU: aby okno animowało się ze środka przycisku po prawej stronie */
    transform-origin: calc(100% - 30px) calc(100% - -15px);
    transform: scale(0.4) translateY(40px);
    pointer-events: none;

    /* ANIMACJA ZAMYKANIA (gdy klasa .ws-is-open jest usuwana) - szybka, "zasysa" w dół */
    transition: opacity 0.25s ease-in,
                transform 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045),
                background-color 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

#ws-chat-widget.ws-is-open {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;

    /* ANIMACJA OTWIERANIA (gdy klasa .ws-is-open jest dodawana) - sprężysta Apple-like */
    transition: opacity 0.3s ease-out,
                transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                background-color 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.ws-chat-header {
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-primary-dark));
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
    z-index: 100;
}

.ws-chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ws-chat-avatar {
    width: 42px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    background-color: white;
}

/* ANIMACJA PULSUJĄCEJ KROPKI ONLINE */
@keyframes ws-pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(88, 200, 59, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(88, 200, 59, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(88, 200, 59, 0); }
}

.ws-status-dot, .status-dot {
    background-color: var(--ws-status-green);
    border-radius: 50%;
    display: inline-block;
    animation: ws-pulse-dot 2s infinite;
}

.ws-chat-header .ws-status-dot {
    width: 10px;
    height: 10px;
    margin-right: 6px;
    border: 1px solid rgba(255,255,255,0.5); /* Zamiast box-shadow, żeby nie psuło pulsu */
}

/* Sekcja przycisków w headerze (Zamknij + Ustawienia) */
.ws-chat-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ws-chat-close-btn, .ws-chat-settings-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;

    /* FIX NA DRGANIA PRZY ROTACJI */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.ws-chat-settings-btn.is-active {
    opacity: 1;
    /* Trzymamy translateZ(0) podczas rotacji */
    transform: rotate(90deg) translateZ(0);
}
@media (hover: hover) {
  .ws-chat-settings-btn:hover {
      opacity: 1;
      /* Trzymamy translateZ(0) podczas rotacji */
      transform: rotate(90deg) translateZ(0);
  }
}

.ws-chat-settings-btn {
    font-size: 1.25rem;
}

.ws-chat-close-btn:hover { opacity: 1; }

.ws-chat-messages {
    flex: 1;
    /* Usunięcie buga białej linii: wciągamy kontener pod header (-1px) i dodajemy paddingu na górę, by tekst nie podjechał */
    margin-top: -1px;
    padding: 21px 20px 20px 20px;
    position: relative;
    z-index: 1;
    overflow-y: auto;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    transition: background-color 0.4s ease;
}

.ws-chat-messages::-webkit-scrollbar { width: 6px; }
.ws-chat-messages::-webkit-scrollbar-track { background: transparent; }
.ws-chat-messages::-webkit-scrollbar-thumb { background: #dee2e6; border-radius: 3px; }

.ws-msg-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
    word-wrap: break-word;
    animation: wsFadeInMsg 0.3s ease-out forwards;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;

    /* FIX NA SKAKANIE TEKSTU */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);

    /* Dodaj wygładzanie czcionek */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* USUNIĘTO: will-change: transform, opacity; (to ono powodowało przeskok tekstur po zakończeniu animacji) */
}

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

.ws-msg-ai {
    background-color: white;
    color: #212529;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.ws-msg-user {
    background-color: var(--ws-primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 8px rgba(58, 139, 202, 0.2);
    /* Usunięcie buga z białą otoczką - zmiana "transparent" na var(--ws-primary) by zachować wymiary, ale wyeliminować przenikanie tła */
    border: 1px solid var(--ws-primary);
}

.ws-options-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    margin-top: 5px;
    animation: wsFadeInMsg 0.5s ease-out forwards;
    align-self: flex-end;
    width: 95%;
}

.ws-bot-option-btn {
    background: white;
    border: 1px solid var(--ws-primary);
    color: var(--ws-primary);
    padding: 10px 14px;
    border-radius: 33px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-align: right;
    box-shadow: 0 2px 4px rgba(58,139,202,0.05);

    /* IDEALNY FIX NA TEKST I RAMKĘ */
    will-change: box-shadow;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

@media (hover: hover) {
  .ws-bot-option-btn:hover {
      background: var(--ws-primary);
      color: white;
      /* -2px całkowicie eliminuje problem rozmazywania ramek na Windowsie przy ułamkowym skalowaniu */
      box-shadow: 0 5px 12px rgba(58,139,202,0.15);
  }
  .ws-bot-option-btn:active {
      background: var(--ws-primary);
      color: white;
      box-shadow: 0 2px 4px rgba(58,139,202,0.15);
  }
}

.ws-typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 2px;
}

.ws-typing-indicator span {
    display: block;
    width: 6px;
    height: 6px;
    background-color: #adb5bd;
    border-radius: 50%;
    animation: wsTypingDots 1.4s infinite ease-in-out both;
}

.ws-typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.ws-typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

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

.ws-chat-footer-branding {
    text-align: center;
    padding: 10px;
    background: white;
    font-size: 0.75rem;
    color: #adb5bd;
    border-top: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
    position: relative;
    z-index: 100;
}

.ws-chat-footer-branding img {
    height: 20px;
    opacity: 1;
    vertical-align: middle;
    transition: filter 0.4s ease;
}

/* -------------------------------------------------------------
   PERFEKCYJNE LISTY Z IKONAMI (Cennik & Kontakt)
   ------------------------------------------------------------- */
.ws-list-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 12px;
}

.ws-list-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.ws-list-icon {
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1.5;
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-list-text {
    flex-grow: 1;
    line-height: 1.5;
    word-break: break-word;
    margin: 0;
    transition: color 0.4s ease;
}

@media (max-width: 576px) {
    #ws-chat-widget {
        width: 100vw;
        /* Zmiana: Używamy dynamicznych jednostek i 100% wysokości bazowej */
        height: 100%;
        height: 100dvh;
        max-height: 100dvh;

        /* Zmiana: Przyklejamy do góry zamiast do dołu! */
        top: 0;
        bottom: auto;
        left: 0;

        border-radius: 0;
        z-index: 9999999;

        transform-origin: center bottom;
        transform: translateY(40px) scale(0.96);
        opacity: 0;
        pointer-events: none;

        transition: opacity 0.25s cubic-bezier(0.4, 0, 1, 1),
                    transform 0.3s cubic-bezier(0.4, 0, 1, 1),
                    background-color 0.4s ease,
                    border-color 0.4s ease,
                    box-shadow 0.4s ease;
    }

    /* Reszta pozostaje bez zmian... */
    #ws-chat-widget.ws-is-open {
        transform: translateY(0) scale(1);
        opacity: 1;
        pointer-events: auto;
        transition: opacity 0.35s cubic-bezier(0, 0, 0.2, 1),
                    transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.05),
                    background-color 0.4s ease,
                    border-color 0.4s ease,
                    box-shadow 0.4s ease;
    }

    #ws-chat-fab {
        bottom: 20px;
        right: 20px;
        transform: scale(0.9);
    }
}

/* =========================================
   FANCY PANEL USTAWIEŃ CZATU
   ========================================= */
   .ws-chat-close-btn, .ws-chat-settings-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    /* Zmiana: wydłużamy czas animacji samej ikony (np. kręcenia się) na 0.6s */
    transition: all 0.6s ease;
    padding: 0;
    outline: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.ws-settings-panel {
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    background: white;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #f1f1f1;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    /* Zmiana: zwalniamy animację wejścia/wyjścia (z 0.3s na 0.6s i łagodniejszy ease) */
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s ease, border-color 0.4s ease;
    color: #2e2e2e;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform, opacity;
    transform: translateY(-10px) scale(0.95) translateZ(0);
}

.ws-settings-panel.is-open {
    opacity: 1;
    pointer-events: auto;

    /* --- DODANE: Utrzymanie GPU przy otwartym panelu --- */
    transform: translateY(0) scale(1) translateZ(0);
}

.ws-settings-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #aebacf;
    transition: color 0.4s ease;
}

.ws-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}
.ws-setting-row:last-child {
    margin-bottom: 0;
}

/* Fancy Toggle Switch (iOS Style) */
.ws-toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}
.ws-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.ws-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #d1d7dd;
    transition: .4s;
    border-radius: 24px;
}
.ws-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.ws-toggle-switch input:checked + .ws-toggle-slider {
    background-color: var(--ws-status-green);
}
.ws-toggle-switch input:checked + .ws-toggle-slider:before {
    transform: translateX(20px);
}

/* =========================================
   DARK MODE - TYLKO DLA WIDGETU CZATU
   ========================================= */

/* Widget czatu w Dark Mode */
#ws-chat-widget.ws-dark-theme {
    background-color: #1e1e1e;
    border-color: #333; /* Widoczny obrys zajmuje to samo miejsce co transparent w light mode */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

#ws-chat-widget.ws-dark-theme .ws-chat-messages {
    background-color: #121212;
}

#ws-chat-widget.ws-dark-theme .ws-msg-ai {
    background-color: #2d2d2d;
    color: #e0e0e0;
    border-color: #3d3d3d;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

#ws-chat-widget.ws-dark-theme .ws-msg-user {
    /* W Dark Mode chmurka usera zazwyczaj zostaje w głównym kolorze, np. var(--ws-primary), chyba że wolisz ciemniejszy. */
}

#ws-chat-widget.ws-dark-theme .ws-bot-option-btn {
    background: #1e1e1e;
    border-color: var(--ws-primary);
    color: var(--ws-primary);
}

@media (hover: hover) {
  #ws-chat-widget.ws-dark-theme .ws-bot-option-btn:hover {
      background: var(--ws-primary);
      color: white;
  }
}

#ws-chat-widget.ws-dark-theme .ws-chat-footer-branding {
    background-color: #1e1e1e;
    border-top-color: #333;
    color: #777;
}

#ws-chat-widget.ws-dark-theme .ws-chat-footer-branding img {
    filter: brightness(0) invert(1) opacity(0.7);
}

#ws-chat-widget.ws-dark-theme .ws-typing-indicator span {
    background-color: #666;
}

/* Settings Panel w Dark Mode */
#ws-settings-panel.ws-dark-theme {
    background: #2d2d2d;
    border-color: #3d3d3d;
    color: #e0e0e0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

#ws-settings-panel.ws-dark-theme .ws-settings-title {
    color: #777;
}

/* Tło suwaka odznaczonego w Dark Mode */
#ws-settings-panel.ws-dark-theme .ws-toggle-slider {
    background-color: #555;
}

/* Tło suwaka zaznaczonego w Dark Mode (Niebieski) */
#ws-settings-panel.ws-dark-theme .ws-toggle-switch input:checked + .ws-toggle-slider {
    background-color: var(--ws-primary);
}


/* =========================================
   FANCY TOOLTIP (ZACZEPKA POWITALNA)
   ========================================= */
#ws-fab-tooltip {
    position: fixed;
    bottom: 105px;
    right: 40px;
    background: white;
    color: #2e2e2e;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(58, 139, 202, 0.2);
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 9997; /* Pod oknem chatu, nad resztą */

    /* Animacja wejścia (od dołu + fade) */
    opacity: 0;
    transform: translateY(15px) translateZ(0);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform, opacity;
}

#ws-fab-tooltip.ws-is-visible {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    pointer-events: auto;
}

/* Ogon dymka */
#ws-fab-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-bottom-right-radius: 3px;
    box-shadow: 3px 3px 5px rgba(58, 139, 202, 0.05);
}

.ws-fab-tooltip-close {
    margin-left: 10px;
    cursor: pointer;
    color: #adb5bd;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1;
    transition: color 0.3s ease;
}

.ws-fab-tooltip-close:hover {
    color: #e63946;
}

/* Dark Mode dla Tooltipa */
#ws-fab-tooltip.ws-dark-theme {
    background: #2d2d2d;
    color: #e0e0e0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
#ws-fab-tooltip.ws-dark-theme::after {
    background: #2d2d2d;
}

/* =========================================
   BAJERY: BADGE, TIMESTAMPS, RESTART
   ========================================= */

/* 1. Unread Badge (Powiadomienie) */
.ws-unread-badge {
    position: absolute;
    top: -2px;
    left: -2px;
    background-color: #e63946; /* Intensywna czerwień powiadomienia */
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 2px solid #f4f4f4; /* Obrys w kolorze tła strony */

    /* Animacja pop-in */
    transform: scale(0);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.ws-unread-badge.ws-is-visible {
    transform: scale(1);
    opacity: 1;
}

/* 2. Znaczniki czasu w dymkach (Timestamps) */
.ws-msg-time {
    display: block;
    font-size: 0.65rem;
    margin-top: 6px;
    opacity: 0.5;
    text-align: right;
    line-height: 1;
    transition: color 0.4s ease;
}
.ws-msg-user .ws-msg-time {
    color: rgba(255, 255, 255, 0.8);
}
.ws-msg-ai .ws-msg-time {
    color: #6c757d;
}

/* Dostosowanie obrysu kropki dla Dark Mode */
body.ws-dark-theme-active .ws-unread-badge { /* Zależy jak rozwiązujesz tło samej strony, jeśli masz ciemne */
    border-color: #1e1e1e;
}

/* =========================================
   FANCY ANIMACJA PRZYCISKU CZATU (RIPPLE + WIGGLE)
   ========================================= */

/* 1. Pulsujące fale (efekt radaru) rozchodzące się od przycisku */
#ws-chat-fab::before,
#ws-chat-fab::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* Używamy tego samego gradientu co na przycisku */
    background: linear-gradient(135deg, var(--ws-primary), #FFC66D);
    z-index: -1;
    opacity: 0;
    animation: ws-fab-ripple 2.5s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Druga fala startuje z opóźnieniem, żeby nałożyły się na siebie */
#ws-chat-fab::after {
    animation-delay: 1.25s;
}

@keyframes ws-fab-ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6); /* ZMIANA: z 1.8 na 1.4 (lub np. 1.3 jeśli ma być jeszcze bliżej) */
        opacity: 0;
    }
}

/* 2. Subtelne potrząśnięcie samą ikonką czatu co kilka sekund */
#ws-chat-fab i {
    animation: ws-icon-wiggle 5s infinite;
}

@keyframes ws-icon-wiggle {
    0%, 85%, 100% {
        transform: rotate(0deg) scale(1) translateZ(0);
    }
    88% { transform: rotate(-12deg) scale(1.1) translateZ(0); }
    91% { transform: rotate(12deg) scale(1.1) translateZ(0); }
    94% { transform: rotate(-12deg) scale(1.1) translateZ(0); }
    97% { transform: rotate(12deg) scale(1.1) translateZ(0); }
}

/* (Opcjonalnie) Ukryj fale, gdy użytkownik najedzie myszką na przycisk */
#ws-chat-fab:hover::before,
#ws-chat-fab:hover::after {
    opacity: 0 !important;
    animation: none;
}

/* =========================================
   WYŁĄCZENIE ANIMACJI GDY CZAT JEST OTWARTY
   ========================================= */
#ws-chat-fab.ws-is-active::before,
#ws-chat-fab.ws-is-active::after {
    animation: none !important;
    opacity: 0 !important;
    display: none !important;
}

#ws-chat-fab.ws-is-active i {
    animation: none !important;
}
