/* Firmy.cz Widget pro Shoptet - CSS V2.2 */

.firmycz-widget {
    position: fixed !important;
    right: -380px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 360px !important;
    background: #ffffff !important;
    border-radius: 12px 0 0 12px !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25) !important;
    transition: right 0.4s ease-in-out !important;
    z-index: 2147483647 !important; /* Absolutní maximum nad pozadí */
    border: 1px solid #e0e0e0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.firmycz-widget.active {
    right: 0 !important;
}

.firmycz-widget-tab {
    position: absolute !important;
    left: -60px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 60px !important;
    height: 140px !important;
    background: #0066cc !important;
    background: linear-gradient(135deg, #0066cc, #004499) !important;
    border-radius: 10px 0 0 10px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
}

.firmycz-widget-tab-text {
    color: white !important;
    writing-mode: vertical-rl !important;
    text-orientation: mixed !important;
    font-weight: bold !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    font-family: sans-serif !important;
}

.firmycz-widget-header { background: #0066cc !important; color: white !important; padding: 15px !important; position: relative !important; }
.firmycz-widget-header h3 { margin: 0 !important; font-size: 15px !important; color: white !important; }
.firmycz-close { position: absolute !important; top: 10px !important; right: 10px !important; background: none !important; border: none !important; color: white !important; font-size: 24px !important; cursor: pointer !important; }
.firmycz-widget-content { min-height: 250px !important; background: white !important; }
.firmycz-widget-iframe { width: 100% !important; height: 420px !important; border: none !important; }
.firmycz-loading { padding: 50px 0; text-align: center !important; }
.firmycz-loading-spinner { width: 40px; height: 40px; border: 4px solid #f3f3f3; border-top: 4px solid #0066cc; border-radius: 50%; animation: firmycz-spin 1s linear infinite; margin: 0 auto 10px; }

@keyframes firmycz-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes firmycz-pulse { 0% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(0, 102, 204, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0); } }
.firmycz-widget-tab.pulse { animation: firmycz-pulse 2s infinite !important; }