KG_Dark_Theme

Load dark theme CSS

目前為 2025-08-11 提交的版本,檢視 最新版本

// ==UserScript==
// @name           KG_Dark_Theme
// @namespace      klavogonki
// @version        1.0.57
// @description    Load dark theme CSS
// @author         Patcher
// @match          *://klavogonki.ru/*
// @icon           https://www.google.com/s2/favicons?sz=64&domain=klavogonki.ru
// @run-at         document-start
// @grant          none
// ==/UserScript==

(function () {
  'use strict';

  // ===== COLOR HELPER FUNCTIONS =====
  let targetLightness = 0.55; // Base target lightness (0-1)

  const rgbToHsl = (r, g, b) => {
    r /= 255; g /= 255; b /= 255;
    const max = Math.max(r, g, b), min = Math.min(r, g, b), d = max - min;
    const l = (max + min) / 2;
    if (!d) return [0, 0, l];
    const s = l > 0.5 ? d / (2 - max - min) : d / (max + min);
    const h = (max === r ? (g - b) / d + (g < b ? 6 : 0) : max === g ? (b - r) / d + 2 : (r - g) / d + 4) / 6;
    return [h, s, l];
  };

  const hslToRgb = (h, s, l) => {
    if (!s) return [l, l, l].map(x => Math.round(x * 255));
    const hue2rgb = (p, q, t) => (t < 0 && t++, t > 1 && t--, t < 1 / 6 ? p + (q - p) * 6 * t : t < 1 / 2 ? q : t < 2 / 3 ? p + (q - p) * (2 / 3 - t) * 6 : p);
    const q = l < 0.5 ? l * (1 + s) : l + s - l * s, p = 2 * l - q;
    return [hue2rgb(p, q, h + 1 / 3), hue2rgb(p, q, h), hue2rgb(p, q, h - 1 / 3)].map(x => Math.round(x * 255));
  };

  // Calculate perceptual lightness adjustment based on hue
  const getPerceptualLightness = (hue, baseLightness) => {
    // Normalize hue to 0-360 degrees
    const hueDegrees = hue * 360;

    // Blue range (roughly 200-280 degrees) needs significant boost
    // Purple-blue (280-320) needs moderate boost
    // Cyan-blue (180-200) needs slight boost
    let lightnessBoost = 0;

    if (hueDegrees >= 200 && hueDegrees <= 280) {
      // Peak blue range - maximum boost
      const blueIntensity = 1 - Math.abs(hueDegrees - 240) / 40; // Peak at 240°
      lightnessBoost = 0.15 * Math.max(0.3, blueIntensity); // 0.045 to 0.15 boost
    } else if (hueDegrees >= 180 && hueDegrees < 200) {
      // Cyan-blue transition
      const intensity = (hueDegrees - 180) / 20;
      lightnessBoost = 0.08 * intensity; // Up to 0.08 boost
    } else if (hueDegrees > 280 && hueDegrees <= 320) {
      // Purple-blue transition
      const intensity = 1 - (hueDegrees - 280) / 40;
      lightnessBoost = 0.1 * intensity; // Up to 0.1 boost
    }

    return Math.min(0.95, baseLightness + lightnessBoost);
  };

  // Generic color calibration function
  const calibrateElementColor = (el, cssClass = 'calibrated-color') => {
    const rgb = getComputedStyle(el).color.match(/\d+/g);
    if (!rgb) return;

    const [h, s, l] = rgbToHsl(+rgb[0], +rgb[1], +rgb[2]);

    // Calculate adjusted lightness with blue gamma boost
    const adjustedLightness = getPerceptualLightness(h, targetLightness);

    // Only update if significantly different from current
    if (Math.abs(l - adjustedLightness) > 0.05) {
      const [r, g, b] = hslToRgb(h, s, adjustedLightness);
      const hexColor = `#${[r, g, b].map(x => x.toString(16).padStart(2, '0')).join('')}`;
      el.style.setProperty('color', hexColor, 'important');
    }

    // Mark as calibrated to avoid reprocessing
    el.classList.add(cssClass);
  };

  // ===== THEME LOADER =====

  function loadDarkTheme(cssContent) {
    const style = document.createElement('style');
    style.className = 'kg-dark-theme';
    style.textContent = cssContent;
    // Try to append to head, fallback to documentElement
    const target = document.head || document.documentElement;
    target.appendChild(style);
  }

  // ===== AVATAR BIGGENING =====

  function replaceBigAvatars() {
    // Avatar URL pattern to match
    const match = /avatars\/(\d+)\.png/g;

    // Target common elements that typically have avatar backgrounds or sources
    const selectors = [
      'a[style*="avatars/"]',
      'dd[style*="avatars/"]',
      'td[style*="avatars/"]',
      'i[style*="avatars/"]',
      'img[src*="avatars/"]',
      'div[style*="avatars/"]'
    ];

    // All possible attributes that might contain avatar URLs
    const attributes = [
      'style',
      'src',
      'href'
    ];

    document.querySelectorAll(selectors.join(", ")).forEach(element => {
      // Check and replace in all possible attributes
      attributes.forEach(attr => {
        const value = element.getAttribute(attr);
        if (value && match.test(value)) {
          // Reset regex lastIndex to ensure proper matching
          match.lastIndex = 0;
          const newValue = value.replace(match, 'avatars/$1_big.png');
          element.setAttribute(attr, newValue);

          // Apply background-size for style attributes
          if (attr === 'style') {
            element.style.backgroundSize = 'contain';
          }
        }
      });
    });
  }

  function applyAvatarBiggener() {
    addEventListener('DOMContentLoaded', () => {
      replaceBigAvatars();
    });
    // Also observe for dynamic content changes
    const observer = new MutationObserver(() => {
      replaceBigAvatars();
    });
    observer.observe(document.documentElement, {
      childList: true,
      subtree: true
    });
  }


  // ==== SCROLL HELPER FUNCTION ===

  function scrollChatToBottom() {
    if (document.querySelector('.chat-user-list')) return;

    const chatContainer = document.querySelector('.messages-content');
    if (!chatContainer) return;

    const scrollTop = chatContainer.scrollTop;
    const scrollHeight = chatContainer.scrollHeight;
    const clientHeight = chatContainer.clientHeight;
    const distanceFromBottom = scrollHeight - scrollTop - clientHeight;

    if (distanceFromBottom <= 100) {
      chatContainer.scrollTop = scrollHeight;
    }
  }

  // ===== USERNAME COLOR CALIBRATOR =====

  // Enhanced username lightness with blue gamma boost (mutation observer)
  function initializeUsernameColorCalibrator() {
    // Watch for new usernames with mutation observer
    const observer = new MutationObserver(mutations => {
      // Disconnect observer if chat user list is present (Empowerment tampermonkey script)
      if (document.querySelector('.chat-user-list')) {
        observer.disconnect();
        return;
      }
      mutations.forEach(m => m.type === 'childList' && m.addedNodes.forEach(node => {
        if (node.nodeType === 1) {
          node.querySelectorAll?.('.username:not(.calibrated-username-color)').forEach(el => {
            calibrateElementColor(el, 'calibrated-username-color');
          });
        }
      }));
      scrollChatToBottom();
    });

    // Only observe if chat user list is not present (Empowerment tampermonkey script)
    if (!document.querySelector('.chat-user-list')) {
      observer.observe(document.body || document.documentElement, { childList: true, subtree: true });
    }
  }


  // ===== SPAN COLOR CALIBRATOR =====

  // Calibrate spans with inline color styles (one-time on DOMContentLoaded) [Forum posts, Vocabulary comments, etc.]
  function initializeSpanColorCalibrator() {
    const calibrateAllSpans = () => {
      // Query all spans with inline color styles using color:#
      const spanElements = document.querySelectorAll('span[style*="color:#"]:not(.calibrated-span-color)');
      console.log(`Found ${spanElements.length} spans to calibrate`);

      spanElements.forEach(el => {
        calibrateElementColor(el, 'calibrated-span-color');
      });

      console.log('Span color calibration completed');
    };

    // Only run once on DOMContentLoaded
    if (document.readyState === 'loading') {
      document.addEventListener('DOMContentLoaded', calibrateAllSpans);
    } else {
      // Document already loaded, run immediately
      calibrateAllSpans();
    }
  }

  // ==== VIEWPORT META TAG ADDITION ====

  // Add viewport meta tag - only for mobile devices (1:1 scale)
  function addViewportMeta() {
    // Check if device is mobile
    const isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);

    if (!isMobile) {
      return; // Exit if not a mobile device
    }

    // Check if viewport meta tag already exists
    let viewportMeta = document.querySelector('meta[name="viewport"]');

    if (!viewportMeta) {
      // Create new viewport meta tag
      viewportMeta = document.createElement('meta');
      viewportMeta.name = 'viewport';
      document.head.appendChild(viewportMeta);
    }

    // Set the viewport content for 1:1 scale on mobile
    viewportMeta.content = 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no';
  }

  const SPEEDOMETER_ARROW_COLOR = 'hsl(200, 40%, 60%)';
  const ARROW_START_ROTATION = -100;
  const ARROW_END_ROTATION = 100;

  function initializeSpeedometerArrow() {
    if (!location.href.includes('/g/?gmid=')) return;
    const speedpanel = document.getElementById('speedpanel');
    if (!speedpanel || document.querySelector('.speedpanel-arrow')) return;
    const arrow = document.createElement('div');
    arrow.classList.add('speedpanel-arrow');
    Object.assign(arrow.style, {
      position: 'absolute',
      bottom: '30px',
      right: '148px',
      pointerEvents: 'none',
      filter: `drop-shadow(0 0 6px ${SPEEDOMETER_ARROW_COLOR}) drop-shadow(0 0 12px ${SPEEDOMETER_ARROW_COLOR}40)`,
      transformOrigin: '50% 100%',
      transform: `rotate(${ARROW_START_ROTATION}deg)`,
      transition: 'transform 0.15s ease',
      zIndex: '10'
    });
    const svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
    svg.setAttribute('viewBox', '0 0 4 38');
    svg.setAttribute('width', '4');
    svg.setAttribute('height', '38');
    svg.innerHTML = `<rect width="4" height="38" rx="2" fill="${SPEEDOMETER_ARROW_COLOR}"/>`;
    arrow.appendChild(svg);
    speedpanel.appendChild(arrow);
    const update = () => {
      const speedLabel = document.getElementById('speed-label');
      if (speedLabel) {
        const speed = Math.max(0, Math.min(1000, parseFloat(speedLabel.textContent) || 0));
        const rotationRange = ARROW_END_ROTATION - ARROW_START_ROTATION;
        const angle = ARROW_START_ROTATION + (speed / 1000) * rotationRange;
        arrow.style.transform = `rotate(${angle}deg)`;
      }
      requestAnimationFrame(update);
    };
    requestAnimationFrame(update);
  }

  // ===== APPLY CSS CONTENT =====
  const cssContent = "@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);\n@import url(https://fonts.googleapis.com/css2?family=Lekton:ital,wght@0,400;0,700;1,400&display=swap);\n@import url(https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap);\n*{box-shadow:none !important;text-shadow:none !important}:focus{outline:none !important}body .btn{font-weight:lighter !important;border:none !important;border-radius:3px !important;background:hsl(210,5%,40%) !important;color:hsl(0,0%,10%) !important}body .btn:hover{font-weight:lighter !important;border:none !important;border-radius:3px !important;background:#689 !important;color:hsl(0,0%,10%) !important}input[type=text]{color:hsl(0,0%,70%) !important;border:1px solid hsl(210,5%,40%) !important}html,body{background:hsl(0,0%,15%) !important}body{color:hsl(0,0%,70%) !important}h1,h2,h3,h4,h5,h6{color:hsl(30,65%,50%) !important}a{color:#689 !important}a:hover{color:hsl(200,40%,60%) !important}input[type=text].blur{color:hsl(0,0%,10%) !important}input[type=radio]{-webkit-appearance:none;appearance:none;background-color:hsl(0,0%,10%);margin:0;width:1.15em;height:1.15em;border:.15em solid hsl(210,5%,40%);border-radius:50% !important;transform:translateY(-0.075em) !important;display:inline-grid;place-content:center}input[type=radio]:checked{border-color:hsl(30,65%,50%)}input[type=radio]::before{content:\"\";width:.65em;height:.65em;border-radius:50%;transform:scale(0);transition:120ms transform ease-in-out;background-color:hsl(30,65%,50%)}input[type=radio]:checked::before{transform:scale(1)}select{min-height:32px !important;background:hsl(0,0%,10%) !important;color:hsl(0,0%,70%) !important;border:1px solid hsl(210,5%,40%) !important;border-radius:5px !important;padding:0 10px !important}.search input[name=text]{color:hsl(0,0%,70%) !important}.form-control{background:hsl(0,0%,15%) !important;border:1px solid hsl(210,5%,40%) !important;color:hsl(0,0%,70%) !important;outline:none !important}textarea{border:1px solid hsl(210,5%,40%) !important;background-color:hsl(0,0%,15%) !important;color:hsl(0,0%,70%) !important}.msg{background:hsl(0,0%,10%) !important;border:1px solid #689 !important;text-align:center !important}blockquote{color:#689 !important;background:hsl(0,0%,10%) !important;border:none !important}hr,th,tr,td{border-color:hsl(210,5%,40%) !important}#content .achieve .achieve-content .progress,.fade .progress{background:hsl(0,0%,5%) !important}#content .achieve .achieve-content .progress-bar,.fade .progress-bar{background-color:hsl(30,65%,50%) !important}#content .achieve .achieve-content .progress-label,.fade .progress-label{text-shadow:0 0 2px hsl(30,65%,30%) !important;color:#fff !important}.next-level-label{color:hsl(0,0%,70%) !important}::-webkit-scrollbar{width:10px !important;background:hsl(0,0%,10%) !important}::-webkit-scrollbar-track{border:1px solid hsl(0,0%,10%) !important;background-color:hsl(0,0%,15%) !important}::-webkit-scrollbar-thumb{background-color:hsl(0,0%,10%) !important}.profile-root .empty{color:#c68 !important}.profile-root textarea{border:none !important}.modal2 textarea{border:none !important}.resolve-failed{background:hsl(0,0%,15%) !important;border:1px solid hsl(210,5%,40%) !important}.rang1,a.rang1,a.rang1:visited{color:#ccc !important;border-color:#ccc !important}.rang2,a.rang2,a.rang2:visited{color:hsl(180,70%,70%) !important;border-color:hsl(180,70%,70%) !important}.rang3,a.rang3,a.rang3:visited{color:hsl(120,70%,50%) !important;border-color:hsl(120,70%,50%) !important}.rang4,a.rang4,a.rang4:visited{color:#cb0 !important;border-color:#cb0 !important}.rang5,a.rang5,a.rang5:visited{color:#f93 !important;border-color:#f93 !important}.rang6,a.rang6,a.rang6:visited{color:rgb(255,25.5,102) !important;border-color:rgb(255,25.5,102) !important}.rang7,a.rang7,a.rang7:visited{color:hsl(275,70%,70%) !important;border-color:hsl(275,70%,70%) !important}.rang8,a.rang8,a.rang8:visited{color:#99f !important;border-color:#99f !important}.rang9,a.rang9,a.rang9:visited{color:hsl(200,80%,70%) !important;border-color:hsl(200,80%,70%) !important}.award{position:absolute !important;top:-4px !important;right:-6px !important;background:none rgba(0,0,0,0) no-repeat 0/18px 18px !important;width:18px !important;height:18px !important}.award1,body .popup_profile a[style*=awards]{background:url(\"https://i.imgur.com/JDhJqcC.png\") rgba(0,0,0,0) no-repeat 0/18px 18px !important;width:18px !important;height:18px !important}.award2,body .popup_profile a[style*=\"10px 0\"]{background:url(\"https://i.imgur.com/YmrdFhT.png\") rgba(0,0,0,0) no-repeat 0/18px 18px !important;width:18px !important;height:18px !important}.award3,body .popup_profile a[style*=\"20px 0\"]{background:url(\"https://i.imgur.com/2FZf6o2.png\") rgba(0,0,0,0) no-repeat 0/18px 18px !important;width:18px !important;height:18px !important}.award4,body .popup_profile a[style*=\"30px 0\"]{background:url(\"https://i.imgur.com/dRmEePR.png\") rgba(0,0,0,0) no-repeat 0/18px 18px !important;width:18px !important;height:18px !important}.award5,body .popup_profile a[style*=\"40px 0\"]{background:url(\"https://i.imgur.com/ycmbPKe.png\") rgba(0,0,0,0) no-repeat 0/18px 18px !important;width:18px !important;height:18px !important}.award6,body .popup_profile a[style*=\"50px 0\"]{background:url(\"https://i.imgur.com/59ELuaN.png\") rgba(0,0,0,0) no-repeat 0/18px 18px !important;width:18px !important;height:18px !important}.award7,body .popup_profile a[style*=\"60px 0\"]{background:url(\"https://i.imgur.com/maRdFQj.png\") rgba(0,0,0,0) no-repeat 0/18px 18px !important;width:18px !important;height:18px !important}.award8,body .popup_profile a[style*=\"70px 0\"]{background:url(\"https://i.imgur.com/dAJvuUs.png\") rgba(0,0,0,0) no-repeat 0/18px 18px !important;width:18px !important;height:18px !important}.award1b,body .popup_profile a[style*=\"80px 0\"]{background:url(\"https://i.imgur.com/rnFZbgd.png\") rgba(0,0,0,0) no-repeat 0/18px 18px !important;width:18px !important;height:18px !important}.award2b,body .popup_profile a[style*=\"90px 0\"]{background:url(\"https://i.imgur.com/1tJl28k.png\") rgba(0,0,0,0) no-repeat 0/18px 18px !important;width:18px !important;height:18px !important}.award3b,body .popup_profile a[style*=\"100px 0\"]{background:url(\"https://i.imgur.com/cZzdSKm.png\") rgba(0,0,0,0) no-repeat 0/18px 18px !important;width:18px !important;height:18px !important}#reformal_widget{box-shadow:none !important;text-shadow:none !important;filter:invert(0.95) brightness(1.2) grayscale(0.6) contrast(0.8) hue-rotate(-30deg) !important}body .tipsy{position:absolute !important;opacity:.9 !important;font:12px Tahoma !important}body .tipsy-inner{max-width:400px !important;text-align:center !important;background-color:#689;color:hsl(0,0%,10%) !important;margin-left:5px !important;margin-top:2px !important}body .tipsy-arrow{display:none !important}.g-recaptcha{filter:invert(1) hue-rotate(40deg) brightness(0.6) contrast(0.9) !important}#content .rang1,#content a.rang1,#content a.rang1:visited,#popup .rang1,#popup a.rang1,#popup a.rang1:visited{color:#ccc !important}#content .rang2,#content a.rang2,#content a.rang2:visited,#popup .rang2,#popup a.rang2,#popup a.rang2:visited{color:hsl(180,70%,70%) !important}#content .rang3,#content a.rang3,#content a.rang3:visited,#popup .rang3,#popup a.rang3,#popup a.rang3:visited{color:hsl(120,70%,50%) !important}#content .rang4,#content a.rang4,#content a.rang4:visited,#popup .rang4,#popup a.rang4,#popup a.rang4:visited{color:#cb0 !important}#content .rang5,#content a.rang5,#content a.rang5:visited,#popup .rang5,#popup a.rang5,#popup a.rang5:visited{color:#f93 !important}#content .rang6,#content a.rang6,#content a.rang6:visited,#popup .rang6,#popup a.rang6,#popup a.rang6:visited{color:rgb(255,25.5,102) !important}#content .rang7,#content a.rang7,#content a.rang7:visited,#popup .rang7,#popup a.rang7,#popup a.rang7:visited{color:hsl(275,70%,70%) !important}#content .rang8,#content a.rang8,#content a.rang8:visited,#popup .rang8,#popup a.rang8,#popup a.rang8:visited{color:#99f !important}#content .rang9,#content a.rang9,#content a.rang9:visited,#popup .rang9,#popup a.rang9,#popup a.rang9:visited{color:hsl(200,80%,70%) !important}#content .rang10,#content a.rang10,#content a.rang10:visited,#popup .rang10,#popup a.rang10,#popup a.rang10:visited{color:hsl(300,55%,50%) !important}#content .rang11,#content a.rang11,#content a.rang11:visited,#popup .rang11,#popup a.rang11,#popup a.rang11:visited{color:rgb(255,212.5,0) !important}.ownbanner-back,#reformal_tab,#footer,.feedback,#test,#playads,#speedpanel-back,#speedpanel-back-dark,#speedpanel-top,#speedpanel-arrow{display:none !important}.t,.b,.l,.r,.tl,.tr,.bl,.br{background:none !important}#table_smiles .t,#table_smiles .b,#table_smiles .l,#table_smiles .r,#table_smiles .tl,#table_smiles .tr,#table_smiles .bl,#table_smiles .br,.popup_message .t,.popup_message .b,.popup_message .l,.popup_message .r,.popup_message .tl,.popup_message .tr,.popup_message .bl,.popup_message .br{display:none !important}.hidemain{background:hsl(0,0%,5%) !important;border:1px solid hsl(210,5%,40%) !important;border-left:3px solid hsl(210,5%,40%) !important}.hidemain .hidetop{user-select:none !important;background:hsl(210,5%,40%) !important;font-size:0 !important;height:12px !important;border-radius:6px !important;margin:4px 8px !important;transition:background .15s ease-in-out !important}.hidemain .hidetop.expanded{background:hsl(120,35%,45%) !important}.quotemain{border:1px solid hsl(210,5%,28%) !important;color:hsl(210,5%,48%) !important;background:hsl(210,5%,8%) !important}.quotemain .quotetop{color:hsl(210,5%,32%) !important}pre:has(code),.codemain{border:1px solid hsl(120,35%,30.75%) !important;color:hsl(120,35%,54.5%) !important;background:hsl(120,35%,7%) !important}#head #logo{z-index:120 !important;width:150px !important;height:50px !important;padding:0 !important;float:none !important;position:fixed !important;top:45px !important;background-color:hsl(0,0%,5%) !important;border-radius:0 0 6px 6px !important}#head #logo a{display:block !important;width:150px !important;height:50px !important;transition:filter .15s ease !important}#head #logo a:hover{filter:brightness(0.8) !important}#head #logo a::after{content:\"\" !important;mask:url('data:image/svg+xml,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 200 35\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"black\" d=\"M15.51,27.32l3.73,0c0.37,0 0.67,0.31 0.67,0.68l0,3.73c0,0.37 -0.3,0.68 -0.67,0.68l-3.73,-0c-0.38,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.68,-0.68Zm-2.97,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm2.97,-17.8l3.73,-0c0.37,-0 0.67,0.31 0.67,0.68l0,3.73c0,0.37 -0.3,0.68 -0.67,0.68l-3.73,-0c-0.38,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.68,-0.68Zm-2.97,5.94l3.73,-0c0.37,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.67 0.68,-0.67Zm-2.96,5.93l3.73,-0c0.37,-0 0.67,0.3 0.67,0.68l0,3.73c0,0.37 -0.3,0.67 -0.67,0.67l-3.73,-0c-0.38,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.68,-0.68Zm-5.94,11.86l3.73,-0c0.38,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.31 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.67,-0.68Zm0,-5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.3,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.67,-0.68Zm0,-5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.3,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.67,-0.68Zm0,-5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.67 0.67,-0.67Zm0,-5.94l3.73,-0c0.38,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.31 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.67,-0.68Zm31.36,23.73l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.67 0.68,-0.67Zm-5.93,-5.94l3.73,-0c0.37,-0 0.67,0.31 0.67,0.68l0,3.73c0,0.37 -0.3,0.68 -0.67,0.68l-3.73,-0c-0.38,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.68,-0.68Zm-5.94,5.94l3.73,-0c0.38,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.67 0.67,-0.67Zm0,5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.3,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.67,-0.68Zm0,5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.3,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.67,-0.68Zm0,5.93l3.73,-0c0.38,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.31 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.67,-0.68Zm25.43,-11.86l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm5.93,11.86l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.67 0.68,-0.67Zm-5.93,-5.94l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm-5.93,5.94l3.73,-0c0.37,-0 0.67,0.3 0.67,0.67l0,3.73c0,0.38 -0.3,0.68 -0.67,0.68l-3.73,-0c-0.38,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.67 0.68,-0.67Zm0,5.93l3.73,-0c0.37,-0 0.67,0.3 0.67,0.68l0,3.73c0,0.37 -0.3,0.67 -0.67,0.67l-3.73,-0c-0.38,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.68,-0.68Zm0,5.93l3.73,-0c0.37,-0 0.67,0.3 0.67,0.68l0,3.73c0,0.37 -0.3,0.67 -0.67,0.67l-3.73,-0c-0.38,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.68,-0.68Zm0,5.93l3.73,-0c0.37,-0 0.67,0.31 0.67,0.68l0,3.73c0,0.37 -0.3,0.68 -0.67,0.68l-3.73,-0c-0.38,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.68,-0.68Zm31.35,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.67 0.68,-0.67Zm-5.93,17.79l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm0,-11.86l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,-11.87l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm-5.93,-0l3.73,-0c0.37,-0 0.67,0.31 0.67,0.68l0,3.73c0,0.37 -0.3,0.68 -0.67,0.68l-3.73,-0c-0.38,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.68,-0.68Zm0,5.94l3.73,-0c0.37,-0 0.67,0.3 0.67,0.67l0,3.73c0,0.38 -0.3,0.68 -0.67,0.68l-3.73,-0c-0.38,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.67 0.68,-0.67Zm0,5.93l3.73,-0c0.37,-0 0.67,0.3 0.67,0.68l0,3.73c0,0.37 -0.3,0.67 -0.67,0.67l-3.73,-0c-0.38,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.68,-0.68Zm0,5.93l3.73,-0c0.37,-0 0.67,0.3 0.67,0.68l0,3.73c0,0.37 -0.3,0.67 -0.67,0.67l-3.73,-0c-0.38,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.68,-0.68Zm0,5.93l3.73,-0c0.37,-0 0.67,0.31 0.67,0.68l0,3.73c0,0.37 -0.3,0.68 -0.67,0.68l-3.73,-0c-0.38,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.68,-0.68Zm31.35,-5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.3,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.67,-0.68Zm0,-5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.3,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.67,-0.68Zm0,-5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.67 0.67,-0.67Zm-5.93,-5.94l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm-5.93,5.94l3.73,-0c0.37,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.67 0.68,-0.67Zm0,5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm5.93,5.93l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm25.43,-23.73l3.73,-0c0.37,-0 0.67,0.31 0.67,0.68l0,3.73c0,0.37 -0.3,0.68 -0.67,0.68l-3.73,-0c-0.38,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.68,-0.68Zm-5.94,-0l3.73,-0c0.38,-0 0.68,0.31 0.68,0.68l-0,3.73c-0,0.37 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.31 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.67,-0.68Zm-5.93,-0l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm0,5.94l3.73,-0c0.37,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.67 0.68,-0.67Zm0,5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,5.93l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm29.66,-5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.3,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.3,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.67 0.68,-0.67Zm-5.93,-5.94l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm-5.93,5.94l3.73,-0c0.37,-0 0.67,0.3 0.67,0.67l0,3.73c0,0.38 -0.3,0.68 -0.67,0.68l-3.73,-0c-0.38,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.67 0.68,-0.67Zm0,5.93l3.73,-0c0.37,-0 0.67,0.3 0.67,0.68l0,3.73c0,0.37 -0.3,0.67 -0.67,0.67l-3.73,-0c-0.38,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.68,-0.68Zm0,5.93l3.73,-0c0.37,-0 0.67,0.3 0.67,0.68l0,3.73c0,0.37 -0.3,0.67 -0.67,0.67l-3.73,-0c-0.38,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.68,-0.68Zm5.93,5.93l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm25.42,-0l3.73,-0c0.38,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.31 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.67,-0.68Zm0,-5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.3,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.67,-0.68Zm0,-5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.3,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.67,-0.68Zm0,-5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.67 0.67,-0.67Zm0,-5.94l3.73,-0c0.38,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.31 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.67,-0.68Zm-5.93,11.87l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm-5.93,11.86l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.67 0.68,-0.67Zm0,-5.94l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm31.35,23.73l3.73,-0c0.38,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.31 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.67,-0.68Zm-2.96,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm2.96,-17.8l3.73,-0c0.38,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.31 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.67,-0.68Zm-2.96,5.94l3.73,-0c0.37,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.67 0.68,-0.67Zm-2.97,5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.3,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.67,-0.68Zm-5.93,11.86l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.67 0.68,-0.67Zm0,-5.94l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm34.75,23.73l3.73,-0c0.37,-0 0.67,0.31 0.67,0.68l0,3.73c0,0.37 -0.3,0.68 -0.67,0.68l-3.73,-0c-0.38,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.67,0.3 0.67,0.68l0,3.73c0,0.37 -0.3,0.67 -0.67,0.67l-3.73,-0c-0.38,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.67,0.3 0.67,0.68l0,3.73c0,0.37 -0.3,0.67 -0.67,0.67l-3.73,-0c-0.38,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.67,0.3 0.67,0.67l0,3.73c0,0.38 -0.3,0.68 -0.67,0.68l-3.73,-0c-0.38,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.67 0.68,-0.67Zm0,-5.94l3.73,-0c0.37,-0 0.67,0.31 0.67,0.68l0,3.73c0,0.37 -0.3,0.68 -0.67,0.68l-3.73,-0c-0.38,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.68,-0.68Zm-5.94,5.94l3.73,-0c0.38,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.67 0.67,-0.67Zm-1.69,5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm-1.7,5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.3,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.67,-0.68Zm-5.93,5.93l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm0,-5.93l3.73,-0c0.37,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.67 0.68,-0.67Zm0,-5.94l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Z\"/></svg>') no-repeat center/130px !important;background-color:hsl(30,65%,50%) !important;height:50px !important;width:150px !important;display:flex !important;position:absolute !important}#head #logo img{display:none !important}@media(max-width: 1000px){#head #logo{top:88px !important;left:5px !important;width:55px !important}#head #logo a{width:55px !important}#head #logo a::after{mask:url('data:image/svg+xml,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 45 35\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"black\" d=\"M16.82,26.82l3.73,0c0.37,0 0.67,0.31 0.67,0.68l-0,3.73c-0,0.37 -0.3,0.68 -0.67,0.68l-3.73,-0c-0.38,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.68,-0.68Zm-2.97,-5.93l3.73,0c0.37,0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm2.97,-17.8l3.73,0c0.37,0 0.67,0.31 0.67,0.68l0,3.73c0,0.37 -0.3,0.68 -0.67,0.68l-3.73,0c-0.38,0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.68,-0.68Zm-2.97,5.94l3.73,-0c0.37,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.67 0.68,-0.67Zm-2.96,5.93l3.73,0c0.37,0 0.67,0.3 0.67,0.68l0,3.73c0,0.37 -0.3,0.67 -0.67,0.67l-3.73,-0c-0.38,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.68,-0.68Zm-5.94,11.86l3.73,0c0.38,0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.31 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.67,-0.68Zm0,-5.93l3.73,0c0.38,0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.3,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.67,-0.68Zm0,-5.93l3.73,0c0.38,0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.3,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.67l0,-3.73c0,-0.38 0.3,-0.68 0.67,-0.68Zm0,-5.93l3.73,-0c0.38,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.3 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.67 0.67,-0.67Zm0,-5.94l3.73,-0c0.38,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.31 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.67,-0.68Zm31.37,-0l3.73,-0c0.37,-0 0.67,0.31 0.67,0.68l0,3.73c0,0.37 -0.3,0.68 -0.67,0.68l-3.73,-0c-0.38,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.68,-0.68Zm-5.94,-0l3.73,-0c0.38,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.3,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.67,-0.31 -0.67,-0.68l0,-3.73c0,-0.37 0.3,-0.68 0.67,-0.68Zm-5.93,-0l3.73,-0c0.37,-0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Zm-0,5.94l3.73,-0c0.37,-0 0.68,0.3 0.68,0.67l0,3.73c0,0.38 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.67 0.68,-0.67Zm-0,5.93l3.73,0c0.37,0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm-0,5.93l3.73,0c0.37,0 0.68,0.3 0.68,0.68l0,3.73c0,0.37 -0.31,0.67 -0.68,0.67l-3.73,-0c-0.37,-0 -0.68,-0.3 -0.68,-0.67l0,-3.73c0,-0.38 0.31,-0.68 0.68,-0.68Zm-0,5.93l3.73,0c0.37,0 0.68,0.31 0.68,0.68l0,3.73c0,0.37 -0.31,0.68 -0.68,0.68l-3.73,-0c-0.37,-0 -0.68,-0.31 -0.68,-0.68l0,-3.73c0,-0.37 0.31,-0.68 0.68,-0.68Z\"/></svg>') no-repeat center/30px !important;width:55px !important}}.avatar_big{position:relative;display:flex;flex-direction:column;align-items:center;width:120px;height:120px;margin:40px 0 !important}.avatar_big .rang{position:absolute;top:-35px !important;left:50% !important;transform:translateX(-50%);display:flex;align-items:center;justify-content:center;background:#ccc;padding:6px 16px;border-radius:16px;font-size:12px;font-weight:bold;white-space:nowrap;box-shadow:0 4px 12px rgba(0,0,0,.2) !important;border:2px solid hsl(0, 0%, 80%);margin:0 !important;min-height:20px;cursor:help}.avatar_big .rang.rang1{background:hsla(0,0%,80%,.2);border-color:hsla(0,0%,80%,.3);color:#ccc}.avatar_big .rang.rang2{background:hsla(180,70%,70%,.2);border-color:hsla(180,70%,70%,.3);color:hsl(180,70%,70%)}.avatar_big .rang.rang3{background:hsla(120,70%,50%,.2);border-color:hsla(120,70%,50%,.3);color:hsl(120,70%,50%)}.avatar_big .rang.rang4{background:rgba(204,187,0,.2);border-color:rgba(204,187,0,.3);color:#cb0}.avatar_big .rang.rang5{background:rgba(255,153,51,.2);border-color:rgba(255,153,51,.3);color:#f93}.avatar_big .rang.rang6{background:rgba(255,25.5,102,.2);border-color:rgba(255,25.5,102,.3);color:rgb(255,25.5,102)}.avatar_big .rang.rang7{background:hsla(275,70%,70%,.2);border-color:hsla(275,70%,70%,.3);color:hsl(275,70%,70%)}.avatar_big .rang.rang8{background:rgba(153,153,255,.2);border-color:rgba(153,153,255,.3);color:#99f}.avatar_big .rang.rang9{background:hsla(200,80%,70%,.2);border-color:hsla(200,80%,70%,.3);color:hsl(200,80%,70%)}.avatar_big .rang.rang10{background:hsla(300,55%,50%,.2);border-color:hsla(300,55%,50%,.3);color:hsl(300,55%,50%)}.avatar_big .rang.rang11{background:rgba(255,212.5,0,.2);border-color:rgba(255,212.5,0,.3);color:rgb(255,212.5,0)}.avatar_big>img{width:100%;height:100%;object-fit:cover;border-radius:.75em;box-shadow:0 0 4px rgba(0,0,0,.5) !important;display:block}.avatar_big .level_icon{position:absolute !important;bottom:-16px !important;right:-16px !important;display:flex !important;align-items:center !important;justify-content:center !important;width:32px !important;height:32px !important;background:#4a3d0f !important;border-radius:50% !important;border:2px solid rgba(255,215,0,.7) !important;box-sizing:border-box;box-shadow:0 4px 12px rgba(0,0,0,.3) !important;z-index:5;padding:0 !important;cursor:help}.avatar_big .level_icon i{font:bold 1em \"Consolas\",monospace !important;color:gold !important;text-shadow:0 1px 3px rgba(0,0,0,.6) !important;display:inline-flex !important;align-items:center !important;justify-content:center !important;position:unset !important}.avatar_big .level_icon::after{content:\"\";position:absolute;top:-6px !important;left:-6px !important;right:-6px !important;bottom:-6px !important;border-radius:50%;border:2px solid rgba(255,215,0,.3);z-index:-2;animation:ring 2s linear infinite}@keyframes ring{0%{transform:scale(1);opacity:1}100%{transform:scale(1.2);opacity:0}}@media(max-width: 768px){.avatar_big{width:100px;height:100px}.avatar_big .rang{font-size:10px;padding:4px 12px;top:-25px;border-radius:12px}.avatar_big .level_icon{width:26px !important;height:26px !important;bottom:-6px !important;right:-6px !important;border-width:2px !important}.avatar_big .level_icon i{font-size:11px !important}}@media(max-width: 480px){.avatar_big{width:80px;height:80px}.avatar_big .rang{font-size:9px;padding:3px 8px;top:-20px}.avatar_big .level_icon{width:22px !important;height:22px !important;bottom:-4px;right:-4px}.avatar_big .level_icon i{font-size:9px !important}}.userpanel{display:flex !important;font-family:\"Montserrat\",sans-serif !important;border-bottom:1px solid hsl(210,5%,40%) !important;background:hsl(0,0%,10%) !important;color:hsl(210,5%,40%) !important;position:fixed !important}.userpanel .user-block td:not(:has(.name)):not(:has(.mail-content)){padding:0 0 0 8px !important}.userpanel .user-block td:not(:has(.name)):not(:has(.mail-content)) .scores-table{height:44px !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}.userpanel .user-block .user-dropdown .daily-task{border:1px solid hsl(210,5%,40%) !important;border-top:none !important;border-bottom:none !important;width:45px !important;height:44px !important}.userpanel .user-block .user-dropdown .daily-task .icon[src*=active]{box-sizing:border-box;padding-left:45px;height:44px;width:45px;background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(50, 80%, 50%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"12\" y1=\"8\" x2=\"12\" y2=\"12\"></line><line x1=\"12\" y1=\"16\" x2=\"12.01\" y2=\"16\"></line></svg>') no-repeat center/35px !important;position:relative;top:0;left:0}.userpanel .user-block .user-dropdown .daily-task .icon[src*=completed]{box-sizing:border-box;padding-left:45px;height:44px;width:45px;background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(120, 35%, 45%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M22 11.08V12a10 10 0 1 1-5.93-9.14\"></path><polyline points=\"22 4 12 14.01 9 11.01\"></polyline></svg>') no-repeat center/35px !important;position:relative;top:0;left:0}.userpanel .user-block .user-dropdown{border:none !important;z-index:1 !important}.userpanel .user-block .user-dropdown .active .name{background:hsl(0,0%,10%) !important;border-right:1px solid hsl(210,5%,40%) !important}.userpanel .user-block .user-dropdown .drop-btn{transition:background .15s ease !important}.userpanel .user-block .user-dropdown .drop-btn:hover{background:hsl(0,0%,5%) !important}.userpanel .user-block .user-dropdown .dropmenu{background:hsl(0,0%,10%) !important;border:1px solid hsl(210,5%,40%) !important}.userpanel .user-block .user-dropdown .dropmenu .col1 a.btn,.userpanel .user-block .user-dropdown .dropmenu .col1 .logout a{background:hsl(210,5%,40%) !important;color:hsl(0,0%,5%) !important;border:none !important;border-radius:3px !important;font-weight:lighter !important;transition:all .2s ease !important}.userpanel .user-block .user-dropdown .dropmenu .col1 a.btn:hover,.userpanel .user-block .user-dropdown .dropmenu .col1 .logout a:hover{background:#689 !important;color:hsl(0,0%,5%) !important}.userpanel .user-block .user-dropdown .dropmenu .col1 .logout a{padding:5px 10px !important;width:fit-content !important}.userpanel .user-block .user-dropdown .dropmenu .col1 ul li{color:hsl(0,0%,70%) !important}.userpanel .user-block .user-dropdown .dropmenu .col1 ul li.unread_mail a{transition:all .2s ease !important}.userpanel .user-block .user-dropdown .dropmenu .col1 ul li.unread_mail a:hover{background-color:hsl(0,0%,5%) !important}.userpanel .user-block .user-dropdown .dropmenu .col1 a.note{color:hsl(0,0%,70%) !important;transition:all .2s ease !important}.userpanel .user-block .user-dropdown .dropmenu .col1 a.note:hover{color:hsl(200,40%,60%) !important}.userpanel .user-block .user-dropdown .dropmenu .col2 ul{border-left:1px solid rgba(0,0,0,0) !important}.userpanel .user-block .user-dropdown .dropmenu .col2 ul li a{transition:all .15s ease !important;border-radius:3px 0 0 3px !important}.userpanel .user-block .user-dropdown .dropmenu .col2 ul li a:hover{background:hsl(200,20%,20%) !important;color:hsl(200,20%,80%) !important}.userpanel .user-block .user-dropdown .dropmenu a{color:#689 !important}.userpanel .user-block .name span{color:hsl(200,40%,60%) !important}.userpanel .user-block .name .caret{border-top:4px solid #689 !important}.userpanel td.user-dropdown:has(#change_theme){display:none}.userpanel #userpanel-level-container{display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important;background:none !important;height:44px !important;width:45px !important;position:relative !important;top:unset !important}.userpanel #userpanel-level-value{display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important;margin:0 !important;height:44px !important;width:45px !important;color:#ff0 !important;text-shadow:0 0 3px #5f5f00 !important;z-index:2 !important;font-weight:500 !important;font-size:14px !important;position:absolute !important}.userpanel #userpanel-level-value-shadow{display:none !important}.userpanel #userpanel-level{width:45px !important;border-right:none !important}.userpanel #userpanel-level-progress[style*=\"0.png\"]{display:block !important;box-sizing:border-box !important;width:40px !important;height:40px !important;background:url(\"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 45 45%27%3E%3Cg id=%27score-progress%27%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M29.37,2.37c-2.13,-0.76,-4.28,-1.18,-6.54,-1.26c-0.46,-0.02,-0.83,0.34,-0.83,0.8l0,2.21c0,0.43,0.34,0.78,0.77,0.8c1.81,0.07,3.54,0.42,5.25,1.02c0.41,0.14,0.85,-0.07,1.01,-0.47l0.81,-2.06c0.17,-0.42,-0.04,-0.89,-0.47,-1.04z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M39.36,9.64c-1.4,-1.8,-2.95,-3.29,-4.82,-4.6c-0.37,-0.26,-0.88,-0.16,-1.13,0.22l-1.19,1.87c-0.23,0.36,-0.14,0.83,0.21,1.08c1.49,1.05,2.75,2.27,3.87,3.7c0.26,0.34,0.75,0.41,1.09,0.16l1.8,-1.3c0.37,-0.26,0.44,-0.78,0.17,-1.13z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M43.83,21.16c-0.18,-2.18,-0.71,-4.47,-1.55,-6.49c-0.18,-0.42,-0.67,-0.61,-1.08,-0.42l-2.01,0.93c-0.39,0.18,-0.57,0.63,-0.41,1.03c0.67,1.64,1.09,3.43,1.25,5.2c0.03,0.43,0.4,0.75,0.83,0.73l2.21,-0.12c0.46,-0.02,0.8,-0.41,0.76,-0.86z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M41.35,33.26c1.06,-1.99,1.8,-4.07,2.2,-6.29c0.08,-0.45,-0.22,-0.88,-0.68,-0.94l-2.2,-0.3c-0.42,-0.06,-0.81,0.22,-0.89,0.64c-0.35,1.81,-0.9,3.41,-1.76,5.04c-0.2,0.38,-0.06,0.85,0.31,1.07l1.92,1.1c0.39,0.23,0.89,0.09,1.1,-0.32z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M32.72,42.11c1.97,-1.11,3.69,-2.48,5.24,-4.11c0.32,-0.33,0.29,-0.85,-0.05,-1.15l-1.67,-1.45c-0.32,-0.28,-0.81,-0.26,-1.11,0.05c-1.21,1.29,-2.67,2.42,-4.21,3.3c-0.37,0.21,-0.51,0.68,-0.32,1.06l1.02,1.97c0.21,0.4,0.71,0.55,1.1,0.33z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M20.69,44.85c2.3,0.12,4.39,-0.03,6.63,-0.59c0.44,-0.11,0.7,-0.56,0.57,-1l-0.63,-2.13c-0.12,-0.41,-0.54,-0.65,-0.96,-0.55c-1.79,0.45,-3.48,0.56,-5.33,0.47c-0.42,-0.02,-0.79,0.30,-0.83,0.73l-0.21,2.2c-0.04,0.46,0.30,0.85,0.76,0.87z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M9.05,40.67c1.82,1.34,3.78,2.34,5.91,3.08c0.44,0.14,0.9,-0.09,1.03,-0.53l0.63,-2.13c0.12,-0.41,-0.11,-0.84,-0.51,-0.98c-1.69,-0.58,-3.29,-1.41,-4.74,-2.46c-0.35,-0.26,-0.83,-0.19,-1.1,0.15l-1.37,1.73c-0.29,0.36,-0.22,0.87,0.15,1.14z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M1.54,30.86c0.77,2.02,1.97,4.09,3.32,5.79c0.28,0.35,0.8,0.4,1.15,0.1l1.67,-1.45c0.32,-0.28,0.37,-0.77,0.1,-1.1c-1.08,-1.37,-2.03,-3.02,-2.65,-4.64c-0.16,-0.4,-0.6,-0.61,-1.01,-0.47l-2.09,0.73c-0.43,0.15,-0.65,0.61,-0.49,1.04z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M0.55,18.55c-0.44,2.22,-0.58,4.39,-0.35,6.64c0.04,0.46,0.45,0.78,0.9,0.71l2.2,-0.3c0.42,-0.06,0.73,-0.44,0.68,-0.87c-0.18,-1.8,-0.05,-3.58,0.30,-5.35c0.08,-0.42,-0.19,-0.83,-0.6,-0.93l-2.15,-0.52c-0.45,-0.11,-0.89,0.17,-0.98,0.62z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M6.38,7.65c-1.57,1.62,-2.89,3.39,-3.91,5.4c-0.2,0.41,-0.03,0.9,0.38,1.09l2.02,0.92c0.39,0.18,0.85,0.03,1.04,-0.36c0.85,-1.63,1.87,-3.01,3.14,-4.33c0.3,-0.31,0.3,-0.8,0.01,-1.11l-1.53,-1.6c-0.31,-0.33,-0.84,-0.33,-1.15,-0.01z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M17.18,1.63c-2.28,0.51,-4.18,1.29,-6.2,2.45c-0.4,0.22,-0.52,0.74,-0.28,1.12l1.19,1.85c0.23,0.36,0.7,0.48,1.07,0.26c1.54,-0.9,3.24,-1.54,4.98,-1.94c0.41,-0.1,0.68,-0.5,0.6,-0.92l-0.4,-2.19c-0.08,-0.45,-0.52,-0.73,-0.96,-0.63z%27/%3E%3C/g%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important;background-size:contain !important;position:relative !important}.userpanel #userpanel-level-progress[style*=\"1.png\"]{display:block !important;box-sizing:border-box !important;width:40px !important;height:40px !important;background:url(\"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 45 45%27%3E%3Cg id=%27score-progress%27%3E%3Cpath fill=%27%23FFFF00%27 d=%27M29.37,2.37c-2.13,-0.76,-4.28,-1.18,-6.54,-1.26c-0.46,-0.02,-0.83,0.34,-0.83,0.8l0,2.21c0,0.43,0.34,0.78,0.77,0.8c1.81,0.07,3.54,0.42,5.25,1.02c0.41,0.14,0.85,-0.07,1.01,-0.47l0.81,-2.06c0.17,-0.42,-0.04,-0.89,-0.47,-1.04z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M39.36,9.64c-1.4,-1.8,-2.95,-3.29,-4.82,-4.6c-0.37,-0.26,-0.88,-0.16,-1.13,0.22l-1.19,1.87c-0.23,0.36,-0.14,0.83,0.21,1.08c1.49,1.05,2.75,2.27,3.87,3.7c0.26,0.34,0.75,0.41,1.09,0.16l1.8,-1.3c0.37,-0.26,0.44,-0.78,0.17,-1.13z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M43.83,21.16c-0.18,-2.18,-0.71,-4.47,-1.55,-6.49c-0.18,-0.42,-0.67,-0.61,-1.08,-0.42l-2.01,0.93c-0.39,0.18,-0.57,0.63,-0.41,1.03c0.67,1.64,1.09,3.43,1.25,5.2c0.03,0.43,0.4,0.75,0.83,0.73l2.21,-0.12c0.46,-0.02,0.8,-0.41,0.76,-0.86z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M41.35,33.26c1.06,-1.99,1.8,-4.07,2.2,-6.29c0.08,-0.45,-0.22,-0.88,-0.68,-0.94l-2.2,-0.3c-0.42,-0.06,-0.81,0.22,-0.89,0.64c-0.35,1.81,-0.9,3.41,-1.76,5.04c-0.2,0.38,-0.06,0.85,0.31,1.07l1.92,1.1c0.39,0.23,0.89,0.09,1.1,-0.32z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M32.72,42.11c1.97,-1.11,3.69,-2.48,5.24,-4.11c0.32,-0.33,0.29,-0.85,-0.05,-1.15l-1.67,-1.45c-0.32,-0.28,-0.81,-0.26,-1.11,0.05c-1.21,1.29,-2.67,2.42,-4.21,3.3c-0.37,0.21,-0.51,0.68,-0.32,1.06l1.02,1.97c0.21,0.4,0.71,0.55,1.1,0.33z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M20.69,44.85c2.3,0.12,4.39,-0.03,6.63,-0.59c0.44,-0.11,0.7,-0.56,0.57,-1l-0.63,-2.13c-0.12,-0.41,-0.54,-0.65,-0.96,-0.55c-1.79,0.45,-3.48,0.56,-5.33,0.47c-0.42,-0.02,-0.79,0.30,-0.83,0.73l-0.21,2.2c-0.04,0.46,0.30,0.85,0.76,0.87z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M9.05,40.67c1.82,1.34,3.78,2.34,5.91,3.08c0.44,0.14,0.9,-0.09,1.03,-0.53l0.63,-2.13c0.12,-0.41,-0.11,-0.84,-0.51,-0.98c-1.69,-0.58,-3.29,-1.41,-4.74,-2.46c-0.35,-0.26,-0.83,-0.19,-1.1,0.15l-1.37,1.73c-0.29,0.36,-0.22,0.87,0.15,1.14z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M1.54,30.86c0.77,2.02,1.97,4.09,3.32,5.79c0.28,0.35,0.8,0.4,1.15,0.1l1.67,-1.45c0.32,-0.28,0.37,-0.77,0.1,-1.1c-1.08,-1.37,-2.03,-3.02,-2.65,-4.64c-0.16,-0.4,-0.6,-0.61,-1.01,-0.47l-2.09,0.73c-0.43,0.15,-0.65,0.61,-0.49,1.04z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M0.55,18.55c-0.44,2.22,-0.58,4.39,-0.35,6.64c0.04,0.46,0.45,0.78,0.9,0.71l2.2,-0.3c0.42,-0.06,0.73,-0.44,0.68,-0.87c-0.18,-1.8,-0.05,-3.58,0.30,-5.35c0.08,-0.42,-0.19,-0.83,-0.6,-0.93l-2.15,-0.52c-0.45,-0.11,-0.89,0.17,-0.98,0.62z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M6.38,7.65c-1.57,1.62,-2.89,3.39,-3.91,5.4c-0.2,0.41,-0.03,0.9,0.38,1.09l2.02,0.92c0.39,0.18,0.85,0.03,1.04,-0.36c0.85,-1.63,1.87,-3.01,3.14,-4.33c0.3,-0.31,0.3,-0.8,0.01,-1.11l-1.53,-1.6c-0.31,-0.33,-0.84,-0.33,-1.15,-0.01z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M17.18,1.63c-2.28,0.51,-4.18,1.29,-6.2,2.45c-0.4,0.22,-0.52,0.74,-0.28,1.12l1.19,1.85c0.23,0.36,0.7,0.48,1.07,0.26c1.54,-0.9,3.24,-1.54,4.98,-1.94c0.41,-0.1,0.68,-0.5,0.6,-0.92l-0.4,-2.19c-0.08,-0.45,-0.52,-0.73,-0.96,-0.63z%27/%3E%3C/g%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important;background-size:contain !important;position:relative !important}.userpanel #userpanel-level-progress[style*=\"2.png\"]{display:block !important;box-sizing:border-box !important;width:40px !important;height:40px !important;background:url(\"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 45 45%27%3E%3Cg id=%27score-progress%27%3E%3Cpath fill=%27%23FFFF00%27 d=%27M29.37,2.37c-2.13,-0.76,-4.28,-1.18,-6.54,-1.26c-0.46,-0.02,-0.83,0.34,-0.83,0.8l0,2.21c0,0.43,0.34,0.78,0.77,0.8c1.81,0.07,3.54,0.42,5.25,1.02c0.41,0.14,0.85,-0.07,1.01,-0.47l0.81,-2.06c0.17,-0.42,-0.04,-0.89,-0.47,-1.04z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M39.36,9.64c-1.4,-1.8,-2.95,-3.29,-4.82,-4.6c-0.37,-0.26,-0.88,-0.16,-1.13,0.22l-1.19,1.87c-0.23,0.36,-0.14,0.83,0.21,1.08c1.49,1.05,2.75,2.27,3.87,3.7c0.26,0.34,0.75,0.41,1.09,0.16l1.8,-1.3c0.37,-0.26,0.44,-0.78,0.17,-1.13z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M43.83,21.16c-0.18,-2.18,-0.71,-4.47,-1.55,-6.49c-0.18,-0.42,-0.67,-0.61,-1.08,-0.42l-2.01,0.93c-0.39,0.18,-0.57,0.63,-0.41,1.03c0.67,1.64,1.09,3.43,1.25,5.2c0.03,0.43,0.4,0.75,0.83,0.73l2.21,-0.12c0.46,-0.02,0.8,-0.41,0.76,-0.86z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M41.35,33.26c1.06,-1.99,1.8,-4.07,2.2,-6.29c0.08,-0.45,-0.22,-0.88,-0.68,-0.94l-2.2,-0.3c-0.42,-0.06,-0.81,0.22,-0.89,0.64c-0.35,1.81,-0.9,3.41,-1.76,5.04c-0.2,0.38,-0.06,0.85,0.31,1.07l1.92,1.1c0.39,0.23,0.89,0.09,1.1,-0.32z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M32.72,42.11c1.97,-1.11,3.69,-2.48,5.24,-4.11c0.32,-0.33,0.29,-0.85,-0.05,-1.15l-1.67,-1.45c-0.32,-0.28,-0.81,-0.26,-1.11,0.05c-1.21,1.29,-2.67,2.42,-4.21,3.3c-0.37,0.21,-0.51,0.68,-0.32,1.06l1.02,1.97c0.21,0.4,0.71,0.55,1.1,0.33z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M20.69,44.85c2.3,0.12,4.39,-0.03,6.63,-0.59c0.44,-0.11,0.7,-0.56,0.57,-1l-0.63,-2.13c-0.12,-0.41,-0.54,-0.65,-0.96,-0.55c-1.79,0.45,-3.48,0.56,-5.33,0.47c-0.42,-0.02,-0.79,0.30,-0.83,0.73l-0.21,2.2c-0.04,0.46,0.30,0.85,0.76,0.87z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M9.05,40.67c1.82,1.34,3.78,2.34,5.91,3.08c0.44,0.14,0.9,-0.09,1.03,-0.53l0.63,-2.13c0.12,-0.41,-0.11,-0.84,-0.51,-0.98c-1.69,-0.58,-3.29,-1.41,-4.74,-2.46c-0.35,-0.26,-0.83,-0.19,-1.1,0.15l-1.37,1.73c-0.29,0.36,-0.22,0.87,0.15,1.14z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M1.54,30.86c0.77,2.02,1.97,4.09,3.32,5.79c0.28,0.35,0.8,0.4,1.15,0.1l1.67,-1.45c0.32,-0.28,0.37,-0.77,0.1,-1.1c-1.08,-1.37,-2.03,-3.02,-2.65,-4.64c-0.16,-0.4,-0.6,-0.61,-1.01,-0.47l-2.09,0.73c-0.43,0.15,-0.65,0.61,-0.49,1.04z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M0.55,18.55c-0.44,2.22,-0.58,4.39,-0.35,6.64c0.04,0.46,0.45,0.78,0.9,0.71l2.2,-0.3c0.42,-0.06,0.73,-0.44,0.68,-0.87c-0.18,-1.8,-0.05,-3.58,0.30,-5.35c0.08,-0.42,-0.19,-0.83,-0.6,-0.93l-2.15,-0.52c-0.45,-0.11,-0.89,0.17,-0.98,0.62z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M6.38,7.65c-1.57,1.62,-2.89,3.39,-3.91,5.4c-0.2,0.41,-0.03,0.9,0.38,1.09l2.02,0.92c0.39,0.18,0.85,0.03,1.04,-0.36c0.85,-1.63,1.87,-3.01,3.14,-4.33c0.3,-0.31,0.3,-0.8,0.01,-1.11l-1.53,-1.6c-0.31,-0.33,-0.84,-0.33,-1.15,-0.01z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M17.18,1.63c-2.28,0.51,-4.18,1.29,-6.2,2.45c-0.4,0.22,-0.52,0.74,-0.28,1.12l1.19,1.85c0.23,0.36,0.7,0.48,1.07,0.26c1.54,-0.9,3.24,-1.54,4.98,-1.94c0.41,-0.1,0.68,-0.5,0.6,-0.92l-0.4,-2.19c-0.08,-0.45,-0.52,-0.73,-0.96,-0.63z%27/%3E%3C/g%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important;background-size:contain !important;position:relative !important}.userpanel #userpanel-level-progress[style*=\"3.png\"]{display:block !important;box-sizing:border-box !important;width:40px !important;height:40px !important;background:url(\"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 45 45%27%3E%3Cg id=%27score-progress%27%3E%3Cpath fill=%27%23FFFF00%27 d=%27M29.37,2.37c-2.13,-0.76,-4.28,-1.18,-6.54,-1.26c-0.46,-0.02,-0.83,0.34,-0.83,0.8l0,2.21c0,0.43,0.34,0.78,0.77,0.8c1.81,0.07,3.54,0.42,5.25,1.02c0.41,0.14,0.85,-0.07,1.01,-0.47l0.81,-2.06c0.17,-0.42,-0.04,-0.89,-0.47,-1.04z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M39.36,9.64c-1.4,-1.8,-2.95,-3.29,-4.82,-4.6c-0.37,-0.26,-0.88,-0.16,-1.13,0.22l-1.19,1.87c-0.23,0.36,-0.14,0.83,0.21,1.08c1.49,1.05,2.75,2.27,3.87,3.7c0.26,0.34,0.75,0.41,1.09,0.16l1.8,-1.3c0.37,-0.26,0.44,-0.78,0.17,-1.13z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M43.83,21.16c-0.18,-2.18,-0.71,-4.47,-1.55,-6.49c-0.18,-0.42,-0.67,-0.61,-1.08,-0.42l-2.01,0.93c-0.39,0.18,-0.57,0.63,-0.41,1.03c0.67,1.64,1.09,3.43,1.25,5.2c0.03,0.43,0.4,0.75,0.83,0.73l2.21,-0.12c0.46,-0.02,0.8,-0.41,0.76,-0.86z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M41.35,33.26c1.06,-1.99,1.8,-4.07,2.2,-6.29c0.08,-0.45,-0.22,-0.88,-0.68,-0.94l-2.2,-0.3c-0.42,-0.06,-0.81,0.22,-0.89,0.64c-0.35,1.81,-0.9,3.41,-1.76,5.04c-0.2,0.38,-0.06,0.85,0.31,1.07l1.92,1.1c0.39,0.23,0.89,0.09,1.1,-0.32z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M32.72,42.11c1.97,-1.11,3.69,-2.48,5.24,-4.11c0.32,-0.33,0.29,-0.85,-0.05,-1.15l-1.67,-1.45c-0.32,-0.28,-0.81,-0.26,-1.11,0.05c-1.21,1.29,-2.67,2.42,-4.21,3.3c-0.37,0.21,-0.51,0.68,-0.32,1.06l1.02,1.97c0.21,0.4,0.71,0.55,1.1,0.33z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M20.69,44.85c2.3,0.12,4.39,-0.03,6.63,-0.59c0.44,-0.11,0.7,-0.56,0.57,-1l-0.63,-2.13c-0.12,-0.41,-0.54,-0.65,-0.96,-0.55c-1.79,0.45,-3.48,0.56,-5.33,0.47c-0.42,-0.02,-0.79,0.30,-0.83,0.73l-0.21,2.2c-0.04,0.46,0.30,0.85,0.76,0.87z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M9.05,40.67c1.82,1.34,3.78,2.34,5.91,3.08c0.44,0.14,0.9,-0.09,1.03,-0.53l0.63,-2.13c0.12,-0.41,-0.11,-0.84,-0.51,-0.98c-1.69,-0.58,-3.29,-1.41,-4.74,-2.46c-0.35,-0.26,-0.83,-0.19,-1.1,0.15l-1.37,1.73c-0.29,0.36,-0.22,0.87,0.15,1.14z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M1.54,30.86c0.77,2.02,1.97,4.09,3.32,5.79c0.28,0.35,0.8,0.4,1.15,0.1l1.67,-1.45c0.32,-0.28,0.37,-0.77,0.1,-1.1c-1.08,-1.37,-2.03,-3.02,-2.65,-4.64c-0.16,-0.4,-0.6,-0.61,-1.01,-0.47l-2.09,0.73c-0.43,0.15,-0.65,0.61,-0.49,1.04z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M0.55,18.55c-0.44,2.22,-0.58,4.39,-0.35,6.64c0.04,0.46,0.45,0.78,0.9,0.71l2.2,-0.3c0.42,-0.06,0.73,-0.44,0.68,-0.87c-0.18,-1.8,-0.05,-3.58,0.30,-5.35c0.08,-0.42,-0.19,-0.83,-0.6,-0.93l-2.15,-0.52c-0.45,-0.11,-0.89,0.17,-0.98,0.62z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M6.38,7.65c-1.57,1.62,-2.89,3.39,-3.91,5.4c-0.2,0.41,-0.03,0.9,0.38,1.09l2.02,0.92c0.39,0.18,0.85,0.03,1.04,-0.36c0.85,-1.63,1.87,-3.01,3.14,-4.33c0.3,-0.31,0.3,-0.8,0.01,-1.11l-1.53,-1.6c-0.31,-0.33,-0.84,-0.33,-1.15,-0.01z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M17.18,1.63c-2.28,0.51,-4.18,1.29,-6.2,2.45c-0.4,0.22,-0.52,0.74,-0.28,1.12l1.19,1.85c0.23,0.36,0.7,0.48,1.07,0.26c1.54,-0.9,3.24,-1.54,4.98,-1.94c0.41,-0.1,0.68,-0.5,0.6,-0.92l-0.4,-2.19c-0.08,-0.45,-0.52,-0.73,-0.96,-0.63z%27/%3E%3C/g%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important;background-size:contain !important;position:relative !important}.userpanel #userpanel-level-progress[style*=\"4.png\"]{display:block !important;box-sizing:border-box !important;width:40px !important;height:40px !important;background:url(\"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 45 45%27%3E%3Cg id=%27score-progress%27%3E%3Cpath fill=%27%23FFFF00%27 d=%27M29.37,2.37c-2.13,-0.76,-4.28,-1.18,-6.54,-1.26c-0.46,-0.02,-0.83,0.34,-0.83,0.8l0,2.21c0,0.43,0.34,0.78,0.77,0.8c1.81,0.07,3.54,0.42,5.25,1.02c0.41,0.14,0.85,-0.07,1.01,-0.47l0.81,-2.06c0.17,-0.42,-0.04,-0.89,-0.47,-1.04z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M39.36,9.64c-1.4,-1.8,-2.95,-3.29,-4.82,-4.6c-0.37,-0.26,-0.88,-0.16,-1.13,0.22l-1.19,1.87c-0.23,0.36,-0.14,0.83,0.21,1.08c1.49,1.05,2.75,2.27,3.87,3.7c0.26,0.34,0.75,0.41,1.09,0.16l1.8,-1.3c0.37,-0.26,0.44,-0.78,0.17,-1.13z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M43.83,21.16c-0.18,-2.18,-0.71,-4.47,-1.55,-6.49c-0.18,-0.42,-0.67,-0.61,-1.08,-0.42l-2.01,0.93c-0.39,0.18,-0.57,0.63,-0.41,1.03c0.67,1.64,1.09,3.43,1.25,5.2c0.03,0.43,0.4,0.75,0.83,0.73l2.21,-0.12c0.46,-0.02,0.8,-0.41,0.76,-0.86z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M41.35,33.26c1.06,-1.99,1.8,-4.07,2.2,-6.29c0.08,-0.45,-0.22,-0.88,-0.68,-0.94l-2.2,-0.3c-0.42,-0.06,-0.81,0.22,-0.89,0.64c-0.35,1.81,-0.9,3.41,-1.76,5.04c-0.2,0.38,-0.06,0.85,0.31,1.07l1.92,1.1c0.39,0.23,0.89,0.09,1.1,-0.32z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M32.72,42.11c1.97,-1.11,3.69,-2.48,5.24,-4.11c0.32,-0.33,0.29,-0.85,-0.05,-1.15l-1.67,-1.45c-0.32,-0.28,-0.81,-0.26,-1.11,0.05c-1.21,1.29,-2.67,2.42,-4.21,3.3c-0.37,0.21,-0.51,0.68,-0.32,1.06l1.02,1.97c0.21,0.4,0.71,0.55,1.1,0.33z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M20.69,44.85c2.3,0.12,4.39,-0.03,6.63,-0.59c0.44,-0.11,0.7,-0.56,0.57,-1l-0.63,-2.13c-0.12,-0.41,-0.54,-0.65,-0.96,-0.55c-1.79,0.45,-3.48,0.56,-5.33,0.47c-0.42,-0.02,-0.79,0.30,-0.83,0.73l-0.21,2.2c-0.04,0.46,0.30,0.85,0.76,0.87z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M9.05,40.67c1.82,1.34,3.78,2.34,5.91,3.08c0.44,0.14,0.9,-0.09,1.03,-0.53l0.63,-2.13c0.12,-0.41,-0.11,-0.84,-0.51,-0.98c-1.69,-0.58,-3.29,-1.41,-4.74,-2.46c-0.35,-0.26,-0.83,-0.19,-1.1,0.15l-1.37,1.73c-0.29,0.36,-0.22,0.87,0.15,1.14z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M1.54,30.86c0.77,2.02,1.97,4.09,3.32,5.79c0.28,0.35,0.8,0.4,1.15,0.1l1.67,-1.45c0.32,-0.28,0.37,-0.77,0.1,-1.1c-1.08,-1.37,-2.03,-3.02,-2.65,-4.64c-0.16,-0.4,-0.6,-0.61,-1.01,-0.47l-2.09,0.73c-0.43,0.15,-0.65,0.61,-0.49,1.04z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M0.55,18.55c-0.44,2.22,-0.58,4.39,-0.35,6.64c0.04,0.46,0.45,0.78,0.9,0.71l2.2,-0.3c0.42,-0.06,0.73,-0.44,0.68,-0.87c-0.18,-1.8,-0.05,-3.58,0.30,-5.35c0.08,-0.42,-0.19,-0.83,-0.6,-0.93l-2.15,-0.52c-0.45,-0.11,-0.89,0.17,-0.98,0.62z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M6.38,7.65c-1.57,1.62,-2.89,3.39,-3.91,5.4c-0.2,0.41,-0.03,0.9,0.38,1.09l2.02,0.92c0.39,0.18,0.85,0.03,1.04,-0.36c0.85,-1.63,1.87,-3.01,3.14,-4.33c0.3,-0.31,0.3,-0.8,0.01,-1.11l-1.53,-1.6c-0.31,-0.33,-0.84,-0.33,-1.15,-0.01z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M17.18,1.63c-2.28,0.51,-4.18,1.29,-6.2,2.45c-0.4,0.22,-0.52,0.74,-0.28,1.12l1.19,1.85c0.23,0.36,0.7,0.48,1.07,0.26c1.54,-0.9,3.24,-1.54,4.98,-1.94c0.41,-0.1,0.68,-0.5,0.6,-0.92l-0.4,-2.19c-0.08,-0.45,-0.52,-0.73,-0.96,-0.63z%27/%3E%3C/g%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important;background-size:contain !important;position:relative !important}.userpanel #userpanel-level-progress[style*=\"5.png\"]{display:block !important;box-sizing:border-box !important;width:40px !important;height:40px !important;background:url(\"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 45 45%27%3E%3Cg id=%27score-progress%27%3E%3Cpath fill=%27%23FFFF00%27 d=%27M29.37,2.37c-2.13,-0.76,-4.28,-1.18,-6.54,-1.26c-0.46,-0.02,-0.83,0.34,-0.83,0.8l0,2.21c0,0.43,0.34,0.78,0.77,0.8c1.81,0.07,3.54,0.42,5.25,1.02c0.41,0.14,0.85,-0.07,1.01,-0.47l0.81,-2.06c0.17,-0.42,-0.04,-0.89,-0.47,-1.04z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M39.36,9.64c-1.4,-1.8,-2.95,-3.29,-4.82,-4.6c-0.37,-0.26,-0.88,-0.16,-1.13,0.22l-1.19,1.87c-0.23,0.36,-0.14,0.83,0.21,1.08c1.49,1.05,2.75,2.27,3.87,3.7c0.26,0.34,0.75,0.41,1.09,0.16l1.8,-1.3c0.37,-0.26,0.44,-0.78,0.17,-1.13z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M43.83,21.16c-0.18,-2.18,-0.71,-4.47,-1.55,-6.49c-0.18,-0.42,-0.67,-0.61,-1.08,-0.42l-2.01,0.93c-0.39,0.18,-0.57,0.63,-0.41,1.03c0.67,1.64,1.09,3.43,1.25,5.2c0.03,0.43,0.4,0.75,0.83,0.73l2.21,-0.12c0.46,-0.02,0.8,-0.41,0.76,-0.86z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M41.35,33.26c1.06,-1.99,1.8,-4.07,2.2,-6.29c0.08,-0.45,-0.22,-0.88,-0.68,-0.94l-2.2,-0.3c-0.42,-0.06,-0.81,0.22,-0.89,0.64c-0.35,1.81,-0.9,3.41,-1.76,5.04c-0.2,0.38,-0.06,0.85,0.31,1.07l1.92,1.1c0.39,0.23,0.89,0.09,1.1,-0.32z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M32.72,42.11c1.97,-1.11,3.69,-2.48,5.24,-4.11c0.32,-0.33,0.29,-0.85,-0.05,-1.15l-1.67,-1.45c-0.32,-0.28,-0.81,-0.26,-1.11,0.05c-1.21,1.29,-2.67,2.42,-4.21,3.3c-0.37,0.21,-0.51,0.68,-0.32,1.06l1.02,1.97c0.21,0.4,0.71,0.55,1.1,0.33z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M20.69,44.85c2.3,0.12,4.39,-0.03,6.63,-0.59c0.44,-0.11,0.7,-0.56,0.57,-1l-0.63,-2.13c-0.12,-0.41,-0.54,-0.65,-0.96,-0.55c-1.79,0.45,-3.48,0.56,-5.33,0.47c-0.42,-0.02,-0.79,0.30,-0.83,0.73l-0.21,2.2c-0.04,0.46,0.30,0.85,0.76,0.87z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M9.05,40.67c1.82,1.34,3.78,2.34,5.91,3.08c0.44,0.14,0.9,-0.09,1.03,-0.53l0.63,-2.13c0.12,-0.41,-0.11,-0.84,-0.51,-0.98c-1.69,-0.58,-3.29,-1.41,-4.74,-2.46c-0.35,-0.26,-0.83,-0.19,-1.1,0.15l-1.37,1.73c-0.29,0.36,-0.22,0.87,0.15,1.14z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M1.54,30.86c0.77,2.02,1.97,4.09,3.32,5.79c0.28,0.35,0.8,0.4,1.15,0.1l1.67,-1.45c0.32,-0.28,0.37,-0.77,0.1,-1.1c-1.08,-1.37,-2.03,-3.02,-2.65,-4.64c-0.16,-0.4,-0.6,-0.61,-1.01,-0.47l-2.09,0.73c-0.43,0.15,-0.65,0.61,-0.49,1.04z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M0.55,18.55c-0.44,2.22,-0.58,4.39,-0.35,6.64c0.04,0.46,0.45,0.78,0.9,0.71l2.2,-0.3c0.42,-0.06,0.73,-0.44,0.68,-0.87c-0.18,-1.8,-0.05,-3.58,0.30,-5.35c0.08,-0.42,-0.19,-0.83,-0.6,-0.93l-2.15,-0.52c-0.45,-0.11,-0.89,0.17,-0.98,0.62z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M6.38,7.65c-1.57,1.62,-2.89,3.39,-3.91,5.4c-0.2,0.41,-0.03,0.9,0.38,1.09l2.02,0.92c0.39,0.18,0.85,0.03,1.04,-0.36c0.85,-1.63,1.87,-3.01,3.14,-4.33c0.3,-0.31,0.3,-0.8,0.01,-1.11l-1.53,-1.6c-0.31,-0.33,-0.84,-0.33,-1.15,-0.01z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M17.18,1.63c-2.28,0.51,-4.18,1.29,-6.2,2.45c-0.4,0.22,-0.52,0.74,-0.28,1.12l1.19,1.85c0.23,0.36,0.7,0.48,1.07,0.26c1.54,-0.9,3.24,-1.54,4.98,-1.94c0.41,-0.1,0.68,-0.5,0.6,-0.92l-0.4,-2.19c-0.08,-0.45,-0.52,-0.73,-0.96,-0.63z%27/%3E%3C/g%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important;background-size:contain !important;position:relative !important}.userpanel #userpanel-level-progress[style*=\"6.png\"]{display:block !important;box-sizing:border-box !important;width:40px !important;height:40px !important;background:url(\"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 45 45%27%3E%3Cg id=%27score-progress%27%3E%3Cpath fill=%27%23FFFF00%27 d=%27M29.37,2.37c-2.13,-0.76,-4.28,-1.18,-6.54,-1.26c-0.46,-0.02,-0.83,0.34,-0.83,0.8l0,2.21c0,0.43,0.34,0.78,0.77,0.8c1.81,0.07,3.54,0.42,5.25,1.02c0.41,0.14,0.85,-0.07,1.01,-0.47l0.81,-2.06c0.17,-0.42,-0.04,-0.89,-0.47,-1.04z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M39.36,9.64c-1.4,-1.8,-2.95,-3.29,-4.82,-4.6c-0.37,-0.26,-0.88,-0.16,-1.13,0.22l-1.19,1.87c-0.23,0.36,-0.14,0.83,0.21,1.08c1.49,1.05,2.75,2.27,3.87,3.7c0.26,0.34,0.75,0.41,1.09,0.16l1.8,-1.3c0.37,-0.26,0.44,-0.78,0.17,-1.13z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M43.83,21.16c-0.18,-2.18,-0.71,-4.47,-1.55,-6.49c-0.18,-0.42,-0.67,-0.61,-1.08,-0.42l-2.01,0.93c-0.39,0.18,-0.57,0.63,-0.41,1.03c0.67,1.64,1.09,3.43,1.25,5.2c0.03,0.43,0.4,0.75,0.83,0.73l2.21,-0.12c0.46,-0.02,0.8,-0.41,0.76,-0.86z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M41.35,33.26c1.06,-1.99,1.8,-4.07,2.2,-6.29c0.08,-0.45,-0.22,-0.88,-0.68,-0.94l-2.2,-0.3c-0.42,-0.06,-0.81,0.22,-0.89,0.64c-0.35,1.81,-0.9,3.41,-1.76,5.04c-0.2,0.38,-0.06,0.85,0.31,1.07l1.92,1.1c0.39,0.23,0.89,0.09,1.1,-0.32z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M32.72,42.11c1.97,-1.11,3.69,-2.48,5.24,-4.11c0.32,-0.33,0.29,-0.85,-0.05,-1.15l-1.67,-1.45c-0.32,-0.28,-0.81,-0.26,-1.11,0.05c-1.21,1.29,-2.67,2.42,-4.21,3.3c-0.37,0.21,-0.51,0.68,-0.32,1.06l1.02,1.97c0.21,0.4,0.71,0.55,1.1,0.33z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M20.69,44.85c2.3,0.12,4.39,-0.03,6.63,-0.59c0.44,-0.11,0.7,-0.56,0.57,-1l-0.63,-2.13c-0.12,-0.41,-0.54,-0.65,-0.96,-0.55c-1.79,0.45,-3.48,0.56,-5.33,0.47c-0.42,-0.02,-0.79,0.30,-0.83,0.73l-0.21,2.2c-0.04,0.46,0.30,0.85,0.76,0.87z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M9.05,40.67c1.82,1.34,3.78,2.34,5.91,3.08c0.44,0.14,0.9,-0.09,1.03,-0.53l0.63,-2.13c0.12,-0.41,-0.11,-0.84,-0.51,-0.98c-1.69,-0.58,-3.29,-1.41,-4.74,-2.46c-0.35,-0.26,-0.83,-0.19,-1.1,0.15l-1.37,1.73c-0.29,0.36,-0.22,0.87,0.15,1.14z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M1.54,30.86c0.77,2.02,1.97,4.09,3.32,5.79c0.28,0.35,0.8,0.4,1.15,0.1l1.67,-1.45c0.32,-0.28,0.37,-0.77,0.1,-1.1c-1.08,-1.37,-2.03,-3.02,-2.65,-4.64c-0.16,-0.4,-0.6,-0.61,-1.01,-0.47l-2.09,0.73c-0.43,0.15,-0.65,0.61,-0.49,1.04z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M0.55,18.55c-0.44,2.22,-0.58,4.39,-0.35,6.64c0.04,0.46,0.45,0.78,0.9,0.71l2.2,-0.3c0.42,-0.06,0.73,-0.44,0.68,-0.87c-0.18,-1.8,-0.05,-3.58,0.30,-5.35c0.08,-0.42,-0.19,-0.83,-0.6,-0.93l-2.15,-0.52c-0.45,-0.11,-0.89,0.17,-0.98,0.62z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M6.38,7.65c-1.57,1.62,-2.89,3.39,-3.91,5.4c-0.2,0.41,-0.03,0.9,0.38,1.09l2.02,0.92c0.39,0.18,0.85,0.03,1.04,-0.36c0.85,-1.63,1.87,-3.01,3.14,-4.33c0.3,-0.31,0.3,-0.8,0.01,-1.11l-1.53,-1.6c-0.31,-0.33,-0.84,-0.33,-1.15,-0.01z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M17.18,1.63c-2.28,0.51,-4.18,1.29,-6.2,2.45c-0.4,0.22,-0.52,0.74,-0.28,1.12l1.19,1.85c0.23,0.36,0.7,0.48,1.07,0.26c1.54,-0.9,3.24,-1.54,4.98,-1.94c0.41,-0.1,0.68,-0.5,0.6,-0.92l-0.4,-2.19c-0.08,-0.45,-0.52,-0.73,-0.96,-0.63z%27/%3E%3C/g%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important;background-size:contain !important;position:relative !important}.userpanel #userpanel-level-progress[style*=\"7.png\"]{display:block !important;box-sizing:border-box !important;width:40px !important;height:40px !important;background:url(\"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 45 45%27%3E%3Cg id=%27score-progress%27%3E%3Cpath fill=%27%23FFFF00%27 d=%27M29.37,2.37c-2.13,-0.76,-4.28,-1.18,-6.54,-1.26c-0.46,-0.02,-0.83,0.34,-0.83,0.8l0,2.21c0,0.43,0.34,0.78,0.77,0.8c1.81,0.07,3.54,0.42,5.25,1.02c0.41,0.14,0.85,-0.07,1.01,-0.47l0.81,-2.06c0.17,-0.42,-0.04,-0.89,-0.47,-1.04z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M39.36,9.64c-1.4,-1.8,-2.95,-3.29,-4.82,-4.6c-0.37,-0.26,-0.88,-0.16,-1.13,0.22l-1.19,1.87c-0.23,0.36,-0.14,0.83,0.21,1.08c1.49,1.05,2.75,2.27,3.87,3.7c0.26,0.34,0.75,0.41,1.09,0.16l1.8,-1.3c0.37,-0.26,0.44,-0.78,0.17,-1.13z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M43.83,21.16c-0.18,-2.18,-0.71,-4.47,-1.55,-6.49c-0.18,-0.42,-0.67,-0.61,-1.08,-0.42l-2.01,0.93c-0.39,0.18,-0.57,0.63,-0.41,1.03c0.67,1.64,1.09,3.43,1.25,5.2c0.03,0.43,0.4,0.75,0.83,0.73l2.21,-0.12c0.46,-0.02,0.8,-0.41,0.76,-0.86z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M41.35,33.26c1.06,-1.99,1.8,-4.07,2.2,-6.29c0.08,-0.45,-0.22,-0.88,-0.68,-0.94l-2.2,-0.3c-0.42,-0.06,-0.81,0.22,-0.89,0.64c-0.35,1.81,-0.9,3.41,-1.76,5.04c-0.2,0.38,-0.06,0.85,0.31,1.07l1.92,1.1c0.39,0.23,0.89,0.09,1.1,-0.32z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M32.72,42.11c1.97,-1.11,3.69,-2.48,5.24,-4.11c0.32,-0.33,0.29,-0.85,-0.05,-1.15l-1.67,-1.45c-0.32,-0.28,-0.81,-0.26,-1.11,0.05c-1.21,1.29,-2.67,2.42,-4.21,3.3c-0.37,0.21,-0.51,0.68,-0.32,1.06l1.02,1.97c0.21,0.4,0.71,0.55,1.1,0.33z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M20.69,44.85c2.3,0.12,4.39,-0.03,6.63,-0.59c0.44,-0.11,0.7,-0.56,0.57,-1l-0.63,-2.13c-0.12,-0.41,-0.54,-0.65,-0.96,-0.55c-1.79,0.45,-3.48,0.56,-5.33,0.47c-0.42,-0.02,-0.79,0.30,-0.83,0.73l-0.21,2.2c-0.04,0.46,0.30,0.85,0.76,0.87z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M9.05,40.67c1.82,1.34,3.78,2.34,5.91,3.08c0.44,0.14,0.9,-0.09,1.03,-0.53l0.63,-2.13c0.12,-0.41,-0.11,-0.84,-0.51,-0.98c-1.69,-0.58,-3.29,-1.41,-4.74,-2.46c-0.35,-0.26,-0.83,-0.19,-1.1,0.15l-1.37,1.73c-0.29,0.36,-0.22,0.87,0.15,1.14z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M1.54,30.86c0.77,2.02,1.97,4.09,3.32,5.79c0.28,0.35,0.8,0.4,1.15,0.1l1.67,-1.45c0.32,-0.28,0.37,-0.77,0.1,-1.1c-1.08,-1.37,-2.03,-3.02,-2.65,-4.64c-0.16,-0.4,-0.6,-0.61,-1.01,-0.47l-2.09,0.73c-0.43,0.15,-0.65,0.61,-0.49,1.04z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M0.55,18.55c-0.44,2.22,-0.58,4.39,-0.35,6.64c0.04,0.46,0.45,0.78,0.9,0.71l2.2,-0.3c0.42,-0.06,0.73,-0.44,0.68,-0.87c-0.18,-1.8,-0.05,-3.58,0.30,-5.35c0.08,-0.42,-0.19,-0.83,-0.6,-0.93l-2.15,-0.52c-0.45,-0.11,-0.89,0.17,-0.98,0.62z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M6.38,7.65c-1.57,1.62,-2.89,3.39,-3.91,5.4c-0.2,0.41,-0.03,0.9,0.38,1.09l2.02,0.92c0.39,0.18,0.85,0.03,1.04,-0.36c0.85,-1.63,1.87,-3.01,3.14,-4.33c0.3,-0.31,0.3,-0.8,0.01,-1.11l-1.53,-1.6c-0.31,-0.33,-0.84,-0.33,-1.15,-0.01z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M17.18,1.63c-2.28,0.51,-4.18,1.29,-6.2,2.45c-0.4,0.22,-0.52,0.74,-0.28,1.12l1.19,1.85c0.23,0.36,0.7,0.48,1.07,0.26c1.54,-0.9,3.24,-1.54,4.98,-1.94c0.41,-0.1,0.68,-0.5,0.6,-0.92l-0.4,-2.19c-0.08,-0.45,-0.52,-0.73,-0.96,-0.63z%27/%3E%3C/g%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important;background-size:contain !important;position:relative !important}.userpanel #userpanel-level-progress[style*=\"8.png\"]{display:block !important;box-sizing:border-box !important;width:40px !important;height:40px !important;background:url(\"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 45 45%27%3E%3Cg id=%27score-progress%27%3E%3Cpath fill=%27%23FFFF00%27 d=%27M29.37,2.37c-2.13,-0.76,-4.28,-1.18,-6.54,-1.26c-0.46,-0.02,-0.83,0.34,-0.83,0.8l0,2.21c0,0.43,0.34,0.78,0.77,0.8c1.81,0.07,3.54,0.42,5.25,1.02c0.41,0.14,0.85,-0.07,1.01,-0.47l0.81,-2.06c0.17,-0.42,-0.04,-0.89,-0.47,-1.04z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M39.36,9.64c-1.4,-1.8,-2.95,-3.29,-4.82,-4.6c-0.37,-0.26,-0.88,-0.16,-1.13,0.22l-1.19,1.87c-0.23,0.36,-0.14,0.83,0.21,1.08c1.49,1.05,2.75,2.27,3.87,3.7c0.26,0.34,0.75,0.41,1.09,0.16l1.8,-1.3c0.37,-0.26,0.44,-0.78,0.17,-1.13z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M43.83,21.16c-0.18,-2.18,-0.71,-4.47,-1.55,-6.49c-0.18,-0.42,-0.67,-0.61,-1.08,-0.42l-2.01,0.93c-0.39,0.18,-0.57,0.63,-0.41,1.03c0.67,1.64,1.09,3.43,1.25,5.2c0.03,0.43,0.4,0.75,0.83,0.73l2.21,-0.12c0.46,-0.02,0.8,-0.41,0.76,-0.86z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M41.35,33.26c1.06,-1.99,1.8,-4.07,2.2,-6.29c0.08,-0.45,-0.22,-0.88,-0.68,-0.94l-2.2,-0.3c-0.42,-0.06,-0.81,0.22,-0.89,0.64c-0.35,1.81,-0.9,3.41,-1.76,5.04c-0.2,0.38,-0.06,0.85,0.31,1.07l1.92,1.1c0.39,0.23,0.89,0.09,1.1,-0.32z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M32.72,42.11c1.97,-1.11,3.69,-2.48,5.24,-4.11c0.32,-0.33,0.29,-0.85,-0.05,-1.15l-1.67,-1.45c-0.32,-0.28,-0.81,-0.26,-1.11,0.05c-1.21,1.29,-2.67,2.42,-4.21,3.3c-0.37,0.21,-0.51,0.68,-0.32,1.06l1.02,1.97c0.21,0.4,0.71,0.55,1.1,0.33z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M20.69,44.85c2.3,0.12,4.39,-0.03,6.63,-0.59c0.44,-0.11,0.7,-0.56,0.57,-1l-0.63,-2.13c-0.12,-0.41,-0.54,-0.65,-0.96,-0.55c-1.79,0.45,-3.48,0.56,-5.33,0.47c-0.42,-0.02,-0.79,0.30,-0.83,0.73l-0.21,2.2c-0.04,0.46,0.30,0.85,0.76,0.87z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M9.05,40.67c1.82,1.34,3.78,2.34,5.91,3.08c0.44,0.14,0.9,-0.09,1.03,-0.53l0.63,-2.13c0.12,-0.41,-0.11,-0.84,-0.51,-0.98c-1.69,-0.58,-3.29,-1.41,-4.74,-2.46c-0.35,-0.26,-0.83,-0.19,-1.1,0.15l-1.37,1.73c-0.29,0.36,-0.22,0.87,0.15,1.14z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M1.54,30.86c0.77,2.02,1.97,4.09,3.32,5.79c0.28,0.35,0.8,0.4,1.15,0.1l1.67,-1.45c0.32,-0.28,0.37,-0.77,0.1,-1.1c-1.08,-1.37,-2.03,-3.02,-2.65,-4.64c-0.16,-0.4,-0.6,-0.61,-1.01,-0.47l-2.09,0.73c-0.43,0.15,-0.65,0.61,-0.49,1.04z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M0.55,18.55c-0.44,2.22,-0.58,4.39,-0.35,6.64c0.04,0.46,0.45,0.78,0.9,0.71l2.2,-0.3c0.42,-0.06,0.73,-0.44,0.68,-0.87c-0.18,-1.8,-0.05,-3.58,0.30,-5.35c0.08,-0.42,-0.19,-0.83,-0.6,-0.93l-2.15,-0.52c-0.45,-0.11,-0.89,0.17,-0.98,0.62z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M6.38,7.65c-1.57,1.62,-2.89,3.39,-3.91,5.4c-0.2,0.41,-0.03,0.9,0.38,1.09l2.02,0.92c0.39,0.18,0.85,0.03,1.04,-0.36c0.85,-1.63,1.87,-3.01,3.14,-4.33c0.3,-0.31,0.3,-0.8,0.01,-1.11l-1.53,-1.6c-0.31,-0.33,-0.84,-0.33,-1.15,-0.01z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M17.18,1.63c-2.28,0.51,-4.18,1.29,-6.2,2.45c-0.4,0.22,-0.52,0.74,-0.28,1.12l1.19,1.85c0.23,0.36,0.7,0.48,1.07,0.26c1.54,-0.9,3.24,-1.54,4.98,-1.94c0.41,-0.1,0.68,-0.5,0.6,-0.92l-0.4,-2.19c-0.08,-0.45,-0.52,-0.73,-0.96,-0.63z%27/%3E%3C/g%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important;background-size:contain !important;position:relative !important}.userpanel #userpanel-level-progress[style*=\"9.png\"]{display:block !important;box-sizing:border-box !important;width:40px !important;height:40px !important;background:url(\"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 45 45%27%3E%3Cg id=%27score-progress%27%3E%3Cpath fill=%27%23FFFF00%27 d=%27M29.37,2.37c-2.13,-0.76,-4.28,-1.18,-6.54,-1.26c-0.46,-0.02,-0.83,0.34,-0.83,0.8l0,2.21c0,0.43,0.34,0.78,0.77,0.8c1.81,0.07,3.54,0.42,5.25,1.02c0.41,0.14,0.85,-0.07,1.01,-0.47l0.81,-2.06c0.17,-0.42,-0.04,-0.89,-0.47,-1.04z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M39.36,9.64c-1.4,-1.8,-2.95,-3.29,-4.82,-4.6c-0.37,-0.26,-0.88,-0.16,-1.13,0.22l-1.19,1.87c-0.23,0.36,-0.14,0.83,0.21,1.08c1.49,1.05,2.75,2.27,3.87,3.7c0.26,0.34,0.75,0.41,1.09,0.16l1.8,-1.3c0.37,-0.26,0.44,-0.78,0.17,-1.13z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M43.83,21.16c-0.18,-2.18,-0.71,-4.47,-1.55,-6.49c-0.18,-0.42,-0.67,-0.61,-1.08,-0.42l-2.01,0.93c-0.39,0.18,-0.57,0.63,-0.41,1.03c0.67,1.64,1.09,3.43,1.25,5.2c0.03,0.43,0.4,0.75,0.83,0.73l2.21,-0.12c0.46,-0.02,0.8,-0.41,0.76,-0.86z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M41.35,33.26c1.06,-1.99,1.8,-4.07,2.2,-6.29c0.08,-0.45,-0.22,-0.88,-0.68,-0.94l-2.2,-0.3c-0.42,-0.06,-0.81,0.22,-0.89,0.64c-0.35,1.81,-0.9,3.41,-1.76,5.04c-0.2,0.38,-0.06,0.85,0.31,1.07l1.92,1.1c0.39,0.23,0.89,0.09,1.1,-0.32z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M32.72,42.11c1.97,-1.11,3.69,-2.48,5.24,-4.11c0.32,-0.33,0.29,-0.85,-0.05,-1.15l-1.67,-1.45c-0.32,-0.28,-0.81,-0.26,-1.11,0.05c-1.21,1.29,-2.67,2.42,-4.21,3.3c-0.37,0.21,-0.51,0.68,-0.32,1.06l1.02,1.97c0.21,0.4,0.71,0.55,1.1,0.33z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M20.69,44.85c2.3,0.12,4.39,-0.03,6.63,-0.59c0.44,-0.11,0.7,-0.56,0.57,-1l-0.63,-2.13c-0.12,-0.41,-0.54,-0.65,-0.96,-0.55c-1.79,0.45,-3.48,0.56,-5.33,0.47c-0.42,-0.02,-0.79,0.30,-0.83,0.73l-0.21,2.2c-0.04,0.46,0.30,0.85,0.76,0.87z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M9.05,40.67c1.82,1.34,3.78,2.34,5.91,3.08c0.44,0.14,0.9,-0.09,1.03,-0.53l0.63,-2.13c0.12,-0.41,-0.11,-0.84,-0.51,-0.98c-1.69,-0.58,-3.29,-1.41,-4.74,-2.46c-0.35,-0.26,-0.83,-0.19,-1.1,0.15l-1.37,1.73c-0.29,0.36,-0.22,0.87,0.15,1.14z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M1.54,30.86c0.77,2.02,1.97,4.09,3.32,5.79c0.28,0.35,0.8,0.4,1.15,0.1l1.67,-1.45c0.32,-0.28,0.37,-0.77,0.1,-1.1c-1.08,-1.37,-2.03,-3.02,-2.65,-4.64c-0.16,-0.4,-0.6,-0.61,-1.01,-0.47l-2.09,0.73c-0.43,0.15,-0.65,0.61,-0.49,1.04z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M0.55,18.55c-0.44,2.22,-0.58,4.39,-0.35,6.64c0.04,0.46,0.45,0.78,0.9,0.71l2.2,-0.3c0.42,-0.06,0.73,-0.44,0.68,-0.87c-0.18,-1.8,-0.05,-3.58,0.30,-5.35c0.08,-0.42,-0.19,-0.83,-0.6,-0.93l-2.15,-0.52c-0.45,-0.11,-0.89,0.17,-0.98,0.62z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M6.38,7.65c-1.57,1.62,-2.89,3.39,-3.91,5.4c-0.2,0.41,-0.03,0.9,0.38,1.09l2.02,0.92c0.39,0.18,0.85,0.03,1.04,-0.36c0.85,-1.63,1.87,-3.01,3.14,-4.33c0.3,-0.31,0.3,-0.8,0.01,-1.11l-1.53,-1.6c-0.31,-0.33,-0.84,-0.33,-1.15,-0.01z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M17.18,1.63c-2.28,0.51,-4.18,1.29,-6.2,2.45c-0.4,0.22,-0.52,0.74,-0.28,1.12l1.19,1.85c0.23,0.36,0.7,0.48,1.07,0.26c1.54,-0.9,3.24,-1.54,4.98,-1.94c0.41,-0.1,0.68,-0.5,0.6,-0.92l-0.4,-2.19c-0.08,-0.45,-0.52,-0.73,-0.96,-0.63z%27/%3E%3C/g%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important;background-size:contain !important;position:relative !important}.userpanel #userpanel-level-progress[style*=\"10.png\"]{display:block !important;box-sizing:border-box !important;width:40px !important;height:40px !important;background:url(\"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 45 45%27%3E%3Cg id=%27score-progress%27%3E%3Cpath fill=%27%23FFFF00%27 d=%27M29.37,2.37c-2.13,-0.76,-4.28,-1.18,-6.54,-1.26c-0.46,-0.02,-0.83,0.34,-0.83,0.8l0,2.21c0,0.43,0.34,0.78,0.77,0.8c1.81,0.07,3.54,0.42,5.25,1.02c0.41,0.14,0.85,-0.07,1.01,-0.47l0.81,-2.06c0.17,-0.42,-0.04,-0.89,-0.47,-1.04z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M39.36,9.64c-1.4,-1.8,-2.95,-3.29,-4.82,-4.6c-0.37,-0.26,-0.88,-0.16,-1.13,0.22l-1.19,1.87c-0.23,0.36,-0.14,0.83,0.21,1.08c1.49,1.05,2.75,2.27,3.87,3.7c0.26,0.34,0.75,0.41,1.09,0.16l1.8,-1.3c0.37,-0.26,0.44,-0.78,0.17,-1.13z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M43.83,21.16c-0.18,-2.18,-0.71,-4.47,-1.55,-6.49c-0.18,-0.42,-0.67,-0.61,-1.08,-0.42l-2.01,0.93c-0.39,0.18,-0.57,0.63,-0.41,1.03c0.67,1.64,1.09,3.43,1.25,5.2c0.03,0.43,0.4,0.75,0.83,0.73l2.21,-0.12c0.46,-0.02,0.8,-0.41,0.76,-0.86z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M41.35,33.26c1.06,-1.99,1.8,-4.07,2.2,-6.29c0.08,-0.45,-0.22,-0.88,-0.68,-0.94l-2.2,-0.3c-0.42,-0.06,-0.81,0.22,-0.89,0.64c-0.35,1.81,-0.9,3.41,-1.76,5.04c-0.2,0.38,-0.06,0.85,0.31,1.07l1.92,1.1c0.39,0.23,0.89,0.09,1.1,-0.32z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M32.72,42.11c1.97,-1.11,3.69,-2.48,5.24,-4.11c0.32,-0.33,0.29,-0.85,-0.05,-1.15l-1.67,-1.45c-0.32,-0.28,-0.81,-0.26,-1.11,0.05c-1.21,1.29,-2.67,2.42,-4.21,3.3c-0.37,0.21,-0.51,0.68,-0.32,1.06l1.02,1.97c0.21,0.4,0.71,0.55,1.1,0.33z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M20.69,44.85c2.3,0.12,4.39,-0.03,6.63,-0.59c0.44,-0.11,0.7,-0.56,0.57,-1l-0.63,-2.13c-0.12,-0.41,-0.54,-0.65,-0.96,-0.55c-1.79,0.45,-3.48,0.56,-5.33,0.47c-0.42,-0.02,-0.79,0.30,-0.83,0.73l-0.21,2.2c-0.04,0.46,0.30,0.85,0.76,0.87z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M9.05,40.67c1.82,1.34,3.78,2.34,5.91,3.08c0.44,0.14,0.9,-0.09,1.03,-0.53l0.63,-2.13c0.12,-0.41,-0.11,-0.84,-0.51,-0.98c-1.69,-0.58,-3.29,-1.41,-4.74,-2.46c-0.35,-0.26,-0.83,-0.19,-1.1,0.15l-1.37,1.73c-0.29,0.36,-0.22,0.87,0.15,1.14z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M1.54,30.86c0.77,2.02,1.97,4.09,3.32,5.79c0.28,0.35,0.8,0.4,1.15,0.1l1.67,-1.45c0.32,-0.28,0.37,-0.77,0.1,-1.1c-1.08,-1.37,-2.03,-3.02,-2.65,-4.64c-0.16,-0.4,-0.6,-0.61,-1.01,-0.47l-2.09,0.73c-0.43,0.15,-0.65,0.61,-0.49,1.04z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M0.55,18.55c-0.44,2.22,-0.58,4.39,-0.35,6.64c0.04,0.46,0.45,0.78,0.9,0.71l2.2,-0.3c0.42,-0.06,0.73,-0.44,0.68,-0.87c-0.18,-1.8,-0.05,-3.58,0.30,-5.35c0.08,-0.42,-0.19,-0.83,-0.6,-0.93l-2.15,-0.52c-0.45,-0.11,-0.89,0.17,-0.98,0.62z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M6.38,7.65c-1.57,1.62,-2.89,3.39,-3.91,5.4c-0.2,0.41,-0.03,0.9,0.38,1.09l2.02,0.92c0.39,0.18,0.85,0.03,1.04,-0.36c0.85,-1.63,1.87,-3.01,3.14,-4.33c0.3,-0.31,0.3,-0.8,0.01,-1.11l-1.53,-1.6c-0.31,-0.33,-0.84,-0.33,-1.15,-0.01z%27/%3E%3Cpath fill=%27rgba%28255,140,0,0.8%29%27 d=%27M17.18,1.63c-2.28,0.51,-4.18,1.29,-6.2,2.45c-0.4,0.22,-0.52,0.74,-0.28,1.12l1.19,1.85c0.23,0.36,0.7,0.48,1.07,0.26c1.54,-0.9,3.24,-1.54,4.98,-1.94c0.41,-0.1,0.68,-0.5,0.6,-0.92l-0.4,-2.19c-0.08,-0.45,-0.52,-0.73,-0.96,-0.63z%27/%3E%3C/g%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important;background-size:contain !important;position:relative !important}.userpanel #userpanel-level-progress[style*=\"11.png\"]{display:block !important;box-sizing:border-box !important;width:40px !important;height:40px !important;background:url(\"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 45 45%27%3E%3Cg id=%27score-progress%27%3E%3Cpath fill=%27%23FFFF00%27 d=%27M29.37,2.37c-2.13,-0.76,-4.28,-1.18,-6.54,-1.26c-0.46,-0.02,-0.83,0.34,-0.83,0.8l0,2.21c0,0.43,0.34,0.78,0.77,0.8c1.81,0.07,3.54,0.42,5.25,1.02c0.41,0.14,0.85,-0.07,1.01,-0.47l0.81,-2.06c0.17,-0.42,-0.04,-0.89,-0.47,-1.04z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M39.36,9.64c-1.4,-1.8,-2.95,-3.29,-4.82,-4.6c-0.37,-0.26,-0.88,-0.16,-1.13,0.22l-1.19,1.87c-0.23,0.36,-0.14,0.83,0.21,1.08c1.49,1.05,2.75,2.27,3.87,3.7c0.26,0.34,0.75,0.41,1.09,0.16l1.8,-1.3c0.37,-0.26,0.44,-0.78,0.17,-1.13z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M43.83,21.16c-0.18,-2.18,-0.71,-4.47,-1.55,-6.49c-0.18,-0.42,-0.67,-0.61,-1.08,-0.42l-2.01,0.93c-0.39,0.18,-0.57,0.63,-0.41,1.03c0.67,1.64,1.09,3.43,1.25,5.2c0.03,0.43,0.4,0.75,0.83,0.73l2.21,-0.12c0.46,-0.02,0.8,-0.41,0.76,-0.86z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M41.35,33.26c1.06,-1.99,1.8,-4.07,2.2,-6.29c0.08,-0.45,-0.22,-0.88,-0.68,-0.94l-2.2,-0.3c-0.42,-0.06,-0.81,0.22,-0.89,0.64c-0.35,1.81,-0.9,3.41,-1.76,5.04c-0.2,0.38,-0.06,0.85,0.31,1.07l1.92,1.1c0.39,0.23,0.89,0.09,1.1,-0.32z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M32.72,42.11c1.97,-1.11,3.69,-2.48,5.24,-4.11c0.32,-0.33,0.29,-0.85,-0.05,-1.15l-1.67,-1.45c-0.32,-0.28,-0.81,-0.26,-1.11,0.05c-1.21,1.29,-2.67,2.42,-4.21,3.3c-0.37,0.21,-0.51,0.68,-0.32,1.06l1.02,1.97c0.21,0.4,0.71,0.55,1.1,0.33z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M20.69,44.85c2.3,0.12,4.39,-0.03,6.63,-0.59c0.44,-0.11,0.7,-0.56,0.57,-1l-0.63,-2.13c-0.12,-0.41,-0.54,-0.65,-0.96,-0.55c-1.79,0.45,-3.48,0.56,-5.33,0.47c-0.42,-0.02,-0.79,0.30,-0.83,0.73l-0.21,2.2c-0.04,0.46,0.30,0.85,0.76,0.87z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M9.05,40.67c1.82,1.34,3.78,2.34,5.91,3.08c0.44,0.14,0.9,-0.09,1.03,-0.53l0.63,-2.13c0.12,-0.41,-0.11,-0.84,-0.51,-0.98c-1.69,-0.58,-3.29,-1.41,-4.74,-2.46c-0.35,-0.26,-0.83,-0.19,-1.1,0.15l-1.37,1.73c-0.29,0.36,-0.22,0.87,0.15,1.14z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M1.54,30.86c0.77,2.02,1.97,4.09,3.32,5.79c0.28,0.35,0.8,0.4,1.15,0.1l1.67,-1.45c0.32,-0.28,0.37,-0.77,0.1,-1.1c-1.08,-1.37,-2.03,-3.02,-2.65,-4.64c-0.16,-0.4,-0.6,-0.61,-1.01,-0.47l-2.09,0.73c-0.43,0.15,-0.65,0.61,-0.49,1.04z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M0.55,18.55c-0.44,2.22,-0.58,4.39,-0.35,6.64c0.04,0.46,0.45,0.78,0.9,0.71l2.2,-0.3c0.42,-0.06,0.73,-0.44,0.68,-0.87c-0.18,-1.8,-0.05,-3.58,0.30,-5.35c0.08,-0.42,-0.19,-0.83,-0.6,-0.93l-2.15,-0.52c-0.45,-0.11,-0.89,0.17,-0.98,0.62z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M6.38,7.65c-1.57,1.62,-2.89,3.39,-3.91,5.4c-0.2,0.41,-0.03,0.9,0.38,1.09l2.02,0.92c0.39,0.18,0.85,0.03,1.04,-0.36c0.85,-1.63,1.87,-3.01,3.14,-4.33c0.3,-0.31,0.3,-0.8,0.01,-1.11l-1.53,-1.6c-0.31,-0.33,-0.84,-0.33,-1.15,-0.01z%27/%3E%3Cpath fill=%27%23FFFF00%27 d=%27M17.18,1.63c-2.28,0.51,-4.18,1.29,-6.2,2.45c-0.4,0.22,-0.52,0.74,-0.28,1.12l1.19,1.85c0.23,0.36,0.7,0.48,1.07,0.26c1.54,-0.9,3.24,-1.54,4.98,-1.94c0.41,-0.1,0.68,-0.5,0.6,-0.92l-0.4,-2.19c-0.08,-0.45,-0.52,-0.73,-0.96,-0.63z%27/%3E%3C/g%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important;background-size:contain !important;position:relative !important}.userpanel #gametype-loading{filter:invert(1) !important}.userpanel #gametype-select{border:1px solid hsl(210,5%,40%) !important;height:80vh !important;font-size:12px !important;font-weight:400 !important}.userpanel #gametype-mdash{color:rgba(0,0,0,0) !important}.userpanel #gametype-voc{border:none !important}.userpanel #stats-block{top:unset !important;height:44px !important;display:flex !important;justify-content:left !important;align-items:center !important}.userpanel #stats-block .value{color:hsl(200,40%,60%) !important}.userpanel #stats-block .title,.userpanel #stats-block .rating{color:hsl(0,0%,70%) !important}.userpanel #stats-block .title a,.userpanel #stats-block .rating a{color:hsl(200,40%,60%) !important}.userpanel .value,.userpanel a,.userpanel #userpanel-scores,.userpanel #userpanel-bonuses{font-size:12px !important;color:#689 !important;font-weight:500 !important}.userpanel #userpanel-scores,.userpanel #userpanel-bonuses{display:flex !important;font-weight:bold !important}.userpanel #userpanel-scores{color:gold !important}.userpanel #userpanel-bonuses{color:#add8e6 !important}.userpanel .title,.userpanel .rating,.userpanel .scores-table{font-size:10px !important;color:hsl(0,0%,70%) !important;font-weight:400 !important}.userpanel a.gametype-voc{border:none !important;text-decoration:none !important;color:hsl(0,0%,70%) !important}.userpanel #pin{display:none !important}@media(max-width: 1000px){.userpanel{flex-direction:column !important;height:88px !important}.userpanel #stats-block{order:1 !important;position:relative !important;display:inline-flex !important;justify-content:center !important;left:0 !important;width:100vw !important;border-bottom:1px solid hsl(210,5%,40%) !important}}@media(max-width: 1000px)and (max-width: 520px){.userpanel #stats-block .gametype{display:none !important}}@media(max-width: 1000px)and (max-width: 475px){.userpanel #stats-block tr{display:inline-flex !important;width:100% !important;justify-content:center !important;align-items:center !important;gap:5px !important}.userpanel #stats-block tr td.title{width:16px !important;height:16px !important;font-size:0 !important;display:inline-flex !important;padding:0 !important}.userpanel #stats-block tr td.rating{font-size:0 !important;height:16px !important;width:fit-content !important;text-align:right !important}.userpanel #stats-block tr td.rating a:first-of-type{padding-right:5px !important;padding-left:18px !important}.userpanel #stats-block tr:nth-child(1) td:nth-child(2){background:url('data:image/svg+xml,<svg width=\"24\" height=\"24\" viewBox=\"0 0 6 6\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(120, 35%, 45%)\" d=\"M2.88,0.24c1.457,0 2.64,1.183 2.64,2.64c0,1.457 -1.183,2.64 -2.64,2.64c-1.457,0 -2.64,-1.183 -2.64,-2.64c0,-1.457 1.183,-2.64 2.64,-2.64Zm0,0.5c-1.181,0 -2.14,0.959 -2.14,2.14c0,1.181 0.959,2.14 2.14,2.14c1.181,0 2.14,-0.959 2.14,-2.14c0,-1.181 -0.959,-2.14 -2.14,-2.14Zm0.46,2.275c-0.045,0.155 -0.168,0.284 -0.336,0.329c-0.256,0.068 -0.519,-0.084 -0.588,-0.34c-0.068,-0.256 0.084,-0.519 0.34,-0.588c0.167,-0.045 0.338,0.005 0.455,0.116l1.227,-0.328c0.133,-0.036 0.271,0.043 0.306,0.176c0.036,0.134 -0.043,0.271 -0.177,0.307l-1.227,0.328Z\"/></svg>') no-repeat left center/contain !important}.userpanel #stats-block tr:nth-child(1) td:nth-child(5){background:url('data:image/svg+xml,<svg width=\"24\" height=\"24\" viewBox=\"0 0 6 6\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(340, 50%, 60%)\" d=\"M2.88,0.24c1.457,0 2.64,1.183 2.64,2.64c0,1.457 -1.183,2.64 -2.64,2.64c-1.457,0 -2.64,-1.183 -2.64,-2.64c0,-1.457 1.183,-2.64 2.64,-2.64Zm0,0.5c-1.181,0 -2.14,0.959 -2.14,2.14c0,1.181 0.959,2.14 2.14,2.14c1.181,0 2.14,-0.959 2.14,-2.14c0,-1.181 -0.959,-2.14 -2.14,-2.14Zm-0.354,2.14l-0.783,-0.783c-0.097,-0.098 -0.097,-0.256 0,-0.354c0.098,-0.097 0.256,-0.097 0.354,0l0.783,0.783l0.783,-0.783c0.098,-0.097 0.256,-0.097 0.354,0c0.097,0.098 0.097,0.256 0,0.354l-0.783,0.783l0.783,0.783c0.097,0.098 0.097,0.256 0,0.354c-0.098,0.097 -0.256,0.097 -0.354,0l-0.783,-0.783l-0.783,0.783c-0.098,0.097 -0.256,0.097 -0.354,0c-0.097,-0.098 -0.097,-0.256 0,-0.354l0.783,-0.783Z\"/></svg>') no-repeat left center/contain !important}.userpanel #stats-block tr:nth-child(2) td:nth-child(1){background:url('data:image/svg+xml,<svg width=\"24\" height=\"24\" viewBox=\"0 0 6 6\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(200, 40%, 60%)\" d=\"M0.96,2.088c0,-0.888 0.72,-1.848 1.92,-1.848c1.2,-0 1.92,0.96 1.92,1.848c-0.001,0.76 -0.221,1.675 -1.724,3.233c-0.051,0.054 -0.122,0.085 -0.196,0.085c-0.074,-0 -0.145,-0.031 -0.196,-0.085c-1.503,-1.558 -1.723,-2.473 -1.724,-3.233Zm0.5,-0c0.001,0.617 0.19,1.33 1.216,2.489c0.051,0.059 0.126,0.094 0.204,0.094c0.078,-0 0.153,-0.035 0.204,-0.094c1.026,-1.159 1.215,-1.872 1.216,-2.489c-0,-0.653 -0.538,-1.348 -1.42,-1.348c-0.882,-0 -1.42,0.695 -1.42,1.348Zm1.42,-0.888c0.53,-0 0.96,0.43 0.96,0.96c0,0.53 -0.43,0.96 -0.96,0.96c-0.53,0 -0.96,-0.43 -0.96,-0.96c0,-0.53 0.43,-0.96 0.96,-0.96Zm0,0.5c-0.254,-0 -0.46,0.206 -0.46,0.46c0,0.254 0.206,0.46 0.46,0.46c0.254,0 0.46,-0.206 0.46,-0.46c0,-0.254 -0.206,-0.46 -0.46,-0.46Z\"/></svg>') no-repeat left center/contain !important}.userpanel #stats-block tr:nth-child(2) td:nth-child(2){background:url('data:image/svg+xml,<svg width=\"24\" height=\"24\" viewBox=\"0 0 6 6\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(50, 80%, 50%)\" d=\"M2.88,0.24c1.457,0 2.64,1.183 2.64,2.64c0,1.457 -1.183,2.64 -2.64,2.64c-1.457,0 -2.64,-1.183 -2.64,-2.64c0,-1.457 1.183,-2.64 2.64,-2.64Zm0,0.5c-1.181,0 -2.14,0.959 -2.14,2.14c0,1.181 0.959,2.14 2.14,2.14c1.181,0 2.14,-0.959 2.14,-2.14c0,-1.181 -0.959,-2.14 -2.14,-2.14Zm0.25,1.73c0.138,0.085 0.23,0.237 0.23,0.41c0,0.265 -0.215,0.48 -0.48,0.48c-0.265,0 -0.48,-0.215 -0.48,-0.48c0,-0.173 0.092,-0.325 0.23,-0.41l0,-1.27c0,-0.138 0.112,-0.25 0.25,-0.25c0.138,0 0.25,0.112 0.25,0.25l0,1.27Z\"/></svg>') no-repeat left center/contain !important}.userpanel #stats-block tr:nth-child(2) td:nth-child(4){background:url('data:image/svg+xml,<svg width=\"24\" height=\"24\" viewBox=\"0 0 6 6\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(0, 0%, 70%)\" d=\"M2.88,0.24c1.457,0 2.64,1.183 2.64,2.64c0,1.457 -1.183,2.64 -2.64,2.64c-1.457,0 -2.64,-1.183 -2.64,-2.64c0,-1.457 1.183,-2.64 2.64,-2.64Zm0,0.5c-1.181,0 -2.14,0.959 -2.14,2.14c0,1.181 0.959,2.14 2.14,2.14c1.181,0 2.14,-0.959 2.14,-2.14c0,-1.181 -0.959,-2.14 -2.14,-2.14Zm0.063,1.357c-0.097,-0.098 -0.097,-0.256 0,-0.354c0.098,-0.097 0.256,-0.097 0.354,0l0.96,0.96c0.097,0.098 0.097,0.256 0,0.354l-0.96,0.96c-0.098,0.097 -0.256,0.097 -0.354,0c-0.097,-0.098 -0.097,-0.256 0,-0.354l0.783,-0.783l-0.783,-0.783Zm-1.2,0c-0.097,-0.098 -0.097,-0.256 0,-0.354c0.098,-0.097 0.256,-0.097 0.354,0l0.96,0.96c0.097,0.098 0.097,0.256 0,0.354l-0.96,0.96c-0.098,0.097 -0.256,0.097 -0.354,0c-0.097,-0.098 -0.097,-0.256 0,-0.354l0.783,-0.783l-0.783,-0.783Z\"/></svg>') no-repeat left center/contain !important}}@media(max-width: 1000px){.userpanel .user-block{order:2 !important;position:relative !important;display:inline-flex !important;justify-content:center !important;right:0 !important;width:100vw !important}}@media(max-width: 1000px)and (max-width: 475px){.userpanel .user-block .user-dropdown .name{padding:10px !important;border-right:1px solid hsl(210,5%,40%) !important}.userpanel .user-block .user-dropdown .name img{margin:0 !important}.userpanel .user-block .user-dropdown .name span,.userpanel .user-block .user-dropdown .name .caret{display:none !important}}#head.green-back{background:rgba(0,0,0,0) !important}#head .right{position:relative !important;width:100% !important;padding:0 !important}#head .right .menu{flex-direction:row-reverse !important;width:auto !important;position:fixed !important;top:45px !important;right:50% !important;transform:translateX(50%) !important;display:flex !important;justify-content:center !important;padding:0 !important;margin:0 !important;transition:all .2s !important;opacity:.5 !important;z-index:110 !important}#head .right .menu:hover{opacity:1 !important}#head .right .menu a:first-child{border-bottom-right-radius:5px !important;border-right:none !important}#head .right .menu a:last-child{border-bottom-left-radius:5px !important}#head .right .menu a{width:110px !important;height:45px !important;display:flex !important;justify-content:center !important;align-items:center !important;font:700 11px \"Montserrat\",sans-serif !important;text-transform:uppercase !important;text-decoration:none !important;color:hsl(0,0%,5%) !important;background:hsl(210,5%,40%) !important;border-right:1px solid hsl(0,0%,15%) !important;border-bottom:1px solid rgba(0,0,0,0) !important;transition:all .2s !important}#head .right .menu a:hover,#head .right .menu a.active{text-decoration:none !important;color:hsl(0,0%,5%) !important;border-right:1px solid hsl(0,0%,15%) !important;transition:all .2s !important;padding:0 !important;margin:0 !important;filter:brightness(1.1) !important}#head .right .menu a:hover:not(.active){background:hsl(200,20%,55%) !important}#head .right .menu a.active{background:hsl(200,20%,45%) !important}#head .right .menu a[href=\"/wiki/\"]{display:none !important}.bar{background:none !important}@media(max-width: 1200px){#head.green-back .right .menu a{width:95px !important;font-size:10px !important}}@media(max-width: 1000px){#head.green-back .right .menu{top:88px !important}#head.green-back .right .menu a{width:85px !important;height:40px !important;font-size:9px !important}}@media(max-width: 850px){#head.green-back .right:before{content:\"\" !important;width:50px !important;height:50px !important;position:fixed !important;top:88px !important;right:5px !important;color:#689 !important;cursor:pointer !important;z-index:10000 !important;border-radius:0 0 5px 5px !important;background:hsl(0,0%,5%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"3\" y1=\"12\" x2=\"21\" y2=\"12\"></line><line x1=\"3\" y1=\"6\" x2=\"21\" y2=\"6\"></line><line x1=\"3\" y1=\"18\" x2=\"21\" y2=\"18\"></line></svg>') no-repeat center/20px !important}#head.green-back .right .menu{transform:translateX(0) !important;opacity:0 !important;visibility:hidden !important;transition:opacity .3s ease !important;position:fixed !important;z-index:9999 !important;background:hsl(0,0%,5%) !important;backdrop-filter:blur(10px) !important;box-shadow:0 4px 20px rgba(0,0,0,.15) !important;border-radius:8px !important;padding:5px !important;right:0 !important;left:0 !important;top:88px !important;max-width:100% !important;flex-wrap:wrap !important;gap:5px !important}#head.green-back .right .menu a{flex:1 1 auto !important;min-width:0 !important;height:40px !important;font-size:9px !important;border-right:none !important;border-radius:5px !important}#head.green-back .right:hover .menu{opacity:1 !important;visibility:visible !important;pointer-events:auto !important}#head.green-back .right:hover:before{opacity:0 !important;visibility:hidden !important}}@media(max-width: 400px){#head.green-back .right .menu{flex-direction:column !important;padding:10px !important;gap:10px !important}#head.green-back .right .menu a{width:100% !important}}#content .menu .trimenu,#content .content-col .trimenu{user-select:none !important;font:700 11px \"Montserrat\",sans-serif !important;text-transform:uppercase !important;display:inline-flex !important;margin:10px 0 !important}@media(max-width: 380px){#content .menu .trimenu,#content .content-col .trimenu{flex-direction:column !important;border-radius:5px !important}}#content .menu .trimenu li,#content .content-col .trimenu li{margin:0 !important;padding:0 15px !important;height:45px !important;width:fit-content !important;float:none !important;display:flex;align-items:center !important;justify-content:center !important;background:hsl(210,5%,40%) !important;border-right:1px solid hsl(0,0%,15%) !important;transition:background .15s ease !important}@media(max-width: 450px){#content .menu .trimenu li,#content .content-col .trimenu li{padding:0 10px !important;height:35px !important;font-size:10px !important}}@media(max-width: 450px)and (max-width: 380px){#content .menu .trimenu li,#content .content-col .trimenu li{width:280px !important;border-right:none !important;border-radius:0 !important}}#content .menu .trimenu li.dummy,#content .content-col .trimenu li.dummy{display:none !important}#content .menu .trimenu li.active,#content .content-col .trimenu li.active{background:hsl(200,20%,45%) !important;color:hsl(0,0%,5%) !important}#content .menu .trimenu li:hover:not(.active),#content .content-col .trimenu li:hover:not(.active){background:hsl(200,20%,55%) !important;cursor:pointer !important}#content .menu .trimenu li:first-child,#content .content-col .trimenu li:first-child{border-radius:5px 0 0 5px}#content .menu .trimenu li:nth-child(4),#content .content-col .trimenu li:nth-child(4){border-radius:0 5px 5px 0;border-right:none !important}#content .menu .trimenu li a,#content .content-col .trimenu li a{text-decoration:none !important;height:100% !important;width:100% !important;display:flex !important;align-items:center !important;justify-content:center !important;color:hsl(0,0%,5%) !important}#content .menu .trimenu li sub,#content .content-col .trimenu li sub{position:absolute !important;top:10px !important;font-size:.8em !important;color:hsl(0,0%,15%) !important}@media(max-width: 450px){#content .menu .trimenu li sub,#content .content-col .trimenu li sub{top:8px !important;font-size:.7em !important}}#content_KE .list{width:1300px !important;margin:0 auto !important}#content_KE .list .item{background:hsl(0,0%,15%) !important}#content_KE .list .item.past{background:hsl(0,0%,15%) !important}#content_KE .list .item.soon{background:hsl(0,0%,10%) !important}#content_KE .list .item td{border-bottom:1px solid hsl(210,5%,40%) !important;border-top:1px solid hsl(210,5%,40%) !important}#register .big{background:hsl(30,65%,50%) !important;border:none !important}#register .big[style*=\"error.gif\"]{background:red none !important}#register .big[style*=\"ok.gif\"]{background:green none !important}#register .note{color:hsl(0,0%,70%) !important}#register_login,#register_pass,#register_confirmpass,#register_email{color:hsl(0,0%,70%) !important;background:#3b3b3b !important}#register_login:focus,#register_pass:focus,#register_confirmpass:focus,#register_email:focus{color:hsl(0,0%,70%) !important;background:hsl(0,0%,10%) !important}#register_submit_button:hover{cursor:pointer !important}.fade{overflow:auto !important;overflow-y:auto !important}.fade .close{position:absolute !important;margin-top:unset !important;top:-30px !important;right:-10px !important;z-index:10 !important;width:40px !important;height:40px !important;border-bottom-left-radius:5px !important;display:flex !important;justify-content:center !important;align-items:center !important;background:hsl(0,0%,5%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 20%, 50%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\"></line><line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\"></line></svg>') no-repeat center/20px !important;font-size:0 !important;transition:filter .15s ease-in-out !important;opacity:1 !important}.fade .close:hover{filter:brightness(0.8) !important}.fade .dropdown-toggle{background-color:hsl(0,0%,10%) !important;border:1px solid #689 !important;border-radius:5px !important;transition:background .15s ease,color .15s ease,border .15s ease}.fade .dropdown-toggle:hover,.fade .dropdown-toggle:focus{color:hsl(0,0%,5%) !important;background-color:#689 !important;border:1px solid hsl(200,40%,60%) !important}.fade .dropdown-toggle:hover span,.fade .dropdown-toggle:focus span{color:hsl(0,0%,5%) !important}.fade .dropdown-toggle:hover .caret,.fade .dropdown-toggle:focus .caret{border-top:4px solid hsl(0,0%,5%) !important}.fade .dropdown-toggle span{color:hsl(200,40%,60%) !important}.fade .dropdown-toggle .caret{border-top:4px solid hsl(200,40%,60%) !important}.fade .dailytask-progress .progress-striped{margin:0 !important}.modal2-dialog,.modal2-header,.modal2-content,.modal2-footer{background:hsl(0,0%,15%) !important;color:hsl(0,0%,70%) !important;border:none !important}.modal{border:1px solid hsl(210,5%,40%) !important;background:hsl(0,0%,15%) !important}.modal-body{overflow-y:hidden !important;background:hsl(0,0%,15%) !important}.modal-header,.modal-body,.modal-footer{background:hsl(0,0%,15%) !important}.modal-footer{border-top:1px solid hsl(210,5%,40%) !important}.modal-header,.modal2-header{border-bottom:1px solid hsl(210,5%,40%) !important}.modal2-dialog{font-weight:lighter;border:1px solid hsl(210,5%,40%) !important}.modal2-dialog span{color:hsl(0,0%,70%) !important}.modal2-content .award-status-block{text-align:center !important}.modal2-content .award-status{color:#689 !important}.modal2-content .task-description{padding-left:0 !important}.modal2-content .no-progress-label,.modal2-content .next-level-label{color:hsl(0,0%,70%) !important}.modal2-content b{font-weight:lighter !important}.edit,.preview{background:hsl(0,0%,15%) !important;color:hsl(0,0%,70%) !important;border:1px solid hsl(210,5%,40%) !important}.gametype-icons{display:none !important}#fast-reply-controls tr,#text-controls tr,#bb_tools_fast-reply tr,#bb_tools_text tr{display:inline-flex !important;flex-wrap:wrap !important}#fast-reply-controls img[src*=rte-background],#text-controls img[src*=rte-background],#bb_tools_fast-reply img[src*=rte-background],#bb_tools_text img[src*=rte-background]{background:url(\"https://i.imgur.com/ehrkyDk.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-bold],#text-controls img[src*=rte-bold],#bb_tools_fast-reply img[src*=rte-bold],#bb_tools_text img[src*=rte-bold]{background:url(\"https://i.imgur.com/9OK8lhQ.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-center],#text-controls img[src*=rte-center],#bb_tools_fast-reply img[src*=rte-center],#bb_tools_text img[src*=rte-center]{background:url(\"https://i.imgur.com/7MKySx7.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-code],#text-controls img[src*=rte-code],#bb_tools_fast-reply img[src*=rte-code],#bb_tools_text img[src*=rte-code]{background:url(\"https://i.imgur.com/8RjyCqp.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-color],#text-controls img[src*=rte-color],#bb_tools_fast-reply img[src*=rte-color],#bb_tools_text img[src*=rte-color]{background:url(\"https://i.imgur.com/rlm02Hi.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-hide],#text-controls img[src*=rte-hide],#bb_tools_fast-reply img[src*=rte-hide],#bb_tools_text img[src*=rte-hide]{background:url(\"https://i.imgur.com/xDm3rUs.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-html],#text-controls img[src*=rte-html],#bb_tools_fast-reply img[src*=rte-html],#bb_tools_text img[src*=rte-html]{background:url(\"https://i.imgur.com/OgwovGX.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-image],#text-controls img[src*=rte-image],#bb_tools_fast-reply img[src*=rte-image],#bb_tools_text img[src*=rte-image]{background:url(\"https://i.imgur.com/CPXb6fF.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-italic],#text-controls img[src*=rte-italic],#bb_tools_fast-reply img[src*=rte-italic],#bb_tools_text img[src*=rte-italic]{background:url(\"https://i.imgur.com/5ocDivo.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-left],#text-controls img[src*=rte-left],#bb_tools_fast-reply img[src*=rte-left],#bb_tools_text img[src*=rte-left]{background:url(\"https://i.imgur.com/mhGYxF3.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-link],#text-controls img[src*=rte-link],#bb_tools_fast-reply img[src*=rte-link],#bb_tools_text img[src*=rte-link]{background:url(\"https://i.imgur.com/3EKme2P.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-list_0],#text-controls img[src*=rte-list_0],#bb_tools_fast-reply img[src*=rte-list_0],#bb_tools_text img[src*=rte-list_0]{background:url(\"https://i.imgur.com/wrRH3HC.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-list_1],#text-controls img[src*=rte-list_1],#bb_tools_fast-reply img[src*=rte-list_1],#bb_tools_text img[src*=rte-list_1]{background:url(\"https://i.imgur.com/OHdzZda.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-quote],#text-controls img[src*=rte-quote],#bb_tools_fast-reply img[src*=rte-quote],#bb_tools_text img[src*=rte-quote]{background:url(\"https://i.imgur.com/5lXzkq5.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-quotesel],#text-controls img[src*=rte-quotesel],#bb_tools_fast-reply img[src*=rte-quotesel],#bb_tools_text img[src*=rte-quotesel]{background:url(\"https://i.imgur.com/UfiGb5M.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-right],#text-controls img[src*=rte-right],#bb_tools_fast-reply img[src*=rte-right],#bb_tools_text img[src*=rte-right]{background:url(\"https://i.imgur.com/qV4lUmE.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-size],#text-controls img[src*=rte-size],#bb_tools_fast-reply img[src*=rte-size],#bb_tools_text img[src*=rte-size]{background:url(\"https://i.imgur.com/QTu5Xbu.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-strike],#text-controls img[src*=rte-strike],#bb_tools_fast-reply img[src*=rte-strike],#bb_tools_text img[src*=rte-strike]{background:url(\"https://i.imgur.com/6AyRP37.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-sub],#text-controls img[src*=rte-sub],#bb_tools_fast-reply img[src*=rte-sub],#bb_tools_text img[src*=rte-sub]{background:url(\"https://i.imgur.com/K1PKT3j.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-sup],#text-controls img[src*=rte-sup],#bb_tools_fast-reply img[src*=rte-sup],#bb_tools_text img[src*=rte-sup]{background:url(\"https://i.imgur.com/rDf6r46.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-tab],#text-controls img[src*=rte-tab],#bb_tools_fast-reply img[src*=rte-tab],#bb_tools_text img[src*=rte-tab]{background:url(\"https://i.imgur.com/xuyw8TO.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-underlined],#text-controls img[src*=rte-underlined],#bb_tools_fast-reply img[src*=rte-underlined],#bb_tools_text img[src*=rte-underlined]{background:url(\"https://i.imgur.com/vPgSVYU.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[src*=rte-youtube],#text-controls img[src*=rte-youtube],#bb_tools_fast-reply img[src*=rte-youtube],#bb_tools_text img[src*=rte-youtube]{background:url(\"https://i.imgur.com/usx9mk9.png\") !important;background-position:center !important;background-repeat:no-repeat !important}#fast-reply-controls img[onclick*=rte-smileTab],#text-controls img[onclick*=rte-smileTab],#bb_tools_fast-reply img[onclick*=rte-smileTab],#bb_tools_text img[onclick*=rte-smileTab]{background:url(\"https://i.imgur.com/QKGLj9X.png\") !important}#fast-reply-controls img[src*=rte-background],#fast-reply-controls img[src*=rte-bold],#fast-reply-controls img[src*=rte-center],#fast-reply-controls img[src*=rte-code],#fast-reply-controls img[src*=rte-color],#fast-reply-controls img[src*=rte-hide],#fast-reply-controls img[src*=rte-html],#fast-reply-controls img[src*=rte-image],#fast-reply-controls img[src*=rte-italic],#fast-reply-controls img[src*=rte-left],#fast-reply-controls img[src*=rte-link],#fast-reply-controls img[src*=rte-list],#fast-reply-controls img[src*=rte-listnum],#fast-reply-controls img[src*=rte-quote],#fast-reply-controls img[src*=rte-quotesel],#fast-reply-controls img[src*=rte-right],#fast-reply-controls img[src*=rte-size],#fast-reply-controls img[src*=rte-strike],#fast-reply-controls img[src*=rte-sub],#fast-reply-controls img[src*=rte-sup],#fast-reply-controls img[src*=rte-tab],#fast-reply-controls img[src*=rte-underlined],#fast-reply-controls img[onclick*=rte-smileTab],#fast-reply-controls img[src*=rte-youtube],#text-controls img[src*=rte-background],#text-controls img[src*=rte-bold],#text-controls img[src*=rte-center],#text-controls img[src*=rte-code],#text-controls img[src*=rte-color],#text-controls img[src*=rte-hide],#text-controls img[src*=rte-html],#text-controls img[src*=rte-image],#text-controls img[src*=rte-italic],#text-controls img[src*=rte-left],#text-controls img[src*=rte-link],#text-controls img[src*=rte-list],#text-controls img[src*=rte-listnum],#text-controls img[src*=rte-quote],#text-controls img[src*=rte-quotesel],#text-controls img[src*=rte-right],#text-controls img[src*=rte-size],#text-controls img[src*=rte-strike],#text-controls img[src*=rte-sub],#text-controls img[src*=rte-sup],#text-controls img[src*=rte-tab],#text-controls img[src*=rte-underlined],#text-controls img[onclick*=rte-smileTab],#text-controls img[src*=rte-youtube],#bb_tools_fast-reply img[src*=rte-background],#bb_tools_fast-reply img[src*=rte-bold],#bb_tools_fast-reply img[src*=rte-center],#bb_tools_fast-reply img[src*=rte-code],#bb_tools_fast-reply img[src*=rte-color],#bb_tools_fast-reply img[src*=rte-hide],#bb_tools_fast-reply img[src*=rte-html],#bb_tools_fast-reply img[src*=rte-image],#bb_tools_fast-reply img[src*=rte-italic],#bb_tools_fast-reply img[src*=rte-left],#bb_tools_fast-reply img[src*=rte-link],#bb_tools_fast-reply img[src*=rte-list],#bb_tools_fast-reply img[src*=rte-listnum],#bb_tools_fast-reply img[src*=rte-quote],#bb_tools_fast-reply img[src*=rte-quotesel],#bb_tools_fast-reply img[src*=rte-right],#bb_tools_fast-reply img[src*=rte-size],#bb_tools_fast-reply img[src*=rte-strike],#bb_tools_fast-reply img[src*=rte-sub],#bb_tools_fast-reply img[src*=rte-sup],#bb_tools_fast-reply img[src*=rte-tab],#bb_tools_fast-reply img[src*=rte-underlined],#bb_tools_fast-reply img[onclick*=rte-smileTab],#bb_tools_fast-reply img[src*=rte-youtube],#bb_tools_text img[src*=rte-background],#bb_tools_text img[src*=rte-bold],#bb_tools_text img[src*=rte-center],#bb_tools_text img[src*=rte-code],#bb_tools_text img[src*=rte-color],#bb_tools_text img[src*=rte-hide],#bb_tools_text img[src*=rte-html],#bb_tools_text img[src*=rte-image],#bb_tools_text img[src*=rte-italic],#bb_tools_text img[src*=rte-left],#bb_tools_text img[src*=rte-link],#bb_tools_text img[src*=rte-list],#bb_tools_text img[src*=rte-listnum],#bb_tools_text img[src*=rte-quote],#bb_tools_text img[src*=rte-quotesel],#bb_tools_text img[src*=rte-right],#bb_tools_text img[src*=rte-size],#bb_tools_text img[src*=rte-strike],#bb_tools_text img[src*=rte-sub],#bb_tools_text img[src*=rte-sup],#bb_tools_text img[src*=rte-tab],#bb_tools_text img[src*=rte-underlined],#bb_tools_text img[onclick*=rte-smileTab],#bb_tools_text img[src*=rte-youtube]{border-radius:5px !important;box-sizing:border-box !important;padding-left:32px !important;width:32px !important;height:32px !important;image-rendering:crisp-edges !important;border:2px solid rgba(0,0,0,0) !important}#fast-reply-controls img[src*=rte-background]:hover,#fast-reply-controls img[src*=rte-bold]:hover,#fast-reply-controls img[src*=rte-center]:hover,#fast-reply-controls img[src*=rte-code]:hover,#fast-reply-controls img[src*=rte-color]:hover,#fast-reply-controls img[src*=rte-hide]:hover,#fast-reply-controls img[src*=rte-html]:hover,#fast-reply-controls img[src*=rte-image]:hover,#fast-reply-controls img[src*=rte-italic]:hover,#fast-reply-controls img[src*=rte-left]:hover,#fast-reply-controls img[src*=rte-link]:hover,#fast-reply-controls img[src*=rte-list]:hover,#fast-reply-controls img[src*=rte-listnum]:hover,#fast-reply-controls img[src*=rte-quote]:hover,#fast-reply-controls img[src*=rte-quotesel]:hover,#fast-reply-controls img[src*=rte-right]:hover,#fast-reply-controls img[src*=rte-size]:hover,#fast-reply-controls img[src*=rte-strike]:hover,#fast-reply-controls img[src*=rte-sub]:hover,#fast-reply-controls img[src*=rte-sup]:hover,#fast-reply-controls img[src*=rte-tab]:hover,#fast-reply-controls img[src*=rte-underlined]:hover,#fast-reply-controls img[onclick*=rte-smileTab]:hover,#fast-reply-controls img[src*=rte-youtube]:hover,#text-controls img[src*=rte-background]:hover,#text-controls img[src*=rte-bold]:hover,#text-controls img[src*=rte-center]:hover,#text-controls img[src*=rte-code]:hover,#text-controls img[src*=rte-color]:hover,#text-controls img[src*=rte-hide]:hover,#text-controls img[src*=rte-html]:hover,#text-controls img[src*=rte-image]:hover,#text-controls img[src*=rte-italic]:hover,#text-controls img[src*=rte-left]:hover,#text-controls img[src*=rte-link]:hover,#text-controls img[src*=rte-list]:hover,#text-controls img[src*=rte-listnum]:hover,#text-controls img[src*=rte-quote]:hover,#text-controls img[src*=rte-quotesel]:hover,#text-controls img[src*=rte-right]:hover,#text-controls img[src*=rte-size]:hover,#text-controls img[src*=rte-strike]:hover,#text-controls img[src*=rte-sub]:hover,#text-controls img[src*=rte-sup]:hover,#text-controls img[src*=rte-tab]:hover,#text-controls img[src*=rte-underlined]:hover,#text-controls img[onclick*=rte-smileTab]:hover,#text-controls img[src*=rte-youtube]:hover,#bb_tools_fast-reply img[src*=rte-background]:hover,#bb_tools_fast-reply img[src*=rte-bold]:hover,#bb_tools_fast-reply img[src*=rte-center]:hover,#bb_tools_fast-reply img[src*=rte-code]:hover,#bb_tools_fast-reply img[src*=rte-color]:hover,#bb_tools_fast-reply img[src*=rte-hide]:hover,#bb_tools_fast-reply img[src*=rte-html]:hover,#bb_tools_fast-reply img[src*=rte-image]:hover,#bb_tools_fast-reply img[src*=rte-italic]:hover,#bb_tools_fast-reply img[src*=rte-left]:hover,#bb_tools_fast-reply img[src*=rte-link]:hover,#bb_tools_fast-reply img[src*=rte-list]:hover,#bb_tools_fast-reply img[src*=rte-listnum]:hover,#bb_tools_fast-reply img[src*=rte-quote]:hover,#bb_tools_fast-reply img[src*=rte-quotesel]:hover,#bb_tools_fast-reply img[src*=rte-right]:hover,#bb_tools_fast-reply img[src*=rte-size]:hover,#bb_tools_fast-reply img[src*=rte-strike]:hover,#bb_tools_fast-reply img[src*=rte-sub]:hover,#bb_tools_fast-reply img[src*=rte-sup]:hover,#bb_tools_fast-reply img[src*=rte-tab]:hover,#bb_tools_fast-reply img[src*=rte-underlined]:hover,#bb_tools_fast-reply img[onclick*=rte-smileTab]:hover,#bb_tools_fast-reply img[src*=rte-youtube]:hover,#bb_tools_text img[src*=rte-background]:hover,#bb_tools_text img[src*=rte-bold]:hover,#bb_tools_text img[src*=rte-center]:hover,#bb_tools_text img[src*=rte-code]:hover,#bb_tools_text img[src*=rte-color]:hover,#bb_tools_text img[src*=rte-hide]:hover,#bb_tools_text img[src*=rte-html]:hover,#bb_tools_text img[src*=rte-image]:hover,#bb_tools_text img[src*=rte-italic]:hover,#bb_tools_text img[src*=rte-left]:hover,#bb_tools_text img[src*=rte-link]:hover,#bb_tools_text img[src*=rte-list]:hover,#bb_tools_text img[src*=rte-listnum]:hover,#bb_tools_text img[src*=rte-quote]:hover,#bb_tools_text img[src*=rte-quotesel]:hover,#bb_tools_text img[src*=rte-right]:hover,#bb_tools_text img[src*=rte-size]:hover,#bb_tools_text img[src*=rte-strike]:hover,#bb_tools_text img[src*=rte-sub]:hover,#bb_tools_text img[src*=rte-sup]:hover,#bb_tools_text img[src*=rte-tab]:hover,#bb_tools_text img[src*=rte-underlined]:hover,#bb_tools_text img[onclick*=rte-smileTab]:hover,#bb_tools_text img[src*=rte-youtube]:hover{background-color:hsl(0,0%,5%) !important;border-color:hsl(200,20%,30%) !important}.calendar .ui-datepicker-inline{width:fit-content !important;background:hsl(0,0%,5%) !important;overflow:hidden}.calendar .ui-datepicker-header{background:rgba(0,0,0,0) !important;color:hsl(0,0%,70%) !important;border:none !important;border-radius:0;padding:5px}.calendar .ui-datepicker-header .ui-datepicker-title{line-height:40px !important;height:40px !important;text-align:center;font-weight:600;font-size:16px;font-family:\"Montserrat\",Verdana,Geneva,Tahoma,sans-serif !important}.calendar .ui-datepicker-header .ui-datepicker-title .ui-datepicker-month{color:hsl(0,0%,70%) !important}.calendar .ui-datepicker-header .ui-datepicker-title .ui-datepicker-year{color:hsl(200,40%,60%) !important}.calendar .ui-datepicker-header .ui-datepicker-prev{top:.2em !important;left:.2em !important}.calendar .ui-datepicker-header .ui-datepicker-prev .ui-icon{background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"15 18 9 12 15 6\"></polyline></svg>') no-repeat center/20px !important}.calendar .ui-datepicker-header .ui-datepicker-next{top:.2em !important;right:.2em !important}.calendar .ui-datepicker-header .ui-datepicker-next .ui-icon{background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"9 18 15 12 9 6\"></polyline></svg>') no-repeat center/20px !important}.calendar .ui-datepicker-header .ui-datepicker-prev,.calendar .ui-datepicker-header .ui-datepicker-next{background:hsl(0,0%,15%) !important;border:2px solid rgba(0,0,0,0) !important;border-radius:6px;width:40px;height:40px}.calendar .ui-datepicker-header .ui-datepicker-prev:hover:not(.ui-state-disabled),.calendar .ui-datepicker-header .ui-datepicker-next:hover:not(.ui-state-disabled){background:hsl(0,0%,5%) !important;border-color:hsl(200,40%,60%) !important}.calendar .ui-datepicker-header .ui-datepicker-prev.ui-state-disabled,.calendar .ui-datepicker-header .ui-datepicker-next.ui-state-disabled{display:none !important}.calendar .ui-datepicker-calendar{background:hsl(0,0%,5%) !important;border:none !important;width:100%;border-spacing:2px}.calendar .ui-datepicker-calendar thead th{background:rgba(0,0,0,0);border:none !important;padding:12px 8px}.calendar .ui-datepicker-calendar thead th span{color:hsl(200,40%,60%) !important;font-weight:600;font-size:14px;font-family:\"Montserrat\",Verdana,Geneva,Tahoma,sans-serif !important;text-transform:uppercase;letter-spacing:.5px}.calendar .ui-datepicker-calendar tbody td{border:none !important;padding:2px;font-family:\"Montserrat\",Verdana,Geneva,Tahoma,sans-serif !important}.calendar .ui-datepicker-calendar tbody td[data-handler=selectDay]{background:rgba(0,0,0,0) !important}.calendar .ui-datepicker-calendar tbody td[data-handler=selectDay] a.ui-state-default{display:flex;justify-content:center !important;align-items:center !important;width:40px;height:40px;color:hsl(0,0%,70%) !important;background:hsl(0,0%,15%) !important;border:2px solid rgba(0,0,0,0) !important;border-radius:8px;transition:all .2s ease;font-weight:500}.calendar .ui-datepicker-calendar tbody td[data-handler=selectDay] a.ui-state-default:hover{background:hsl(0,0%,5%) !important;color:hsl(200,40%,60%) !important;border:2px solid hsl(200,40%,60%) !important}.calendar .ui-datepicker-calendar tbody td[data-handler=selectDay] a.ui-state-default.ui-state-highlight{background:#689 !important;color:hsl(0,0%,5%) !important;border-color:#689 !important}.calendar .ui-datepicker-calendar tbody td[data-handler=selectDay] a.ui-state-default.ui-state-highlight:hover{background:hsl(200,20%,60%) !important;border-color:hsl(200,20%,60%) !important}.calendar .ui-datepicker-calendar tbody td[data-handler=selectDay] a.ui-state-default.ui-state-active{background:#689 !important;color:hsl(0,0%,5%) !important}.calendar .ui-datepicker-calendar tbody td.ui-state-disabled span.ui-state-default{display:block;width:40px;height:40px;line-height:40px;text-align:center;color:hsla(0,0%,70%,.4) !important;background:rgba(0,0,0,0) !important;border:1px solid rgba(0,0,0,0) !important;border-radius:8px;cursor:not-allowed}.calendar .ui-datepicker-calendar tbody td.ui-datepicker-other-month{visibility:hidden}.calendar .ui-datepicker-week-end[data-handler=selectDay] a.ui-state-default{color:hsl(200,20%,70%) !important}.calendar .ui-datepicker-calendar a:focus,.calendar .ui-datepicker-calendar span:focus{outline:2px solid #689;outline-offset:2px}.notification-bar,#top-popup{display:flex !important;align-items:center !important;justify-content:center !important;flex-direction:column !important;position:absolute !important;left:inherit !important;right:0 !important;background:hsl(0,0%,10%) !important;border:1px solid #689 !important;width:350px !important;height:200px !important;opacity:.5 !important;transition:all 1s !important}.notification-bar:hover,#top-popup:hover{opacity:1 !important}.notification-bar .content,#top-popup .content{text-align:center !important}.notification-bar .right,#top-popup .right{float:unset !important;display:flex !important;align-items:center !important;justify-content:center !important;padding:0 !important;flex-direction:column !important}.notification-bar .right a,#top-popup .right a{transition:all .1s !important;position:relative !important;display:flex !important;justify-content:center !important;align-items:center !important;width:250px !important;height:35px !important;border:1px solid hsl(0,0%,70%) !important;margin:0 !important;padding:0 !important}.notification-bar .right a:hover,#top-popup .right a:hover{background:#772a34 !important;border:1px solid #c68 !important}.notification-bar .right a img,#top-popup .right a img{filter:invert(100%) brightness(2) !important}.notification-bar button,#top-popup button{top:0 !important;display:block !important;height:35px !important;width:250px !important}.notification-bar button:nth-child(2),#top-popup button:nth-child(2){top:-1px !important}.notification-bar input[type=button],#top-popup input[type=button]{width:250px !important;height:35px !important}.notification-bar{z-index:120 !important;transition:all 2s !important;top:-200px !important}.notification-bar.ng-scope{top:45px !important}.notification-bar.ng-scope.fixed{top:45px !important}.notification-bar.ng-scope.ng-hide{top:-200px !important}.notification-bar.ng-scope.ng-hide.fixed{top:-200px !important}.notification-bar button{border:1px solid hsl(0,0%,70%) !important;color:hsl(0,0%,70%) !important;background:none !important}.notification-bar button:hover{border:1px solid #689 !important;color:hsl(0,0%,10%) !important;background:#689 !important}.notification-bar .right a{top:-2px !important}#top-popup{top:-200px}#top-popup[style*=\"display: none\"]{display:none !important}#top-popup[style*=\"top: \"]{top:45px !important}#top-popup[style*=\"top: -\"]{top:-200px !important;transition:all 1s !important}#top-popup .right a{top:-1px !important}#top-popup button:nth-child(2){top:-1px !important}.pages{color:hsl(0,0%,70%) !important;background:hsl(0,0%,5%) !important;position:fixed !important;top:45px !important;right:0 !important;z-index:120 !important;display:flex !important;gap:5px !important;margin:0 !important;padding:10px !important;flex-wrap:wrap !important;border-radius:5px 0 0 5px !important;opacity:.5 !important;transition:opacity .15s ease-in-out !important}@media(max-width: 2000px){.pages{top:unset !important;bottom:0 !important;right:10px !important;border-radius:5px 5px 0 0 !important;flex-direction:column !important;align-items:center !important}}.pages:not(:has(.paginator)){background:rgba(0,0,0,0) !important}.pages:hover{opacity:1 !important;transition:opacity .2s !important}@media(max-width: 1440px){.pages{width:50px !important;height:50px !important;overflow:hidden !important;transition:all .15s ease-in-out !important;cursor:pointer !important}}@media(max-width: 1440px)and (max-width: 800px){.pages{opacity:1 !important;bottom:unset !important;top:88px !important;right:60px !important;border-radius:0 0 5px 5px !important}}@media(max-width: 1440px){.pages:hover{width:auto !important;height:auto !important;transition:all .15s ease-in-out !important}.pages:hover .paginator,.pages:hover .page,.pages:hover .selected{opacity:1 !important;pointer-events:auto !important}.pages .paginator,.pages .page,.pages .selected{opacity:0 !important;transition:opacity .15s ease-in-out !important;pointer-events:none !important}.pages::before{content:\"\" !important;position:absolute !important;top:0 !important;left:0 !important;width:100% !important;height:100% !important;pointer-events:none !important;z-index:1 !important;background:rgba(0,0,0,0) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"1\"></circle><circle cx=\"19\" cy=\"12\" r=\"1\"></circle><circle cx=\"5\" cy=\"12\" r=\"1\"></circle></svg>') no-repeat center !important}.pages:hover::before{opacity:0 !important}}.pages .paginator{font-size:0 !important;margin-bottom:unset !important}.pages .paginator b{display:none !important}.pages .paginator .ctrls{margin:0 !important;display:flex !important;overflow:hidden !important;border-radius:3px !important}@media(max-width: 2000px){.pages .paginator .ctrls{flex-direction:column !important}}.pages .paginator .ctrls i{display:none !important}.pages .paginator .ctrl{margin:0 !important;width:30px !important;height:30px !important}.pages .paginator .ctrl.na{display:none !important}.pages .paginator .ctrl a{display:inline-block !important;height:30px !important;background-color:hsl(210,5%,40%) !important;background-position:center !important;background-repeat:no-repeat !important;background-size:20px !important;text-decoration:none !important;color:hsl(0,0%,15%) !important;padding:0 !important;width:100% !important;text-align:center !important;transition:all .1s !important}.pages .paginator .ctrl a:nth-child(1){background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"9 18 15 12 9 6\"></polyline></svg>') !important}.pages .paginator .ctrl a:nth-child(2){background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"15 18 9 12 15 6\"></polyline></svg>') !important}.pages .paginator .ctrl a:hover{background-color:#689 !important;transition:background-color .1s ease-in-out !important}.pages .page,.pages .selected{justify-content:center !important;align-items:center !important;margin-top:0 !important;height:30px !important;width:30px !important;display:inline-flex !important}.pages .selected{font:bold 14px \"Montserrat\",sans-serif !important;border-radius:3px !important;background:hsl(0,0%,70%) !important;color:hsl(0,0%,15%) !important}.pages .page:last-child{position:relative !important;left:-4px !important}.pages .page a{font:bold 14px \"Montserrat\",sans-serif !important;display:inline-flex !important;width:30px !important;height:30px !important;justify-content:center !important;align-items:center !important;color:hsl(0,0%,10%) !important;padding:0 !important;background:hsl(210,5%,40%) !important;text-decoration:none !important;transition:all .1s !important;margin-top:0 !important}.pages .page a:hover{background:#689 !important;transition:all .1s !important}#gameloading{height:50px !important;width:50px !important;background:rgba(0,0,0,0) !important;border:none !important;display:flex;justify-content:center !important;align-items:center !important;border-radius:50% !important;position:relative !important}#gameloading *{display:none !important}#gameloading::after{content:\"\" !important;position:absolute !important;top:0 !important;left:0 !important;width:100% !important;height:100% !important;border-radius:50% !important;background-image:url(\"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 50 50%27%3E%3Cg transform-origin=%2725 25%27%3E%3Cline x1=%2710%27 y1=%2710%27 x2=%2740%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%271%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%271s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%271;0.5;1%27 dur=%272s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2740%27 y1=%2710%27 x2=%2710%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.9%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%271.2s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.9;0.5;0.9%27 dur=%272.2s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2710%27 y1=%2710%27 x2=%2740%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.8%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%271.4s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.8;0.5;0.8%27 dur=%272.4s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2740%27 y1=%2710%27 x2=%2710%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.7%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%271.6s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.7;0.5;0.7%27 dur=%272.6s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2710%27 y1=%2710%27 x2=%2740%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.6%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%271.8s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.6;0.5;0.6%27 dur=%272.8s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2740%27 y1=%2710%27 x2=%2710%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.5%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%272s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.5;0.5;0.5%27 dur=%273s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2710%27 y1=%2710%27 x2=%2740%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.4%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%272.2s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.4;0.5;0.4%27 dur=%273.2s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2740%27 y1=%2710%27 x2=%2710%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.3%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%272.4s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.3;0.5;0.3%27 dur=%273.4s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3C/g%3E%3C/svg%3E\") !important;background-size:contain !important;background-repeat:no-repeat !important;background-position:center !important;display:block !important}#gameloading{height:50px !important;width:50px !important;background:rgba(0,0,0,0) !important;border:none !important;display:flex;justify-content:center !important;align-items:center !important;border-radius:50% !important;position:relative !important}#gameloading *{display:none !important}#gameloading::after{content:\"\" !important;position:absolute !important;top:0 !important;left:0 !important;width:100% !important;height:100% !important;border-radius:50% !important;background-image:url(\"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 50 50%27%3E%3Cg transform-origin=%2725 25%27%3E%3Cline x1=%2710%27 y1=%2710%27 x2=%2740%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%271%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%271s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%271;0.5;1%27 dur=%272s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2740%27 y1=%2710%27 x2=%2710%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.9%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%271.2s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.9;0.5;0.9%27 dur=%272.2s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2710%27 y1=%2710%27 x2=%2740%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.8%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%271.4s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.8;0.5;0.8%27 dur=%272.4s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2740%27 y1=%2710%27 x2=%2710%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.7%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%271.6s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.7;0.5;0.7%27 dur=%272.6s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2710%27 y1=%2710%27 x2=%2740%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.6%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%271.8s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.6;0.5;0.6%27 dur=%272.8s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2740%27 y1=%2710%27 x2=%2710%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.5%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%272s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.5;0.5;0.5%27 dur=%273s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2710%27 y1=%2710%27 x2=%2740%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.4%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%272.2s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.4;0.5;0.4%27 dur=%273.2s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2740%27 y1=%2710%27 x2=%2710%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.3%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%272.4s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.3;0.5;0.3%27 dur=%273.4s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3C/g%3E%3C/svg%3E\") !important;background-size:contain !important;background-repeat:no-repeat !important;background-position:center !important;display:block !important}#popup .c{position:relative !important;border-radius:1em !important;background-color:hsl(0,0%,10%) !important;box-shadow:0 .5em 1em rgba(0,0,0,.2) !important;padding:1em !important;z-index:5 !important}#popup .c .preerror{color:gray !important}#popup .c s.trackerror{color:hsl(0,80%,70%) !important}#popup .c span.trackerror{color:hsl(0,80%,50%) !important}#popup .c .popup_profile .avatar_big{margin:0 0 1em !important}#popup .c img[src=\"/img/loading.gif\"]{min-height:50px !important;min-width:50px !important;visibility:hidden !important}#popup .c:has(img[src=\"/img/loading.gif\"]){background-image:url(\"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 50 50%27%3E%3Cg transform-origin=%2725 25%27%3E%3Cline x1=%2710%27 y1=%2710%27 x2=%2740%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%271%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%271s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%271;0.5;1%27 dur=%272s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2740%27 y1=%2710%27 x2=%2710%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.9%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%271.2s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.9;0.5;0.9%27 dur=%272.2s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2710%27 y1=%2710%27 x2=%2740%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.8%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%271.4s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.8;0.5;0.8%27 dur=%272.4s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2740%27 y1=%2710%27 x2=%2710%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.7%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%271.6s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.7;0.5;0.7%27 dur=%272.6s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2710%27 y1=%2710%27 x2=%2740%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.6%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%271.8s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.6;0.5;0.6%27 dur=%272.8s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2740%27 y1=%2710%27 x2=%2710%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.5%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%272s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.5;0.5;0.5%27 dur=%273s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2710%27 y1=%2710%27 x2=%2740%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.4%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%272.2s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.4;0.5;0.4%27 dur=%273.2s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3Cline x1=%2740%27 y1=%2710%27 x2=%2710%27 y2=%2740%27 stroke=%27%23ff8c00%27 stroke-width=%272%27 opacity=%270.3%27%3E%3CanimateTransform attributeName=%27transform%27 type=%27rotate%27 values=%270 25 25;360 25 25%27 dur=%272.4s%27 repeatCount=%27indefinite%27/%3E%3Canimate attributeName=%27opacity%27 values=%270.3;0.5;0.3%27 dur=%273.4s%27 repeatCount=%27indefinite%27/%3E%3C/line%3E%3C/g%3E%3C/svg%3E\") !important;background-size:50px 50px !important;background-repeat:no-repeat !important;background-position:center !important;min-height:50px !important;min-width:50px !important}.popup_message .popup-box,#drop_message .popup-box{border-radius:10px !important;overflow:hidden !important;border:1px solid hsl(210,5%,40%) !important}.popup_message .c,#drop_message .c{background:hsl(0,0%,5%) !important;padding:1em !important}.popup_message .c b,.popup_message .c strong,#drop_message .c b,#drop_message .c strong{color:hsl(200,40%,60%) !important}.popup_message textarea,#drop_message textarea{width:100% !important;min-width:300px !important;resize:vertical !important;background-color:hsl(0,0%,5%) !important;padding:.5em !important;border-radius:5px !important}.popup_message h4,.popup_message h5,#drop_message h4,#drop_message h5{color:hsl(30,65%,50%) !important;margin:0 0 1em !important}.popup_message .btn,.popup_message input[type=button],#drop_message .btn,#drop_message input[type=button]{margin:0 .5em !important;padding:6px 12px !important;border-radius:3px !important;height:30px !important;line-height:15px !important;border:none !important;outline:none !important;color:hsl(0,0%,5%) !important;background:hsl(210,5%,40%) !important;transition:color .15s ease-in-out,background .15s ease-in-out !important}.popup_message .btn:hover,.popup_message input[type=button]:hover,#drop_message .btn:hover,#drop_message input[type=button]:hover{background:#689 !important}img[src*=\"/img/smilies/\"]{box-sizing:border-box !important}img[src*=\"/img/smilies/acute.gif\"]{background:url(\"https://i.imgur.com/1G1lwqS.gif\") no-repeat;width:27px !important;height:24px !important;padding-left:27px !important}img[src*=\"/img/smilies/angry.gif\"]{background:url(\"https://i.imgur.com/7EZu5kN.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/angry2.gif\"]{background:url(\"https://i.imgur.com/az8LGqF.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/angrygirl.gif\"]{background:url(\"https://i.imgur.com/2weI6WJ.gif\") no-repeat;width:39px !important;height:26px !important;padding-left:39px !important}img[src*=\"/img/smilies/bad.gif\"]{background:url(\"https://i.imgur.com/25cU2j0.gif\") no-repeat;width:34px !important;height:26px !important;padding-left:34px !important}img[src*=\"/img/smilies/badcomp.gif\"]{background:url(\"https://i.imgur.com/mtYR6VH.gif\") no-repeat;width:60px !important;height:23px !important;padding-left:60px !important}img[src*=\"/img/smilies/beer.gif\"]{background:url(\"https://i.imgur.com/HL0cn2F.gif\") no-repeat;width:51px !important;height:28px !important;padding-left:51px !important}img[src*=\"/img/smilies/biggrin.gif\"]{background:url(\"https://i.imgur.com/1izlFKX.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/birthday.gif\"]{background:url(\"https://i.imgur.com/OoX8Svq.gif\") no-repeat;width:38px !important;height:33px !important;padding-left:38px !important}img[src*=\"/img/smilies/blink.gif\"]{background:url(\"https://i.imgur.com/jeVusPJ.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/blush.gif\"]{background:url(\"https://i.imgur.com/r4aZiOW.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/boredom.gif\"]{background:url(\"https://i.imgur.com/zNrahaO.gif\") no-repeat;width:26px !important;height:22px !important;padding-left:26px !important}img[src*=\"/img/smilies/boykiss.gif\"]{background:url(\"https://i.imgur.com/d3t5OEH.gif\") no-repeat;width:47px !important;height:24px !important;padding-left:47px !important}img[src*=\"/img/smilies/bye.gif\"]{background:url(\"https://i.imgur.com/5Co5wg6.gif\") no-repeat;width:29px !important;height:24px !important;padding-left:29px !important}img[src*=\"/img/smilies/chaingun.gif\"]{background:url(\"https://i.imgur.com/1vUdY8X.gif\") no-repeat;width:49px !important;height:28px !important;padding-left:49px !important}img[src*=\"/img/smilies/champ.gif\"]{background:url(\"https://i.imgur.com/fdjzIwI.gif\") no-repeat;width:40px !important;height:40px !important;padding-left:40px !important}img[src*=\"/img/smilies/champ2.gif\"]{background:url(\"https://i.imgur.com/Zz5b5tA.gif\") no-repeat;width:37px !important;height:37px !important;padding-left:37px !important}img[src*=\"/img/smilies/cheerful.gif\"]{background:url(\"https://i.imgur.com/5oOpo9D.gif\") no-repeat;width:32px !important;height:25px !important;padding-left:32px !important}img[src*=\"/img/smilies/cheerleader.gif\"]{background:url(\"https://i.imgur.com/NjC1VvH.gif\") no-repeat;width:52px !important;height:43px !important;padding-left:52px !important}img[src*=\"/img/smilies/clapgirl.gif\"]{background:url(\"https://i.imgur.com/exvbGhj.gif\") no-repeat;width:40px !important;height:25px !important;padding-left:40px !important}img[src*=\"/img/smilies/clapping.gif\"]{background:url(\"https://i.imgur.com/0af69uN.gif\") no-repeat;width:40px !important;height:24px !important;padding-left:40px !important}img[src*=\"/img/smilies/complaugh.gif\"]{background:url(\"https://i.imgur.com/fiyPmai.gif\") no-repeat;width:50px !important;height:30px !important;padding-left:50px !important}img[src*=\"/img/smilies/confetti.gif\"]{background:url(\"https://i.imgur.com/sV37HeR.gif\") no-repeat;width:74px !important;height:58px !important;padding-left:74px !important}img[src*=\"/img/smilies/confuse.gif\"]{background:url(\"https://i.imgur.com/HBiNPPQ.gif\") no-repeat;width:34px !important;height:39px !important;padding-left:34px !important}img[src*=\"/img/smilies/cool.gif\"]{background:url(\"https://i.imgur.com/ZT1WJ2G.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/crazy.gif\"]{background:url(\"https://i.imgur.com/TnjoCwa.gif\") no-repeat;width:20px !important;height:27px !important;padding-left:20px !important}img[src*=\"/img/smilies/cry.gif\"]{background:url(\"https://i.imgur.com/tKnJBT7.gif\") no-repeat;width:31px !important;height:22px !important;padding-left:31px !important}img[src*=\"/img/smilies/cult.gif\"]{background:url(\"https://i.imgur.com/WNWJUpQ.gif\") no-repeat;width:36px !important;height:24px !important;padding-left:36px !important}img[src*=\"/img/smilies/curtsey.gif\"]{background:url(\"https://i.imgur.com/bcl5fH8.gif\") no-repeat;width:38px !important;height:24px !important;padding-left:38px !important}img[src*=\"/img/smilies/dance.gif\"]{background:url(\"https://i.imgur.com/JsQau5J.gif\") no-repeat;width:42px !important;height:25px !important;padding-left:42px !important}img[src*=\"/img/smilies/dash.gif\"]{background:url(\"https://i.imgur.com/P5TV0vH.gif\") no-repeat;width:31px !important;height:26px !important;padding-left:31px !important}img[src*=\"/img/smilies/diablo.gif\"]{background:url(\"https://i.imgur.com/oXaQqOA.gif\") no-repeat;width:39px !important;height:34px !important;padding-left:39px !important}img[src*=\"/img/smilies/dry.gif\"]{background:url(\"https://i.imgur.com/0tTjGUe.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/excl.gif\"]{background:url(\"https://i.imgur.com/ybeTMvE.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/facepalm.gif\"]{background:url(\"https://i.imgur.com/d2GeMNd.gif\") no-repeat;width:28px !important;height:24px !important;padding-left:28px !important}img[src*=\"/img/smilies/first.gif\"]{background:url(\"https://i.imgur.com/na7IM9v.gif\") no-repeat;width:31px !important;height:26px !important;padding-left:31px !important}img[src*=\"/img/smilies/formula1.gif\"]{background:url(\"https://i.imgur.com/HALH1eA.gif\") no-repeat;width:60px !important;height:35px !important;padding-left:60px !important}img[src*=\"/img/smilies/friends.gif\"]{background:url(\"https://i.imgur.com/kM3Qt3A.gif\") no-repeat;width:52px !important;height:28px !important;padding-left:52px !important}img[src*=\"/img/smilies/gamer.gif\"]{background:url(\"https://i.imgur.com/xvCjZDj.gif\") no-repeat;width:37px !important;height:27px !important;padding-left:37px !important}img[src*=\"/img/smilies/girlblum.gif\"]{background:url(\"https://i.imgur.com/XYfb9i1.gif\") no-repeat;width:34px !important;height:23px !important;padding-left:34px !important}img[src*=\"/img/smilies/girlconfuse.gif\"]{background:url(\"https://i.imgur.com/DWVYZg9.gif\") no-repeat;width:34px !important;height:39px !important;padding-left:34px !important}img[src*=\"/img/smilies/girlcrazy.gif\"]{background:url(\"https://i.imgur.com/r7VvZL0.gif\") no-repeat;width:37px !important;height:25px !important;padding-left:37px !important}img[src*=\"/img/smilies/girlcry.gif\"]{background:url(\"https://i.imgur.com/tyR1jUQ.gif\") no-repeat;width:38px !important;height:24px !important;padding-left:38px !important}img[src*=\"/img/smilies/girldevil.gif\"]{background:url(\"https://i.imgur.com/R9zJvwf.gif\") no-repeat;width:46px !important;height:28px !important;padding-left:46px !important}img[src*=\"/img/smilies/girlimpossible.gif\"]{background:url(\"https://i.imgur.com/JjSjFtN.gif\") no-repeat;width:34px !important;height:23px !important;padding-left:34px !important}img[src*=\"/img/smilies/girlinlove.gif\"]{background:url(\"https://i.imgur.com/uDNwf6q.gif\") no-repeat;width:37px !important;height:27px !important;padding-left:37px !important}img[src*=\"/img/smilies/girlkiss.gif\"]{background:url(\"https://i.imgur.com/4eP0nNe.gif\") no-repeat;width:34px !important;height:23px !important;padding-left:34px !important}img[src*=\"/img/smilies/girlkissboy.gif\"]{background:url(\"https://i.imgur.com/1eePWVo.gif\") no-repeat;width:51px !important;height:24px !important;padding-left:51px !important}img[src*=\"/img/smilies/girlmusic.gif\"]{background:url(\"https://i.imgur.com/Yw3HP4G.gif\") no-repeat;width:34px !important;height:25px !important;padding-left:34px !important}img[src*=\"/img/smilies/girlnervous.gif\"]{background:url(\"https://i.imgur.com/6dJ9jjA.gif\") no-repeat;width:34px !important;height:24px !important;padding-left:34px !important}img[src*=\"/img/smilies/girlnotebook.gif\"]{background:url(\"https://i.imgur.com/O5ynsPg.gif\") no-repeat;width:55px !important;height:25px !important;padding-left:55px !important}img[src*=\"/img/smilies/girlsad.gif\"]{background:url(\"https://i.imgur.com/5MuGstW.gif\") no-repeat;width:34px !important;height:23px !important;padding-left:34px !important}img[src*=\"/img/smilies/girlscare.gif\"]{background:url(\"https://i.imgur.com/XlZHr5f.gif\") no-repeat;width:34px !important;height:29px !important;padding-left:34px !important}img[src*=\"/img/smilies/girlsick.gif\"]{background:url(\"https://i.imgur.com/JMtQE3n.gif\") no-repeat;width:32px !important;height:30px !important;padding-left:32px !important}img[src*=\"/img/smilies/girlsilence.gif\"]{background:url(\"https://i.imgur.com/8X3zfHF.gif\") no-repeat;width:31px !important;height:24px !important;padding-left:31px !important}img[src*=\"/img/smilies/girlstop.gif\"]{background:url(\"https://i.imgur.com/cHatIQz.gif\") no-repeat;width:37px !important;height:27px !important;padding-left:37px !important}img[src*=\"/img/smilies/girltea.gif\"]{background:url(\"https://i.imgur.com/NFshNoo.gif\") no-repeat;width:39px !important;height:31px !important;padding-left:39px !important}img[src*=\"/img/smilies/girlwacko.gif\"]{background:url(\"https://i.imgur.com/Z5XPvpi.gif\") no-repeat;width:36px !important;height:24px !important;padding-left:36px !important}img[src*=\"/img/smilies/girlwink.gif\"]{background:url(\"https://i.imgur.com/fHToNdU.gif\") no-repeat;width:34px !important;height:23px !important;padding-left:34px !important}img[src*=\"/img/smilies/girlwitch.gif\"]{background:url(\"https://i.imgur.com/bHMam3r.gif\") no-repeat;width:46px !important;height:31px !important;padding-left:46px !important}img[src*=\"/img/smilies/girlwonder.gif\"]{background:url(\"https://i.imgur.com/iWR7yTc.gif\") no-repeat;width:34px !important;height:29px !important;padding-left:34px !important}img[src*=\"/img/smilies/good.gif\"]{background:url(\"https://i.imgur.com/HPUgC4I.gif\") no-repeat;width:26px !important;height:23px !important;padding-left:26px !important}img[src*=\"/img/smilies/goody.gif\"]{background:url(\"https://i.imgur.com/g9hBLOY.gif\") no-repeat;width:39px !important;height:46px !important;padding-left:39px !important}img[src*=\"/img/smilies/grose.gif\"]{background:url(\"https://i.imgur.com/vWzMbI0.gif\") no-repeat;width:36px !important;height:26px !important;padding-left:36px !important}img[src*=\"/img/smilies/happy.gif\"]{background:url(\"https://i.imgur.com/vivMTfk.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/heart.gif\"]{background:url(\"https://i.imgur.com/mkPcBgD.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/hello.gif\"]{background:url(\"https://i.imgur.com/vJLoI8j.gif\") no-repeat;width:42px !important;height:28px !important;padding-left:42px !important}img[src*=\"/img/smilies/hi.gif\"]{background:url(\"https://i.imgur.com/jPge57f.gif\") no-repeat;width:43px !important;height:28px !important;padding-left:43px !important}img[src*=\"/img/smilies/hiya.gif\"]{background:url(\"https://i.imgur.com/yjakGun.gif\") no-repeat;width:33px !important;height:30px !important;padding-left:33px !important}img[src*=\"/img/smilies/huh.gif\"]{background:url(\"https://i.imgur.com/ekNIzS3.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/hysteric.gif\"]{background:url(\"https://i.imgur.com/r8f3z6a.gif\") no-repeat;width:41px !important;height:25px !important;padding-left:41px !important}img[src*=\"/img/smilies/kgagainstaz.gif\"]{background:url(\"https://i.imgur.com/YdMISxj.gif\") no-repeat;width:54px !important;height:49px !important;padding-left:54px !important}img[src*=\"/img/smilies/kgrace.gif\"]{background:url(\"https://i.imgur.com/MbusvOG.gif\") no-repeat;width:54px !important;height:30px !important;padding-left:54px !important}img[src*=\"/img/smilies/kissed.gif\"]{background:url(\"https://i.imgur.com/xl9qT4b.gif\") no-repeat;width:23px !important;height:26px !important;padding-left:23px !important}img[src*=\"/img/smilies/laugh.gif\"]{background:url(\"https://i.imgur.com/z55dYmU.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/megashok.gif\"]{background:url(\"https://i.imgur.com/mhK4kL2.gif\") no-repeat;width:32px !important;height:28px !important;padding-left:32px !important}img[src*=\"/img/smilies/mellow.gif\"]{background:url(\"https://i.imgur.com/pFxWDUo.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/music.gif\"]{background:url(\"https://i.imgur.com/7DbX8OC.gif\") no-repeat;width:28px !important;height:25px !important;padding-left:28px !important}img[src*=\"/img/smilies/nervous.gif\"]{background:url(\"https://i.imgur.com/KVIJBeT.gif\") no-repeat;width:24px !important;height:24px !important;padding-left:24px !important}img[src*=\"/img/smilies/no.gif\"]{background:url(\"https://i.imgur.com/TSJBa3L.gif\") no-repeat;width:36px !important;height:26px !important;padding-left:36px !important}img[src*=\"/img/smilies/ohmy.gif\"]{background:url(\"https://i.imgur.com/DLzzmCI.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/ok.gif\"]{background:url(\"https://i.imgur.com/0XtQCf1.gif\") no-repeat;width:40px !important;height:26px !important;padding-left:40px !important}img[src*=\"/img/smilies/ph34r.gif\"]{background:url(\"https://i.imgur.com/Ws3W9uV.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/popcorn.gif\"]{background:url(\"https://i.imgur.com/Z3ENOfC.gif\") no-repeat;width:38px !important;height:28px !important;padding-left:38px !important}img[src*=\"/img/smilies/power.gif\"]{background:url(\"https://i.imgur.com/sjV841n.gif\") no-repeat;width:37px !important;height:25px !important;padding-left:37px !important}img[src*=\"/img/smilies/rofl.gif\"]{background:url(\"https://i.imgur.com/IaNQMVz.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/rofl2.gif\"]{background:url(\"https://i.imgur.com/eFr2i3h.gif\") no-repeat;width:29px !important;height:25px !important;padding-left:29px !important}img[src*=\"/img/smilies/rolleyes.gif\"]{background:url(\"https://i.imgur.com/OkpQ7rC.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/rose.gif\"]{background:url(\"https://i.imgur.com/myQE7Zt.gif\") no-repeat;width:30px !important;height:26px !important;padding-left:30px !important}img[src*=\"/img/smilies/russian.gif\"]{background:url(\"https://i.imgur.com/MIkn3cW.gif\") no-repeat;width:31px !important;height:30px !important;padding-left:31px !important}img[src*=\"/img/smilies/sad.gif\"]{background:url(\"https://i.imgur.com/qxObHmk.gif\") no-repeat;width:20px !important;height:24px !important;padding-left:20px !important}img[src*=\"/img/smilies/scare.gif\"]{background:url(\"https://i.imgur.com/DsZMP0O.gif\") no-repeat;width:42px !important;height:34px !important;padding-left:42px !important}img[src*=\"/img/smilies/second.gif\"]{background:url(\"https://i.imgur.com/gAjowLu.gif\") no-repeat;width:31px !important;height:26px !important;padding-left:31px !important}img[src*=\"/img/smilies/shok.gif\"]{background:url(\"https://i.imgur.com/gB9EX3g.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/sick.gif\"]{background:url(\"https://i.imgur.com/qdjiV5Z.gif\") no-repeat;width:23px !important;height:30px !important;padding-left:23px !important}img[src*=\"/img/smilies/silence.gif\"]{background:url(\"https://i.imgur.com/UShpo97.gif\") no-repeat;width:26px !important;height:24px !important;padding-left:26px !important}img[src*=\"/img/smilies/sleep.gif\"]{background:url(\"https://i.imgur.com/7LHHW7Z.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/smile.gif\"]{background:url(\"https://i.imgur.com/xzX4ROI.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/sorry.gif\"]{background:url(\"https://i.imgur.com/5mk3wHK.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/spiteful.gif\"]{background:url(\"https://i.imgur.com/2qb0IZ8.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/spruceup.gif\"]{background:url(\"https://i.imgur.com/NoONjdI.gif\") no-repeat;width:37px !important;height:25px !important;padding-left:37px !important}img[src*=\"/img/smilies/spruceup1.gif\"]{background:url(\"https://i.imgur.com/wjoaTbH.gif\") no-repeat;width:38px !important;height:29px !important;padding-left:38px !important}img[src*=\"/img/smilies/tea.gif\"]{background:url(\"https://i.imgur.com/1DUZXRr.gif\") no-repeat;width:33px !important;height:31px !important;padding-left:33px !important}img[src*=\"/img/smilies/tender.gif\"]{background:url(\"https://i.imgur.com/igKWq6Q.gif\") no-repeat;width:36px !important;height:23px !important;padding-left:36px !important}img[src*=\"/img/smilies/third.gif\"]{background:url(\"https://i.imgur.com/jQwmDht.gif\") no-repeat;width:31px !important;height:26px !important;padding-left:31px !important}img[src*=\"/img/smilies/tongue.gif\"]{background:url(\"https://i.imgur.com/QsVoBrE.gif\") no-repeat;width:20px !important;height:24px !important;padding-left:20px !important}img[src*=\"/img/smilies/umbrage.gif\"]{background:url(\"https://i.imgur.com/FPENERv.gif\") no-repeat;width:35px !important;height:23px !important;padding-left:35px !important}img[src*=\"/img/smilies/unsure.gif\"]{background:url(\"https://i.imgur.com/v1XblKg.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/vampire.gif\"]{background:url(\"https://i.imgur.com/fw92koM.gif\") no-repeat;width:54px !important;height:36px !important;padding-left:54px !important}img[src*=\"/img/smilies/victory.gif\"]{background:url(\"https://i.imgur.com/5OLLeVP.gif\") no-repeat;width:28px !important;height:23px !important;padding-left:28px !important}img[src*=\"/img/smilies/wacko.gif\"]{background:url(\"https://i.imgur.com/6CduKCz.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/whistle.gif\"]{background:url(\"https://i.imgur.com/SPHSXpP.gif\") no-repeat;width:26px !important;height:25px !important;padding-left:26px !important}img[src*=\"/img/smilies/wink.gif\"]{background:url(\"https://i.imgur.com/L60fUMB.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/wizard.gif\"]{background:url(\"https://i.imgur.com/zqlxhrN.gif\") no-repeat;width:42px !important;height:31px !important;padding-left:42px !important}img[src*=\"/img/smilies/wub.gif\"]{background:url(\"https://i.imgur.com/jORcTG2.gif\") no-repeat;width:22px !important;height:29px !important;padding-left:22px !important}img[src*=\"/img/smilies/yes.gif\"]{background:url(\"https://i.imgur.com/X7WJOZD.gif\") no-repeat;width:20px !important;height:24px !important;padding-left:20px !important}img[src*=\"/img/smilies/adultery.gif\"]{background:url(\"https://i.imgur.com/Kb45ETK.gif\") no-repeat;width:79px !important;height:28px !important;padding-left:79px !important}img[src*=\"/img/smilies/airkiss.gif\"]{background:url(\"https://i.imgur.com/vv081cT.gif\") no-repeat;width:41px !important;height:30px !important;padding-left:41px !important}img[src*=\"/img/smilies/ak47.gif\"]{background:url(\"https://i.imgur.com/jahkb54.gif\") no-repeat;width:49px !important;height:23px !important;padding-left:49px !important}img[src*=\"/img/smilies/armyscare.gif\"]{background:url(\"https://i.imgur.com/gen1udM.gif\") no-repeat;width:43px !important;height:35px !important;padding-left:43px !important}img[src*=\"/img/smilies/barret.gif\"]{background:url(\"https://i.imgur.com/bQpHMDe.gif\") no-repeat;width:79px !important;height:19px !important;padding-left:79px !important}img[src*=\"/img/smilies/captain.gif\"]{background:url(\"https://i.imgur.com/e2qQkpA.gif\") no-repeat;width:29px !important;height:29px !important;padding-left:29px !important}img[src*=\"/img/smilies/cheers.gif\"]{background:url(\"https://i.imgur.com/1xZfeux.gif\") no-repeat;width:28px !important;height:28px !important;padding-left:28px !important}img[src*=\"/img/smilies/christmasevil.gif\"]{background:url(\"https://i.imgur.com/wM7hm9f.gif\") no-repeat;width:33px !important;height:32px !important;padding-left:33px !important}img[src*=\"/img/smilies/comandos.gif\"]{background:url(\"https://i.imgur.com/1x70VOh.gif\") no-repeat;width:23px !important;height:23px !important;padding-left:23px !important}img[src*=\"/img/smilies/flowers.gif\"]{background:url(\"https://i.imgur.com/oc1oyQR.gif\") no-repeat;width:43px !important;height:44px !important;padding-left:43px !important}img[src*=\"/img/smilies/flowers2.gif\"]{background:url(\"https://i.imgur.com/CehwtS6.gif\") no-repeat;width:30px !important;height:28px !important;padding-left:30px !important}img[src*=\"/img/smilies/girlheart2.gif\"]{background:url(\"https://i.imgur.com/V7idplC.gif\") no-repeat;width:38px !important;height:28px !important;padding-left:38px !important}img[src*=\"/img/smilies/girlicecream.gif\"]{background:url(\"https://i.imgur.com/GCDf6sw.gif\") no-repeat;width:50px !important;height:37px !important;padding-left:50px !important}img[src*=\"/img/smilies/girllove.gif\"]{background:url(\"https://i.imgur.com/9IX9DyP.gif\") no-repeat;width:27px !important;height:35px !important;padding-left:27px !important}img[src*=\"/img/smilies/girlmad.gif\"]{background:url(\"https://i.imgur.com/5dJvOIi.gif\") no-repeat;width:34px !important;height:28px !important;padding-left:34px !important}img[src*=\"/img/smilies/girlobserve.gif\"]{background:url(\"https://i.imgur.com/q6ty1KP.gif\") no-repeat;width:39px !important;height:25px !important;padding-left:39px !important}img[src*=\"/img/smilies/girlpogran.gif\"]{background:url(\"https://i.imgur.com/uH5TSxV.gif\") no-repeat;width:37px !important;height:30px !important;padding-left:37px !important}img[src*=\"/img/smilies/girlranker.gif\"]{background:url(\"https://i.imgur.com/BTIHyhM.gif\") no-repeat;width:35px !important;height:24px !important;padding-left:35px !important}img[src*=\"/img/smilies/girlrogatka.gif\"]{background:url(\"https://i.imgur.com/ryIYzZk.gif\") no-repeat;width:63px !important;height:22px !important;padding-left:63px !important}img[src*=\"/img/smilies/girlshighfive.gif\"]{background:url(\"https://i.imgur.com/rbRq7Y9.gif\") no-repeat;width:62px !important;height:30px !important;padding-left:62px !important}img[src*=\"/img/smilies/girlvdv.gif\"]{background:url(\"https://i.imgur.com/wBDUZZ0.gif\") no-repeat;width:35px !important;height:24px !important;padding-left:35px !important}img[src*=\"/img/smilies/hairdryer.gif\"]{background:url(\"https://i.imgur.com/XFWTRLW.gif\") no-repeat;width:50px !important;height:30px !important;padding-left:50px !important}img[src*=\"/img/smilies/heart2.gif\"]{background:url(\"https://i.imgur.com/Z4AxNzW.gif\") no-repeat;width:29px !important;height:28px !important;padding-left:29px !important}img[src*=\"/img/smilies/hug.gif\"]{background:url(\"https://i.imgur.com/vaOkURD.gif\") no-repeat;width:59px !important;height:24px !important;padding-left:59px !important}img[src*=\"/img/smilies/inlove.gif\"]{background:url(\"https://i.imgur.com/0Sebbkf.gif\") no-repeat;width:46px !important;height:33px !important;padding-left:46px !important}img[src*=\"/img/smilies/moose.gif\"]{background:url(\"https://i.imgur.com/5tIelVB.gif\") no-repeat;width:55px !important;height:28px !important;padding-left:55px !important}img[src*=\"/img/smilies/nolove.gif\"]{background:url(\"https://i.imgur.com/uwgunbM.gif\") no-repeat;width:45px !important;height:45px !important;padding-left:45px !important}img[src*=\"/img/smilies/pogranmail.gif\"]{background:url(\"https://i.imgur.com/f0gThdD.gif\") no-repeat;width:38px !important;height:43px !important;padding-left:38px !important}img[src*=\"/img/smilies/pogranminigun.gif\"]{background:url(\"https://i.imgur.com/TFyZHtP.gif\") no-repeat;width:60px !important;height:34px !important;padding-left:60px !important}img[src*=\"/img/smilies/pogranrose.gif\"]{background:url(\"https://i.imgur.com/SPUSRyq.gif\") no-repeat;width:30px !important;height:26px !important;padding-left:30px !important}img[src*=\"/img/smilies/pograntort.gif\"]{background:url(\"https://i.imgur.com/UFHXc6u.gif\") no-repeat;width:40px !important;height:28px !important;padding-left:40px !important}img[src*=\"/img/smilies/primp.gif\"]{background:url(\"https://i.imgur.com/w9NE0cf.gif\") no-repeat;width:60px !important;height:35px !important;padding-left:60px !important}img[src*=\"/img/smilies/prival.gif\"]{background:url(\"https://i.imgur.com/qTmiROR.gif\") no-repeat;width:97px !important;height:36px !important;padding-left:97px !important}img[src*=\"/img/smilies/radistka.gif\"]{background:url(\"https://i.imgur.com/2BH0BX9.gif\") no-repeat;width:41px !important;height:27px !important;padding-left:41px !important}img[src*=\"/img/smilies/ranker.gif\"]{background:url(\"https://i.imgur.com/I0rfdKZ.gif\") no-repeat;width:20px !important;height:24px !important;padding-left:20px !important}img[src*=\"/img/smilies/rogatka.gif\"]{background:url(\"https://i.imgur.com/QwQqlSa.gif\") no-repeat;width:63px !important;height:22px !important;padding-left:63px !important}img[src*=\"/img/smilies/serenade.gif\"]{background:url(\"https://i.imgur.com/oENk4xa.gif\") no-repeat;width:30px !important;height:60px !important;padding-left:30px !important}img[src*=\"/img/smilies/smell.gif\"]{background:url(\"https://i.imgur.com/DcyzqBg.gif\") no-repeat;width:30px !important;height:26px !important;padding-left:30px !important}img[src*=\"/img/smilies/soldier.gif\"]{background:url(\"https://i.imgur.com/fSmJef1.gif\") no-repeat;width:26px !important;height:28px !important;padding-left:26px !important}img[src*=\"/img/smilies/spruce.gif\"]{background:url(\"https://i.imgur.com/lo0oUoY.gif\") no-repeat;width:58px !important;height:40px !important;padding-left:58px !important}img[src*=\"/img/smilies/vdv.gif\"]{background:url(\"https://i.imgur.com/lx2ZtCN.gif\") no-repeat;width:23px !important;height:23px !important;padding-left:23px !important}img[src*=\"/img/smilies/wedance.gif\"]{background:url(\"https://i.imgur.com/oFXtHfI.gif\") no-repeat;width:59px !important;height:24px !important;padding-left:59px !important}img[src*=\"/img/smilies/wedding.gif\"]{background:url(\"https://i.imgur.com/qBFQSIf.gif\") no-repeat;width:56px !important;height:36px !important;padding-left:56px !important}img[src*=\"/img/smilies/wine.gif\"]{background:url(\"https://i.imgur.com/J3km0Nb.gif\") no-repeat;width:28px !important;height:28px !important;padding-left:28px !important}img[src*=\"/img/smilies/witch.gif\"]{background:url(\"https://i.imgur.com/p8cLrVc.gif\") no-repeat;width:34px !important;height:40px !important;padding-left:34px !important}img[src*=\"/img/smilies/alien.gif\"]{background:url(\"https://i.imgur.com/GDLbmiZ.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/batman.gif\"]{background:url(\"https://i.imgur.com/wHHAD7c.gif\") no-repeat;width:20px !important;height:27px !important;padding-left:20px !important}img[src*=\"/img/smilies/bebebe.gif\"]{background:url(\"https://i.imgur.com/Epu6Fz6.gif\") no-repeat;width:28px !important;height:25px !important;padding-left:28px !important}img[src*=\"/img/smilies/bite.gif\"]{background:url(\"https://i.imgur.com/BvBjcPa.gif\") no-repeat;width:25px !important;height:28px !important;padding-left:25px !important}img[src*=\"/img/smilies/clown.gif\"]{background:url(\"https://i.imgur.com/00CYz93.gif\") no-repeat;width:50px !important;height:25px !important;padding-left:50px !important}img[src*=\"/img/smilies/corsair.gif\"]{background:url(\"https://i.imgur.com/z2IMwlg.gif\") no-repeat;width:45px !important;height:50px !important;padding-left:45px !important}img[src*=\"/img/smilies/cowboy.gif\"]{background:url(\"https://i.imgur.com/Qcx1z4C.gif\") no-repeat;width:40px !important;height:50px !important;padding-left:40px !important}img[src*=\"/img/smilies/cyborg.gif\"]{background:url(\"https://i.imgur.com/lTwI5up.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/dandy.gif\"]{background:url(\"https://i.imgur.com/b9QY78j.gif\") no-repeat;width:30px !important;height:30px !important;padding-left:30px !important}img[src*=\"/img/smilies/dwarf.gif\"]{background:url(\"https://i.imgur.com/cZtvhnw.gif\") no-repeat;width:46px !important;height:48px !important;padding-left:46px !important}img[src*=\"/img/smilies/ghost.gif\"]{background:url(\"https://i.imgur.com/59IVj4Q.gif\") no-repeat;width:45px !important;height:23px !important;padding-left:45px !important}img[src*=\"/img/smilies/girlpirate.gif\"]{background:url(\"https://i.imgur.com/tThI1JG.gif\") no-repeat;width:33px !important;height:25px !important;padding-left:33px !important}img[src*=\"/img/smilies/heyfrombag.gif\"]{background:url(\"https://i.imgur.com/zxSzE6k.gif\") no-repeat;width:30px !important;height:30px !important;padding-left:30px !important}img[src*=\"/img/smilies/musketeer.gif\"]{background:url(\"https://i.imgur.com/tO416xm.gif\") no-repeat;width:45px !important;height:60px !important;padding-left:45px !important}img[src*=\"/img/smilies/pioneer.gif\"]{background:url(\"https://i.imgur.com/nAi4HPf.gif\") no-repeat;width:29px !important;height:33px !important;padding-left:29px !important}img[src*=\"/img/smilies/robot.gif\"]{background:url(\"https://i.imgur.com/AVsrLYH.gif\") no-repeat;width:20px !important;height:20px !important;padding-left:20px !important}img[src*=\"/img/smilies/spider.gif\"]{background:url(\"https://i.imgur.com/0h64DMz.gif\") no-repeat;width:51px !important;height:25px !important;padding-left:51px !important}img[src*=\"/img/smilies/supergirl.gif\"]{background:url(\"https://i.imgur.com/kZ7KePp.gif\") no-repeat;width:38px !important;height:27px !important;padding-left:38px !important}img[src*=\"/img/smilies/terminator.gif\"]{background:url(\"https://i.imgur.com/vQAaXt2.gif\") no-repeat;width:31px !important;height:31px !important;padding-left:31px !important}img[src*=\"/img/smilies/turtle.gif\"]{background:url(\"https://i.imgur.com/N7lbJa7.gif\") no-repeat;width:32px !important;height:31px !important;padding-left:32px !important}img[src*=\"/img/smilies/rocker.gif\"]{background:url(\"https://i.imgur.com/YUaAGSf.gif\") no-repeat;width:49px !important;height:44px !important;padding-left:49px !important}img[src*=\"/img/smilies/bayanist.gif\"]{background:url(\"https://i.imgur.com/WdyM62h.gif\") no-repeat;width:50px !important;height:45px !important;padding-left:50px !important}img[src*=\"/img/smilies/girlrevolve.gif\"]{background:url(\"https://i.imgur.com/gEivr1Y.gif\") no-repeat;width:35px !important;height:40px !important;padding-left:35px !important}img[src*=\"/img/smilies/merrychristmas.gif\"]{background:url(\"https://i.imgur.com/4LtNyP4.gif\") no-repeat;width:50px !important;height:50px !important;padding-left:50px !important}img[src*=\"/img/smilies/snegurka.gif\"]{background:url(\"https://i.imgur.com/LTW0I7U.gif\") no-repeat;width:34px !important;height:45px !important;padding-left:34px !important}img[src*=\"/img/smilies/snowgirlwave.gif\"]{background:url(\"https://i.imgur.com/VAIYeeC.gif\") no-repeat;width:36px !important;height:34px !important;padding-left:36px !important}img[src*=\"/img/smilies/snowman.gif\"]{background:url(\"https://i.imgur.com/HjWSGuB.gif\") no-repeat;width:95px !important;height:71px !important;padding-left:95px !important}#content #posts-list td.write:has(textarea),#content #profile-block dl.write:has(textarea){overflow:hidden !important;z-index:1010 !important;position:fixed !important;border:1px solid hsl(200,40%,60%) !important;top:50% !important;right:0 !important;height:50px !important;width:50px !important;padding:10px !important;background:hsl(0,0%,5%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z\"></path></svg>') no-repeat center/32px !important;transform:translateY(-50%) !important;transition:height .15s ease,width .25s ease !important;cursor:pointer !important}#content #posts-list td.write:has(textarea) #write-block,#content #profile-block dl.write:has(textarea) #write-block{opacity:0 !important;height:100% !important;display:flex !important;flex-direction:column !important;box-sizing:border-box !important;gap:10px !important}#content #posts-list td.write:has(textarea):hover #write-block,#content #posts-list td.write:has(textarea):focus-within #write-block,#content #profile-block dl.write:has(textarea):hover #write-block,#content #profile-block dl.write:has(textarea):focus-within #write-block{opacity:1 !important}#content #posts-list td.write:has(textarea):hover,#content #posts-list td.write:has(textarea):focus,#content #posts-list td.write:has(textarea):focus-within,#content #profile-block dl.write:has(textarea):hover,#content #profile-block dl.write:has(textarea):focus,#content #profile-block dl.write:has(textarea):focus-within{width:40vw !important;min-width:500px !important;height:80vh !important;overflow:visible !important;background:hsl(0,0%,5%) !important;cursor:default !important}#content #posts-list td.write:has(textarea) textarea,#content #profile-block dl.write:has(textarea) textarea{width:100% !important;flex:1 !important;resize:none !important;border-radius:5px !important;padding:10px !important;background-color:hsl(0,0%,5%) !important;border:1px solid hsl(210,5%,40%) !important;font-family:\"Montserrat\",Verdana,Geneva,Tahoma,sans-serif !important;font-size:1.2em !important}#content #posts-list td.write:has(textarea) p,#content #profile-block dl.write:has(textarea) p{margin:0 !important;padding:0 !important;display:none !important}#content #posts-list td.write:has(textarea) p:has(input),#content #profile-block dl.write:has(textarea) p:has(input){display:flex !important;flex-shrink:0 !important}#content #posts-list td.write:has(textarea) p:has(input) input,#content #profile-block dl.write:has(textarea) p:has(input) input{border:none !important;width:50% !important;height:40px !important;color:hsl(0,0%,5%) !important;transition:background-color .15s ease !important;font-family:\"Montserrat\",Verdana,Geneva,Tahoma,sans-serif !important;font-weight:700 !important;text-transform:uppercase !important;font-size:14px !important}#content #posts-list td.write:has(textarea) p:has(input) input[name=send],#content #profile-block dl.write:has(textarea) p:has(input) input[name=send]{border-radius:5px 0 0 5px !important;border-right:1px solid hsl(0,0%,5%) !important;background:hsl(210,5%,40%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"-10 -10 270 270\"><path fill=\"hsl(0, 0%, 5%)\" d=\"M22.32 98.04l-19.04 -87.15c-0.75,-3.46 0.48,-6.84 3.29,-9 2.81,-2.17 6.39,-2.49 9.55,-0.87l225.95 116.02c3.07,1.57 4.87,4.52 4.87,7.96 0,3.44 -1.8,6.39 -4.87,7.96l-225.95 116.02c-3.16,1.62 -6.74,1.3 -9.55,-0.87 -2.81,-2.16 -4.04,-5.54 -3.29,-9l19.04 -87.15c0.79,-3.62 3.53,-6.26 7.18,-6.91l102.6 -18.19c0.91,-0.16 1.56,-0.94 1.56,-1.86 0,-0.92 -0.65,-1.7 -1.56,-1.86l-102.6 -18.19c-3.65,-0.65 -6.39,-3.29 -7.18,-6.91z\"/></svg>') no-repeat 15px center/24px !important}#content #posts-list td.write:has(textarea) p:has(input) input[name=send]:hover,#content #profile-block dl.write:has(textarea) p:has(input) input[name=send]:hover{background-color:#689 !important}#content #posts-list td.write:has(textarea) p:has(input) input[name=preview],#content #profile-block dl.write:has(textarea) p:has(input) input[name=preview]{border-radius:0 5px 5px 0 !important;background:hsl(210,5%,40%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle></svg>') no-repeat 15px center/24px !important}#content #posts-list td.write:has(textarea) p:has(input) input[name=preview]:hover,#content #profile-block dl.write:has(textarea) p:has(input) input[name=preview]:hover{background-color:#689 !important}@media(max-width: 500px){#content #posts-list td.write:has(textarea) p:has(input) input,#content #profile-block dl.write:has(textarea) p:has(input) input{height:32px !important;font-size:11px !important}#content #posts-list td.write:has(textarea) p:has(input) input[name=send],#content #profile-block dl.write:has(textarea) p:has(input) input[name=send]{background-size:18px !important;background-position:10px center !important}#content #posts-list td.write:has(textarea) p:has(input) input[name=preview],#content #profile-block dl.write:has(textarea) p:has(input) input[name=preview]{background-size:18px !important;background-position:10px center !important}}@media(max-width: 400px){#content #posts-list td.write:has(textarea) p:has(input) input[name=send],#content #posts-list td.write:has(textarea) p:has(input) input[name=preview],#content #profile-block dl.write:has(textarea) p:has(input) input[name=send],#content #profile-block dl.write:has(textarea) p:has(input) input[name=preview]{width:100% !important;border-radius:5px !important;border:none !important}}#content #posts-list td.write:has(textarea) .g-recaptcha,#content #profile-block dl.write:has(textarea) .g-recaptcha{position:absolute !important;padding-top:10px !important;bottom:0 !important;left:-2px !important;transform:translateY(100%) !important}#content #posts-list td.write:has(textarea) div[style*=\"#e00\"],#content #profile-block dl.write:has(textarea) div[style*=\"#e00\"]{position:absolute !important;bottom:-20px !important;font-weight:bold !important}body:has(#posts-list td.write:focus-within,#profile-block dl.write:focus-within) #content .minwidth_container{position:absolute !important;left:10px !important;width:calc(60vw - 50px) !important}body dl.write dd{margin:0 !important;height:100% !important;display:flex !important;flex-direction:column !important}body dl.write .form,body dl.write form{height:100% !important;display:flex !important;flex-direction:column !important;flex:1 !important}body dl.write form{gap:10px !important;opacity:0 !important}body dl.write:hover form,body dl.write:focus-within form{opacity:1 !important}@media(max-width: 1200px){#content #posts-list td.write:has(textarea),#content #profile-block dl.write:has(textarea){top:unset !important;bottom:0 !important;right:unset !important;left:0 !important;transform:translateX(calc(50vw - 25px)) !important;transition:height .25s ease,width .15s ease,transform .25s ease !important}#content #posts-list td.write:has(textarea):hover,#content #posts-list td.write:has(textarea):focus,#content #posts-list td.write:has(textarea):focus-within,#content #profile-block dl.write:has(textarea):hover,#content #profile-block dl.write:has(textarea):focus,#content #profile-block dl.write:has(textarea):focus-within{width:100vw !important;height:40vh !important;transform:translateX(0) !important}div[style*=\"#e00\"]{top:-20px !important}body:has(#posts-list td.write:focus-within,#profile-block dl.write:focus-within) #content .minwidth_container{left:auto !important;width:auto !important}body:has(#posts-list td.write:focus-within,#profile-block dl.write:focus-within) #content .minwidth_container #posts-list,body:has(#posts-list td.write:focus-within,#profile-block dl.write:focus-within) #content .minwidth_container #profile-block{padding-bottom:40vh !important}}@keyframes fadeIn{0%,80%{opacity:0}100%{opacity:1}}@keyframes bounce{from{transform:translateY(3px)}to{transform:translateY(-3px)}}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}@keyframes vigorousShake{0%,100%{transform:translateX(0px) translateY(0px) rotate(0deg)}5%{transform:translateX(-3px) translateY(-1px) rotate(-1deg)}10%{transform:translateX(3px) translateY(1px) rotate(1deg)}15%{transform:translateX(-4px) translateY(-2px) rotate(-1.5deg)}20%{transform:translateX(4px) translateY(2px) rotate(1.5deg)}25%{transform:translateX(-3px) translateY(-1px) rotate(-1deg)}30%{transform:translateX(3px) translateY(1px) rotate(1deg)}35%{transform:translateX(-2px) translateY(-2px) rotate(-0.5deg)}40%{transform:translateX(2px) translateY(2px) rotate(0.5deg)}45%{transform:translateX(-3px) translateY(-1px) rotate(-1deg)}50%{transform:translateX(3px) translateY(1px) rotate(1deg)}55%{transform:translateX(-2px) translateY(-1px) rotate(-0.5deg)}60%{transform:translateX(2px) translateY(1px) rotate(0.5deg)}65%{transform:translateX(-1px) translateY(-1px) rotate(-0.3deg)}70%{transform:translateX(1px) translateY(1px) rotate(0.3deg)}75%{transform:translateX(-2px) translateY(-1px) rotate(-0.5deg)}80%{transform:translateX(2px) translateY(1px) rotate(0.5deg)}85%{transform:translateX(-1px) translateY(0px) rotate(-0.2deg)}90%{transform:translateX(1px) translateY(0px) rotate(0.2deg)}95%{transform:translateX(-1px) translateY(0px) rotate(0deg)}}#content #index{display:flex !important;flex-direction:column !important;gap:10px;margin-top:10px}#content #index .firstrow,#content #index .secondrow{clear:none !important;float:none !important;width:100% !important;margin:0 !important}#content #index .firstrow h4,#content #index .secondrow h4{margin:0 0 10px !important}#content #index .firstrow .col1,#content #index .secondrow .col1{display:none !important}#content #index .firstrow .col2,#content #index .firstrow .col3,#content #index .firstrow .col4,#content #index .secondrow .col2,#content #index .secondrow .col3,#content #index .secondrow .col4{width:unset !important;left:unset !important;position:unset !important;overflow:hidden !important}#content #index .firstrow{display:flex !important;align-items:center;justify-content:center;gap:10px}#content #index .firstrow .col1{display:none !important}#content #index .firstrow .col2,#content #index .firstrow .col3,#content #index .firstrow .col4{height:45px !important;flex:1;display:flex !important;flex-direction:column;align-items:center}#content #index .firstrow .col2 .index-icon-container,#content #index .firstrow .col3 .index-icon-container,#content #index .firstrow .col4 .index-icon-container{text-align:unset !important;width:100% !important}#content #index .firstrow .col2 a:not(.title),#content #index .firstrow .col2 p,#content #index .firstrow .col3 a:not(.title),#content #index .firstrow .col3 p,#content #index .firstrow .col4 a:not(.title),#content #index .firstrow .col4 p{display:none !important}#content #index .firstrow .col2 a.title,#content #index .firstrow .col3 a.title,#content #index .firstrow .col4 a.title{display:inline-flex !important;justify-content:center !important;align-items:center !important;text-decoration:none !important;text-transform:uppercase !important;width:100% !important;height:45px !important;margin:0 !important;font:500 1em \"Montserrat\",sans-serif !important;color:hsl(0,0%,70%) !important;background-color:hsl(0,0%,10%) !important;border-radius:10px !important;border:1px solid hsl(210,5%,40%) !important;transition:all .15s ease-out !important;position:relative !important}#content #index .firstrow .col2 a.title:hover,#content #index .firstrow .col3 a.title:hover,#content #index .firstrow .col4 a.title:hover{color:hsl(200,40%,60%) !important;background-color:hsl(0,0%,5%) !important;border-color:hsl(200,40%,60%) !important}#content #index .firstrow .col2 a.title:hover::after{content:\"⚡\" !important;position:absolute !important;left:15px !important;font-size:1.4em !important;font-family:\"Noto Color Emoji\",sans-serif;z-index:2 !important;animation:bounce .6s ease infinite alternate !important;transform-origin:bottom center}#content #index .firstrow .col3 a.title:hover::after{content:\"🎯\" !important;position:absolute !important;left:15px !important;font-family:\"Noto Color Emoji\",sans-serif;font-size:1.4em !important;z-index:2 !important;animation:spin 1s linear infinite !important;transform-origin:1.4/2em 1.4/2em !important}#content #index .firstrow .col4 a.title:hover::after{content:\"🛠️\" !important;position:absolute !important;left:15px !important;font-family:\"Noto Color Emoji\",sans-serif;font-size:1.4em !important;z-index:2 !important;animation:vigorousShake 1.5s ease-in-out infinite !important}#content #index .indexstats-block{display:none !important}#content #index .secondrow{display:flex !important;justify-content:center;align-items:start;gap:1em}#content #index .secondrow .col2{flex:1;display:flex !important;flex-direction:column;width:50% !important;border-radius:10px !important;border:1px solid hsl(210,5%,40%) !important}#content #index .secondrow .col2 #live{margin:0 !important;padding:20px !important;background-color:hsl(0,0%,10%) !important}#content #index .secondrow .col2 #live ul{margin:10px 0 0 !important}#content #index .secondrow .col2 #live .switch{display:flex !important;flex-wrap:wrap !important;gap:10px !important}#content #index .secondrow .col2 #live .switch a,#content #index .secondrow .col2 #live .switch span{border-radius:3px !important;margin:0 !important}#content #index .secondrow .col2 #live .switch a{background-color:hsl(210,5%,40%) !important;color:hsl(0,0%,10%) !important;text-decoration:none !important;transition:background-color .15s ease-out !important}#content #index .secondrow .col2 #live .switch a:hover{background-color:#689 !important}#content #index .secondrow .col2 #live .switch span{color:hsl(0,0%,10%) !important;background-color:#689 !important}#content #index .secondrow .col2 #live #discussing_today .comments-cnt,#content #index .secondrow .col2 #live #discussing_week .comments-cnt,#content #index .secondrow .col2 #live #discussing_recent .comments-cnt{top:0 !important;color:hsl(0,0%,10%) !important;background-color:hsl(210,5%,40%) !important;border-radius:3px !important;transition:background-color .15s ease-out !important}#content #index .secondrow .col2 #live #discussing_today .comments-cnt:hover,#content #index .secondrow .col2 #live #discussing_week .comments-cnt:hover,#content #index .secondrow .col2 #live #discussing_recent .comments-cnt:hover{background-color:#689 !important}#content #index .secondrow .col2 #live #discussing_today .comments-cnt::before,#content #index .secondrow .col2 #live #discussing_week .comments-cnt::before,#content #index .secondrow .col2 #live #discussing_recent .comments-cnt::before{background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 10%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z\"></path></svg>') no-repeat center/16px !important}#content #index .secondrow .col2 #live #discussing_forum li{height:30px !important;margin:0 !important}#content #index .secondrow .col2 #live #discussing_forum li::after{content:\"\";position:absolute !important;top:0 !important;bottom:0 !important;right:0 !important;width:20px !important;display:inline-flex !important;background:linear-gradient(to right, transparent, hsl(0, 0%, 8%)) !important}#content #index .secondrow .col2 #live li{overflow:hidden !important;position:relative !important;margin:0 0 5px !important;white-space:wrap !important;width:100% !important}#content #index .secondrow .col2 #live li .time{color:hsl(30,65%,50%) !important}#content #index .secondrow .col2 #live li .user-link{padding-left:0;display:inline-flex !important;align-items:center !important;height:30px !important}#content #index .secondrow .col2 #live li .user-link[style*=\"avatars/\"]{background-size:24px !important;background-position:left center !important;padding-left:30px !important;position:relative !important}#content #index .secondrow .col2 #live li .user-link[style*=\"avatars/\"]::before{content:\"\";position:absolute !important;content:\"\";position:absolute;left:0;width:24px;height:24px;background-image:url('data:image/svg+xml;utf8,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(0, 0%, 10%)\" d=\"M24,0l0,24l-24,0l0,-24l24,0Zm-0.944,4.26c0,-1.828 -1.488,-3.316 -3.316,-3.316l-15.48,0c-1.828,0 -3.316,1.488 -3.316,3.316l0,15.48c0,1.828 1.488,3.316 3.316,3.316l15.48,0c1.828,0 3.316,-1.488 3.316,-3.316l0,-15.48Z\"/></svg>');background-position:left center;background-size:24px}#content #index .secondrow .col2 #live li .date{margin:0 5px 0 0 !important}#content #index .secondrow .col2 #live li .title{margin:0 5px 0 0 !important}#content #index .secondrow .col2 #live li .title2{margin:0 5px !important;color:hsl(0,0%,70%) !important}#content #index .secondrow .col2 #live li .comments_num{margin:0 5px 0 0 !important;padding:5px 0 !important;color:hsl(120,35%,45%) !important}#content #index .secondrow .col2 #live .grad{display:none !important}#content #index .secondrow .col3{flex:1;display:flex !important;flex-direction:column;width:50% !important;border-radius:10px !important;border:1px solid hsl(210,5%,40%) !important}#content #index .secondrow .col3 #top{margin:0 !important;padding:20px !important;background-color:hsl(0,0%,10%) !important}#content #index .secondrow .col3 #top #switch_with_icons{margin:0 !important;display:flex !important;flex-wrap:wrap !important;gap:10px !important}#content #index .secondrow .col3 #top #switch_with_icons .swtop{display:inline-flex !important;background-color:hsl(210,5%,40%) !important;border-radius:3px !important;transition:background-color .15s ease-out !important;padding:0 !important;margin:0 !important}#content #index .secondrow .col3 #top #switch_with_icons .swtop:hover{background-color:#689 !important}#content #index .secondrow .col3 #top #switch_with_icons .swtop.on{color:hsl(0,0%,10%) !important;background-color:#689 !important}#content #index .secondrow .col3 #top #switch_with_icons .swtop a:first-of-type{display:none !important}#content #index .secondrow .col3 #top #switch_with_icons .swtop a.top-title,#content #index .secondrow .col3 #top #switch_with_icons .swtop a.top-title-on{color:hsl(0,0%,10%) !important;text-decoration:none !important;padding:6px !important;display:inline !important}#content #index .secondrow .col3 #top .note{color:hsl(30,65%,50%) !important}#content #index .secondrow .col3 #top tr{height:30px !important;width:100% !important}#content #index .secondrow .col3 #top tr th{font-size:11px !important;color:hsl(210,5%,40%) !important}#content #index .secondrow .col3 #top tr td:first-of-type{padding-left:0 !important;display:inline-flex !important;align-items:center !important;margin:0 !important;padding:0 !important;height:30px !important}#content #index .secondrow .col3 #top tr td[style*=\"avatars/\"]{padding-left:30px !important;background-position:left center !important;background-size:24px !important;position:relative !important}#content #index .secondrow .col3 #top tr td[style*=\"avatars/\"]::before{content:\"\";position:absolute !important;content:\"\";position:absolute;left:0;width:24px;height:24px;background-image:url('data:image/svg+xml;utf8,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(0, 0%, 10%)\" d=\"M24,0l0,24l-24,0l0,-24l24,0Zm-0.944,4.26c0,-1.828 -1.488,-3.316 -3.316,-3.316l-15.48,0c-1.828,0 -3.316,1.488 -3.316,3.316l0,15.48c0,1.828 1.488,3.316 3.316,3.316l15.48,0c1.828,0 3.316,-1.488 3.316,-3.316l0,-15.48Z\"/></svg>');background-position:left center;background-size:24px}#content #index .secondrow .col3 #top .rc{padding:0 !important}#content #index .secondrow .col3 #top .rc a.link{display:inline-flex !important;position:relative !important;right:unset !important;margin:0 !important;padding:6px !important;text-decoration:none !important;width:100% !important;justify-content:center !important;align-items:center !important;background-color:hsl(210,5%,40%) !important;border-radius:3px !important;color:hsl(0,0%,10%) !important;margin-top:5px !important;transition:background-color .15s ease-out !important}#content #index .secondrow .col3 #top .rc a.link:hover{background-color:#689 !important}@media(max-width: 1000px){#content #index{margin:10px 20px !important}#content #index .firstrow{flex-direction:column !important}#content #index .firstrow .col2,#content #index .firstrow .col3,#content #index .firstrow .col4{width:100% !important}#content #index .secondrow{flex-direction:column !important;align-items:center !important}#content #index .secondrow .col2{width:100% !important}#content #index .secondrow .col3{width:100% !important}}@media(max-width: 550px){#content #index{margin:10px !important}#content #index .firstrow{flex-direction:column !important}#content #index .firstrow .col2,#content #index .firstrow .col3,#content #index .firstrow .col4{width:100% !important}#content #index .firstrow .col2 a.title,#content #index .firstrow .col3 a.title,#content #index .firstrow .col4 a.title{height:50px !important;font-size:.9em !important}#content #index .secondrow{flex-direction:column !important}#content #index .secondrow .col2 #live{padding:15px !important}#content #index .secondrow .col2 #live .switch{gap:5px !important}#content #index .secondrow .col2 #live #discussing_today li,#content #index .secondrow .col2 #live #discussing_week li,#content #index .secondrow .col2 #live #discussing_recent li,#content #index .secondrow .col2 #live #discussing_forum li{height:auto !important;background-color:hsl(0,0%,5%);border:1px solid hsl(210,5%,40%) !important;border-radius:5px !important;padding:10px !important;display:inline-flex !important;flex-wrap:wrap !important;align-items:center !important;margin:0 0 5px !important}#content #index .secondrow .col2 #live #discussing_today li .user-link,#content #index .secondrow .col2 #live #discussing_week li .user-link,#content #index .secondrow .col2 #live #discussing_recent li .user-link,#content #index .secondrow .col2 #live #discussing_forum li .user-link{padding:0 5px 0 0 !important}#content #index .secondrow .col2 #live #discussing_today li .user-link[style*=\"avatars/\"],#content #index .secondrow .col2 #live #discussing_week li .user-link[style*=\"avatars/\"],#content #index .secondrow .col2 #live #discussing_recent li .user-link[style*=\"avatars/\"],#content #index .secondrow .col2 #live #discussing_forum li .user-link[style*=\"avatars/\"]{padding:0 5px 0 30px !important}#content #index .secondrow .col2 #live #discussing_today li::after,#content #index .secondrow .col2 #live #discussing_week li::after,#content #index .secondrow .col2 #live #discussing_recent li::after,#content #index .secondrow .col2 #live #discussing_forum li::after{display:none !important}#content #index .secondrow .col3 #top{padding:15px !important}#content #index .secondrow .col3 #top #switch_with_icons{gap:5px !important}#content #index .secondrow .col3 #top table{width:100% !important}#content #index .secondrow .col3 #top table tr{height:auto !important;min-height:30px !important;padding:10px !important;border-radius:5px !important;background-color:hsl(0,0%,5%) !important;display:inline-flex !important;flex-wrap:wrap !important;align-items:center !important;margin:0 0 5px !important;border:1px solid hsl(210,5%,40%) !important}#content #index .secondrow .col3 #top table tr th{font-size:.85em !important;padding:0 5px 0 0 !important}#content #index .secondrow .col3 #top table tr td:has(.bitmore){padding:0 5px !important}#content #index .secondrow .col3 #top table tr .date{padding:0 5px 0 0 !important}#content #index .secondrow .col3 #top table tr td .bitmore,#content #index .secondrow .col3 #top table tr td .date{font-size:.85em}}.login-block{z-index:100 !important;position:fixed !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important;height:45px !important;width:45px !important;border-radius:0 0 0 5px !important;padding:0 !important;color:rgba(0,0,0,0) !important;right:0 !important;top:0 !important;background:hsl(210,5%,40%) !important;transition:background .15s ease-in-out !important}.login-block:hover{background:#689 !important}.login-block #login-link{cursor:pointer !important;padding-left:unset !important;background:rgba(0,0,0,0) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4\"></path></svg>') no-repeat center/24px !important;text-decoration:none !important;height:45px !important;position:absolute !important;width:45px !important}.login-block #login-link span{display:none !important}.login-block .error{color:#c68 !important;margin-right:0 !important;position:absolute !important;top:0px !important}#login-form{position:fixed !important;z-index:150 !important;height:100vh !important;width:unset !important;top:0 !important;bottom:0 !important;left:0 !important;right:0 !important;display:flex;justify-content:center !important;align-items:center !important;background-color:rgba(0,0,0,.5) !important}#login-form table tbody tr td.c{background:hsl(210,5%,40%) !important;border-radius:5px !important;padding:0 !important;height:250px !important;width:250px !important}#login-form table tbody tr td.c form{padding:0 !important}#login-form table tbody tr td.c form dl{margin:0 !important;padding:0 !important;width:100% !important}#login-form table tbody tr td.c form dl#r_username dt label{display:none !important}#login-form table tbody tr td.c form dl#r_username dd{margin:0 !important;padding:0 !important;width:100% !important}#login-form table tbody tr td.c form dl#r_username dd #username{color:hsl(0,0%,70%) !important;background:hsl(0,0%,15%) !important;border:none !important;background-color:hsl(0,0%,10%) !important;height:45px !important;padding:10px !important;color:#689 !important;text-align:center !important;width:100% !important;margin-bottom:0 !important;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-user\"><path d=\"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2\"></path><circle cx=\"12\" cy=\"7\" r=\"4\"></circle></svg>') !important;background-position:10px center !important;background-repeat:no-repeat !important;background-size:20px !important;border-bottom:1px solid hsl(210,5%,40%) !important;font:500 1.1em \"Montserrat\",sans-serif !important}#login-form table tbody tr td.c form dl#r_username dd #username:active,#login-form table tbody tr td.c form dl#r_username dd #username:focus{color:hsl(200,40%,60%) !important;background-color:hsl(0,0%,5%) !important;transition:background-color .3s ease-in-out !important}#login-form table tbody tr td.c form dl#r_password dt label{display:none !important}#login-form table tbody tr td.c form dl#r_password dd{margin:0 !important;padding:0 !important;width:100% !important}#login-form table tbody tr td.c form dl#r_password dd.field #password{color:hsl(0,0%,70%) !important;background:hsl(0,0%,15%) !important;border:none !important;background-color:hsl(0,0%,10%) !important;height:45px !important;padding:10px !important;color:#689 !important;text-align:center !important;width:100% !important;margin-bottom:0 !important;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"3\" y=\"11\" width=\"18\" height=\"11\" rx=\"2\" ry=\"2\"></rect><path d=\"M7 11V7a5 5 0 0 1 10 0v4\"></path></svg>') !important;background-position:10px center !important;background-repeat:no-repeat !important;background-size:20px !important;font:500 1.1em \"Montserrat\",sans-serif !important}#login-form table tbody tr td.c form dl#r_password dd.field #password:active,#login-form table tbody tr td.c form dl#r_password dd.field #password:focus{color:hsl(200,40%,60%) !important;background-color:hsl(0,0%,5%) !important;transition:background-color .3s ease-in-out !important}#login-form table tbody tr td.c form dl#r_login_form_submit dd{margin:10px 0 !important;padding:0 !important;width:100% !important}#login-form table tbody tr td.c form dl#r_login_form_submit dd #login_form_submit{width:90% !important;height:45px !important;border:none !important;border-radius:5px !important;background-color:hsl(0,0%,10%) !important;color:hsl(0,0%,70%) !important;text-transform:uppercase !important;transition:background-color .15s ease-in-out !important;display:block !important;margin:0 auto !important;font:600 1.1em \"Montserrat\",sans-serif !important}#login-form table tbody tr td.c form dl#r_login_form_submit dd #login_form_submit:hover{color:hsl(0,0%,70%) !important;background-color:hsl(0,0%,5%) !important}#login-form table tbody tr td.c form dl:last-child dd{margin:0 !important;padding:0 !important;width:100% !important}#login-form table tbody tr td.c form dl:last-child dd .navigation{display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:center !important;width:100% !important}#login-form table tbody tr td.c form dl:last-child dd .navigation li{margin-bottom:0 !important}#login-form table tbody tr td.c form dl:last-child dd .navigation li a{border-radius:50% !important;background-color:hsl(0,0%,10%) !important;background-position:center !important;background-repeat:no-repeat !important;background-size:18px !important;display:block !important;width:35px !important;height:35px !important;font-size:0 !important;transition:background-color .15s ease-in-out !important}#login-form table tbody tr td.c form dl:last-child dd .navigation li a:hover{background-color:hsl(0,0%,5%) !important}#login-form table tbody tr td.c form dl:last-child dd .navigation li a[href=\"/register/\"]{margin-right:10px !important;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 70%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-user-plus\"><path d=\"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"></path><circle cx=\"8.5\" cy=\"7\" r=\"4\"></circle><line x1=\"20\" y1=\"8\" x2=\"20\" y2=\"14\"></line><line x1=\"23\" y1=\"11\" x2=\"17\" y2=\"11\"></line></svg>') !important}#login-form table tbody tr td.c form dl:last-child dd .navigation li a[href=\"/remind/\"]{margin-left:10px !important;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 70%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-user-check\"><path d=\"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"></path><circle cx=\"8.5\" cy=\"7\" r=\"4\"></circle><polyline points=\"17 11 19 13 23 9\"></polyline></svg>') !important}#login-form .close{opacity:1 !important;top:0 !important;right:0 !important;height:45px !important;width:45px !important;background-color:hsl(210,5%,40%) !important;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\"></line><line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\"></line></svg>') !important;background-repeat:no-repeat !important;background-position:center !important;transition:background-color .15s ease-in-out !important;border-radius:0 0 0 5px !important}#login-form .close:hover{background-color:#689 !important}#login-form .close ins{display:none !important}.dropdown-menu{background:hsl(0,0%,5%) !important;max-height:500px !important}.dropdown-menu input{background:#689 !important;color:hsl(0,0%,5%) !important;border:none !important;border-radius:3px !important}.dropdown-menu>li>a{color:hsl(0,0%,70%) !important;background:hsl(0,0%,5%) !important}.dropdown-menu>li>a:hover{background:#689 !important;color:hsl(0,0%,10%) !important}.btn-smilies-insert{background:none !important;color:hsl(0,0%,70%) !important}.btn-smilies-insert:hover{background:none !important;color:#689 !important}.preview-change{background:none !important;color:hsl(0,0%,70%) !important}.preview-change:hover{background:none !important;color:#689 !important}.preview-change::before{content:\"\" !important}.dlg-smilies-insert{background:hsl(0,0%,5%) !important}.dlg-smilies-insert .smile-tabs{display:inline-flex !important;background-color:rgba(0,0,0,0) !important;height:24px !important}.dlg-smilies-insert .smile-tabs .tab{padding:12px !important;display:flex !important;justify-content:center !important;align-items:center !important;color:hsl(200,40%,60%) !important;background-color:rgba(0,0,0,0) !important}.dlg-smilies-insert .smile-tabs .tab.active{color:hsl(0,0%,5%) !important;background-color:#689 !important}.dlg-smilies-insert .arrow{border-top:10px solid hsl(0,0%,5%) !important}@keyframes blockAnimation{0%,100%{background-color:#689}50%{background-color:hsl(30,65%,50%)}}@keyframes textAnimation{0%,100%{color:#689}50%{color:hsl(30,65%,50%)}}#content #profile-index .stats{position:fixed !important;width:185px !important;border:none !important}#content #profile-index .stats h3{display:none !important}#content #profile-index .stats .content{font-family:\"Montserrat\",sans-serif !important;border-radius:5px !important;overflow:hidden !important}#content #profile-index .stats .content .stats-block{border-radius:0 !important;background-color:#689;margin:0 !important;border:none !important}#content #profile-index .stats .content .stats-block .title{color:hsl(0,0%,15%) !important;font-size:11px !important}#content #profile-index .stats .content .stats-block .stats-content{display:flex !important;align-items:center !important;height:32px !important;background-color:hsl(0,0%,15%) !important;border:none !important;color:#689 !important}#content #profile-index .stats .content .stats-block .stats-content.clickable:hover{background-color:hsl(0,0%,10%) !important;color:#689 !important}#content #profile-index .stats .content .stats-block .stats-content span{margin-left:4px !important;font-size:16px !important}#content #profile-index .stats .content .stats-block:nth-child(1){animation:blockAnimation 3s linear 0.1s infinite}#content #profile-index .stats .content .stats-block:nth-child(1) .stats-content .icon-icomoon,#content #profile-index .stats .content .stats-block:nth-child(1) .stats-content span{animation:textAnimation 3s linear 0.1s infinite}#content #profile-index .stats .content .stats-block:nth-child(2){animation:blockAnimation 3s linear 0.3s infinite}#content #profile-index .stats .content .stats-block:nth-child(2) .stats-content .icon-icomoon,#content #profile-index .stats .content .stats-block:nth-child(2) .stats-content span{animation:textAnimation 3s linear 0.3s infinite}#content #profile-index .stats .content .stats-block:nth-child(3){animation:blockAnimation 3s linear 0.5s infinite}#content #profile-index .stats .content .stats-block:nth-child(3) .stats-content .icon-icomoon,#content #profile-index .stats .content .stats-block:nth-child(3) .stats-content span{animation:textAnimation 3s linear 0.5s infinite}#content #profile-index .stats .content .stats-block:nth-child(4){animation:blockAnimation 3s linear 0.7s infinite}#content #profile-index .stats .content .stats-block:nth-child(4) .stats-content .icon-icomoon,#content #profile-index .stats .content .stats-block:nth-child(4) .stats-content span{animation:textAnimation 3s linear 0.7s infinite}#content #profile-index .stats .content .stats-block:nth-child(5){animation:blockAnimation 3s linear 0.9s infinite}#content #profile-index .stats .content .stats-block:nth-child(5) .stats-content .icon-icomoon,#content #profile-index .stats .content .stats-block:nth-child(5) .stats-content span{animation:textAnimation 3s linear 0.9s infinite}#content #profile-index .stats .content .stats-block:nth-child(6){animation:blockAnimation 3s linear 1.1s infinite}#content #profile-index .stats .content .stats-block:nth-child(6) .stats-content .icon-icomoon,#content #profile-index .stats .content .stats-block:nth-child(6) .stats-content span{animation:textAnimation 3s linear 1.1s infinite}#content #profile-index .stats .content .stats-block:nth-child(7){animation:blockAnimation 3s linear 1.3s infinite}#content #profile-index .stats .content .stats-block:nth-child(7) .stats-content .icon-icomoon,#content #profile-index .stats .content .stats-block:nth-child(7) .stats-content span{animation:textAnimation 3s linear 1.3s infinite}#content #profile-index .stats .content .stats-block:nth-child(8){animation:blockAnimation 3s linear 1.5s infinite}#content #profile-index .stats .content .stats-block:nth-child(8) .stats-content .icon-icomoon,#content #profile-index .stats .content .stats-block:nth-child(8) .stats-content span{animation:textAnimation 3s linear 1.5s infinite}#content .profile-root .online{color:#90ee90 !important;background-color:rgba(144,238,144,.6274509804) !important}#content .profile-root .trophy .item .dummy{background:hsl(0,0%,15%) !important;border:1px solid hsl(210,5%,40%) !important}#content .profile-root .trophy .item .dummy:hover{background:hsl(0,0%,10%) !important;border:1px solid #689 !important}#content .profile-root .trophy .item .dummy::after{color:hsl(210,5%,40%) !important}#content .profile-root .trophy .item .dummy:hover::after{color:#689 !important}#content .profile-root #profile-index .bio .content{border-radius:5px !important;background:hsl(0,0%,15%) !important;border:1px solid hsl(210,5%,40%) !important}#content .profile-root #profile-index .bio .content .clickable{box-shadow:inset 0 0 10px rgba(0,0,0,.3) !important}#content .profile-root #profile-index .bio .content .clickable span{color:hsl(200,40%,60%) !important;text-shadow:0 0 5px hsl(200,20%,20%) !important}#content .profile-root #profile-index .bio .content:hover{border:1px solid #689 !important}#content .profile-root .profile-edit-bio form{background-color:hsl(0,0%,15%) !important;border:1px solid hsl(210,5%,40%) !important}#content .profile-root .profile-header{background:hsl(0,0%,15%) !important;border-bottom:1px solid hsl(210,5%,40%) !important}#content .profile-root .profile-header .car{background:hsl(0,0%,15%) !important}#content .profile-root .profile-header .username .history .history-popup{background-color:hsl(0,0%,10%) !important;border:1px solid #689 !important;top:30px !important;left:unset !important;right:5px !important;color:#689 !important}#content .profile-root .profile-header .username .history .history-popup ul{padding:4px 0 !important}#content .profile-root .profile-header .username .history .history-popup ul li{color:hsl(0,0%,70%) !important;padding-top:unset !important}#content .profile-root .profile-header .username .history .caret{background:hsl(0,0%,10%) !important;height:15px !important;width:15px !important;border-radius:50% !important;position:relative !important;top:-4px !important;border:2px solid #689 !important;transition:background .2s !important}#content .profile-root .profile-header .username .history .caret:hover{background:#689 !important;transition:background .2s !important}#content .profile-root .profile-header .username .name{color:hsl(30,65%,50%) !important}#content .profile-root .profile-header .mini-nav{display:none !important;opacity:0 !important}#content .profile-root .profile-content .nav-top{border-bottom:none !important}#content .profile-root .profile-content .nav-top a{color:#689 !important;background-color:hsl(0,0%,15%) !important;border:1px solid #689 !important;border-radius:5px !important;margin-right:5px !important}#content .profile-root .profile-content .nav-top a:hover,#content .profile-root .profile-content .nav-top a:focus{color:hsl(0,0%,10%) !important;background-color:#689 !important;border:1px solid rgba(0,0,0,0) !important}#content .profile-root .profile-content .nav-top .active a{color:hsl(0,0%,10%) !important;background-color:#689 !important;border:1px solid rgba(0,0,0,0) !important}#content .profile-root .profile-content .nav-top .active a:hover,#content .profile-root .profile-content .nav-top .active a:focus{color:hsl(0,0%,10%) !important;background-color:#689 !important;border:1px solid rgba(0,0,0,0) !important}#content .profile-root .scroll-to-top{background-color:hsl(0,0%,10%) !important;color:hsl(0,0%,70%) !important}#content .profile-root .scroll-to-top:hover{background-color:hsl(0,0%,10%) !important;opacity:.8 !important}#content .profile-root .profile-hidden{color:#689 !important;background:hsl(0,0%,15%) !important;border:1px solid #689 !important}#content .profile-root .profile-hidden .icon-icomoon{color:#689 !important}#content .profile-root .options-block ul li span{color:hsl(0,0%,70%) !important}#content .profile-root .options-block ul li span:hover{color:#689 !important}#content .profile-root .options-block ul li:hover{color:#fff !important}#content .profile-root .options-block .checkbox .selected::before{color:hsl(0,0%,70%) !important}#content .profile-root rect{fill:hsl(0,0%,15%) !important}#content .profile-root .options .date-select .btn .icon-icomoon{color:hsl(0,0%,10%) !important}.col-xs-3 .options{position:fixed !important;width:170px !important;top:193px !important}#content .dropdown-toggle{color:hsl(200,40%,60%) !important;background-color:hsl(0,0%,10%) !important;border:1px solid #689 !important;border-radius:5px !important}#content .dropdown-toggle b{color:hsl(30,65%,50%) !important}#content .dropdown-toggle span{color:hsl(0,0%,70%) !important}#content .dropdown-toggle .caret{border-top-color:hsl(200,40%,60%) !important}#content .dropdown-toggle:hover,#content .dropdown-toggle:focus{color:hsl(0,0%,10%) !important;background-color:#689 !important;border:1px solid hsl(200,40%,60%) !important}#content .dropdown-toggle:hover b,#content .dropdown-toggle:focus b{color:hsl(0,0%,10%) !important}#content .dropdown-toggle:hover span,#content .dropdown-toggle:focus span{color:hsl(0,0%,10%) !important}#content .dropdown-toggle:hover .caret,#content .dropdown-toggle:focus .caret{border-top:4px solid hsl(0,0%,10%) !important}#content .journal .write,.fade .journal .write{background:hsl(0,0%,15%) !important;border:1px solid hsl(210,5%,40%) !important}#content .journal .write .placeholder,.fade .journal .write .placeholder{background:hsl(0,0%,15%) !important;border:none !important}#content .journal .post-container .post:not(:has(textarea)),.fade .journal .post-container .post:not(:has(textarea)){margin:10px 0 !important;border-radius:0 0 5px 5px !important;box-shadow:0 0 4px rgba(0,0,0,.3) !important}#content .journal .post-container .post:not(:has(.post-hidden)),.fade .journal .post-container .post:not(:has(.post-hidden)){border-top:1px solid rgba(0,0,0,0) !important}#content .journal .post-container .post:not(:has(.post-hidden)).post-hidden,.fade .journal .post-container .post:not(:has(.post-hidden)).post-hidden{background-color:hsl(0,0%,15%) !important;border-top:1px solid gold !important}#content .journal .post-container .post:not(:has(.post-hidden)).post-hidden .hidden-mark,.fade .journal .post-container .post:not(:has(.post-hidden)).post-hidden .hidden-mark{margin-left:-7px !important}#content .journal .post-container .post:not(:has(.post-hidden)).post-hidden .hidden-mark span,.fade .journal .post-container .post:not(:has(.post-hidden)).post-hidden .hidden-mark span{background-color:gold !important;color:hsl(0,0%,5%) !important}#content .journal .post-container .post:not(:has(.post-hidden)) .content .author a,.fade .journal .post-container .post:not(:has(.post-hidden)) .content .author a{color:#689 !important}#content .journal .post-container .post:not(:has(.post-hidden)) .content .author a:hover,.fade .journal .post-container .post:not(:has(.post-hidden)) .content .author a:hover{color:hsl(200,40%,60%) !important}#content .journal .post-container .post:not(:has(.post-hidden)) .content .text,.fade .journal .post-container .post:not(:has(.post-hidden)) .content .text{color:hsl(0,0%,70%) !important}#content .journal .post-container .post:not(:has(.post-hidden)) .content .readmore.fade-top,.fade .journal .post-container .post:not(:has(.post-hidden)) .content .readmore.fade-top{background:hsl(0,0%,15%) !important;border-top:1px solid hsl(210,5%,40%) !important}#content .journal .post-container .deleted,.fade .journal .post-container .deleted{background-color:hsl(0,0%,5%) !important;border:1px solid #689 !important;margin:5px 0 !important}#content .journal .comments,.fade .journal .comments{background:none !important}#content .journal .comments .post-container .post,.fade .journal .comments .post-container .post{border-top:1px solid rgba(0,0,0,0) !important}#content .journal .comments .more,.fade .journal .comments .more{background:hsl(210,5%,40%) !important;color:hsl(0,0%,70%) !important}#content .journal .comments .more:hover,.fade .journal .comments .more:hover{background:hsl(0,0%,10%) !important;color:hsl(0,0%,70%) !important}#content .journal .record-info .game-text,.fade .journal .record-info .game-text{border:none !important;border-radius:unset !important;color:#999 !important;background-color:hsl(0,0%,5%) !important}#content .journal .record-info .game-text .error-incorrect,.fade .journal .record-info .game-text .error-incorrect{color:#f08080 !important}#content .journal .record-info .game-text .error-correct,.fade .journal .record-info .game-text .error-correct{color:#90ee90 !important}#content .journal .record-info .stats .stats-col * tr,#content .journal .record-info .stats .stats-col * td,#content .journal .record-info .stats .stats-col * th,.fade .journal .record-info .stats .stats-col * tr,.fade .journal .record-info .stats .stats-col * td,.fade .journal .record-info .stats .stats-col * th{border:1px solid hsl(210,5%,40%) !important}#content .sidebar .profile-nav{background-color:rgba(0,0,0,0) !important}#content .sidebar a{color:hsl(0,0%,70%) !important;background:hsl(0,0%,10%) !important;text-decoration:none !important}#content .sidebar a .icon-icomoon{color:hsl(0,0%,70%) !important}#content .sidebar a span{color:hsl(0,0%,70%) !important}#content .sidebar a:hover,#content .sidebar a:focus{background:hsl(0,0%,5%) !important}#content .sidebar .active>a{background:#689 !important}#content .sidebar .active>a .icon-icomoon{color:hsl(0,0%,10%) !important}#content .sidebar .active>a span{color:hsl(0,0%,10%) !important}#content .sidebar .active>a:hover,#content .sidebar .active>a:focus{background:#689 !important}.profile-friends .friends-list ul.users>li{background:none !important;border-bottom:1px solid rgba(0,0,0,0) !important}.profile-friends .friends-list ul.users>li:hover{background:rgba(0,0,0,.1) !important;border-bottom:1px solid hsl(200,40%,60%) !important}.profile-friends .friends-list .name{color:hsl(0,0%,70%) !important;text-decoration:none !important}.profile-friends .friends-list .name:hover{color:#689 !important}.profile-friends .friends-list .search-form .form-control{height:40px !important}.profile-friends .friends-list .search-form .clear{display:flex;align-items:center !important;justify-content:center !important;top:0 !important;right:0 !important;color:hsl(0,0%,70%) !important;width:40px !important;height:40px !important;transition:color .2s ease-in-out !important}.profile-friends .friends-list .search-form .clear .glyphicon{top:-1px !important}.profile-friends .friends-list .search-form .clear:hover{color:#689 !important}.profile-friends .friends-list .search-form .btn{height:40px !important}.profile-friends .friends-list .search-form .btn .icon-icomoon{margin-right:unset !important}.profile-messages .name{color:#689 !important}.profile-messages .name:hover{color:hsl(200,40%,60%) !important}.profile-messages .dialog{border:1px solid hsl(210,5%,40%) !important}.profile-messages .message.unread{background-color:hsl(0,0%,10%) !important}.profile-messages .messages-contacts .message.unread{background-color:#689 !important}.profile-messages .messages-contacts .message.unread .text{color:hsl(0,0%,10%) !important}.profile-messages .messages-contacts .contacts-content .contact.unread{background-color:hsl(0,0%,10%) !important;border-bottom:1px solid #689 !important}.profile-messages .messages-contacts .contact:hover{background:hsl(0,0%,10%) !important}.profile-messages .deleted{border:1px solid #689 !important;background-color:hsl(0,0%,10%) !important}.profile-messages .dialog-header{background:hsl(0,0%,15%) !important;border-bottom:1px solid hsl(210,5%,40%) !important}.profile-messages .dialog-header .controls .btn{legal:hsl(0,0%,10%) !important}.profile-messages .dialog-write{border-top:1px solid hsl(210,5%,40%) !important;background:hsl(0,0%,15%) !important}.achieve{border:1px solid rgba(0,0,0,0);background:rgba(0,0,0,0) !important;border-radius:10px !important}.achieve .achieve-content{background-color:hsl(0,0%,10%) !important;border-radius:10px !important}.achieve .achieve-content .title{color:hsl(30,65%,50%) !important}.achieve .achieve-content .description{color:hsl(0,0%,70%) !important}.achieve .achieve-content .description span{color:#689 !important}.achieve .achieve-content .description span span{color:hsl(200,40%,60%) !important}.achieve .achieve-content .levels{color:hsl(0,0%,70%) !important;opacity:1 !important}.achieve .achieve-content .levels:hover{background:none !important}.achieve .achieve-content .levels .level .icon-icomoon{box-shadow:none !important;text-shadow:none !important;color:hsl(0,0%,70%) !important}.achieve .achieve-content .levels .level .icon-icomoon.done{color:gold !important}.achieve .achieve-icon{background:linear-gradient(135deg, rgba(210.375, 127.5, 44.625, 0.7) 0%, rgba(102, 136, 153, 0.7) 100%) !important;border:1px solid rgba(0,0,0,0) !important;border-radius:10px !important}.achieve .achieve-icon img{opacity:1 !important}.achieve .achieve-icon:hover{background:linear-gradient(135deg, rgb(210.375, 127.5, 44.625) 0%, #668899 100%) !important;border:1px solid rgba(0,0,0,0) !important}.dlg-set-index-achieve .modal2-body .list .item .achieve.reduced{border:1px solid rgba(0,0,0,0);background:rgba(0,0,0,0) !important;overflow:hidden}.dlg-set-index-achieve .modal2-body .list .more-achieves{background:rgba(0,0,0,0) !important}.dlg-set-index-achieve .modal2-body .empty{color:hsl(0,0%,70%) !important}.profile-achieves .options{min-height:unset !important;display:inline-flex !important;width:100% !important;justify-content:right !important}.profile-achieves .options .btn-group{float:unset !important;display:inline-flex !important;margin-left:5px !important;gap:5px !important;order:2 !important}.profile-achieves .options .btn-group .btn .toggle-text b{color:#689 !important}.profile-achieves .list .group .item .achieve{background:rgba(0,0,0,0) !important}.profile-achieves .list .group .more-achieves{background:rgba(0,0,0,0) !important}body .achieve .achieve-content .levels .level .popover .achieve{background:hsl(0,0%,10%) !important;border-radius:10px !important}.popover{background-color:hsl(0,0%,10%) !important;border:1px solid hsl(210,5%,40%) !important;border-radius:10px !important}.popover .popover-content{border-radius:10px !important;background-color:hsl(0,0%,10%) !important}.popover .popover-content .title{color:hsl(30,65%,50%) !important}.popover .popover-content .description{color:hsl(0,0%,70%) !important}.popover .popover-content .description span{color:#689 !important}.popover .popover-content .description span span{color:hsl(200,40%,60%) !important}.popover.top .arrow{border-top-color:hsl(210,5%,40%) !important}.popover.top .arrow:after{border-top-color:hsl(0,0%,10%) !important}.popover.right .arrow{border-right-color:hsl(210,5%,40%) !important}.popover.right .arrow:after{border-right-color:hsl(0,0%,10%) !important}.popover.bottom .arrow{border-bottom-color:hsl(210,5%,40%) !important}.popover.bottom .arrow:after{border-bottom-color:hsl(0,0%,10%) !important}.popover.left .arrow{border-left-color:hsl(210,5%,40%) !important}.popover.left .arrow:after{border-left-color:hsl(0,0%,10%) !important}.profile-stats .profile-stats-details .top-stats .best-speed{background-color:#689 !important}.profile-stats .profile-stats-details .top-stats .best-speed .title{color:hsl(0,0%,15%) !important}.profile-stats .profile-stats-details .top-stats .best-speed .content{background-color:hsl(0,0%,15%) !important;border-bottom:1px solid hsl(0,0%,70%) !important;border-top:1px solid hsl(0,0%,10%) !important;color:#689 !important}.profile-stats .profile-stats-details .top-stats .counter .value .book-progress .item{background-color:#689 !important}.profile-stats .profile-stats-details .charts{background:hsl(0,0%,15%) !important}.profile-stats .profile-stats-details .charts .chart-graph text:nth-child(1){stroke:#689 !important;fill:none !important;stroke-width:1px !important}.profile-stats .profile-stats-details .charts .chart-graph text:nth-child(2){fill:none !important}.profile-stats .profile-stats-overview .chart-table tr td{color:#689 !important}.profile-stats .profile-stats-overview .recent{background-color:hsl(0,0%,15%) !important;border:1px solid hsl(210,5%,40%) !important}.profile-stats .recent a{color:hsl(0,0%,70%) !important;font-weight:lighter !important}.profile-stats .recent a:hover{color:#689 !important;font-weight:lighter !important}.profile-stats .recent li:hover{background:none !important;color:#689 !important}.profile-stats .chart-table{color:hsl(0,0%,15%) !important}.profile-stats .counter{background-color:#689 !important}.profile-stats .counter .title{color:hsl(0,0%,15%) !important}.profile-stats .counter .value{border-bottom:1px solid hsl(200,40%,60%) !important;border-top:1px solid hsl(0,0%,10%) !important;color:#689 !important;background-color:hsl(0,0%,15%) !important}.chart-graph div{border:none !important;background:hsl(0,0%,15%) !important}.dlg-profile-stats-book-parts .parts .col-xs-1{border-right:1px solid hsl(210,5%,40%) !important}.dlg-profile-stats-book-parts .parts .col-xs-1 .item{background:hsl(0,0%,15%) !important}.dlg-profile-stats-book-parts .parts .col-xs-1 .item:hover{background:#689 !important;color:hsl(0,0%,10%) !important}.dlg-profile-stats-book-parts .parts .col-xs-1 .item.even{background-color:hsl(0,0%,10%) !important}.dlg-profile-stats-book-parts .parts .col-xs-1 .item.even:hover{background-color:#689 !important;color:hsl(0,0%,10%) !important}.badge{border:1px solid hsl(0,0%,15%) !important;background:#689 !important;color:hsl(0,0%,10%) !important}.stats-empty{background:hsl(0,0%,15%) !important}.stats-empty .icon-icomoon{color:#689 !important}#totalGamesCounter{background-color:#689 !important}#totalGamesCounter .value{color:#689 !important;background-color:hsl(0,0%,15%) !important}#totalGamesCounter .value .icon-icomoon{color:#689 !important}.dropdown-menu{overflow:hidden !important}.col-xs-5 input{border:1px solid hsl(210,5%,40%) !important}.col-xs-7{border-left:1px solid hsl(210,5%,40%) !important}.col-xs-7 a{border:none !important}.google-visualization-table-tr-even{background:hsl(0,0%,15%) !important}.google-visualization-table-tr-odd{background:hsl(0,0%,10%) !important}.google-visualization-table-table th,.google-visualization-table-table td{border:none !important}.google-visualization-table-tr-head{background-color:#689 !important}.google-visualization-table .gradient{background:none !important}.google-visualization-table-sortind{color:hsl(0,0%,15%) !important}.dlg-profile-car-aero .aero-canvas{border:none !important}.dlg-profile-car-aero .aero-canvas .content{background:hsl(210,5%,40%) !important}.dlg-profile-car-aero .warning{background:rgba(225,20,0,.5) !important;color:hsl(0,0%,70%) !important}.literally .toolbar{background:hsl(0,0%,10%) !important}.literally .toolbar .toolbar-row{border:none !important}.literally .button{border:none !important;color:hsl(0,0%,70%) !important;background:hsl(0,0%,15%) !important}.literally .button.danger{background:rgba(225,20,0,.5) !important}.literally .button.active,.literally .button:hover{border:none !important;color:hsl(0,0%,15%) !important;background:#689 !important}#file-input:hover{cursor:pointer !important}.profile-car .my-car{z-index:15 !important;background:hsl(0,0%,15%) !important;border:1px solid hsl(210,5%,40%) !important}.profile-car .my-car .car{background:hsl(0,0%,15%) !important}.profile-car .my-car .title{color:gold !important;border-bottom:1px solid rgba(0,0,0,0) !important}.profile-car .shop .no-tuning{color:hsl(0,0%,70%) !important}.profile-car .car-block .name{color:#689 !important}.profile-car .tuning-category .tuning-item{border:1px solid rgba(0,0,0,0) !important}.profile-car .tuning-category .tuning-item .price{color:hsl(0,0%,70%) !important}.profile-car .tuning-category .tuning-item .price .scores{color:#90ee90 !important;background:rgba(0,0,0,0) !important}.profile-car .tuning-category .tuning-item.active{border:1px solid #689 !important}.dlg-profile-prefs-change-avatar .avatar-preview .preview{border:none !important}#profile-prefs .prefs-block{background:hsl(0,0%,15%) !important}.btn>.view-color{border:none !important}.dlg-profile-vocs .vocs th,.dlg-profile-vocs .vocs td{border-bottom:1px solid hsl(210,5%,40%) !important;background:hsl(0,0%,15%) !important}.dlg-profile-vocs .vocs a{color:#689 !important}.dlg-profile-vocs .vocs a span{color:#689 !important}.dlg-profile-vocs .vocs a span:hover{color:hsl(200,40%,60%) !important}#content .voclist{display:inline-flex !important;gap:10px !important}#content .voclist h3{display:none !important}#content .voclist .left-col{float:none !important;display:flex !important;flex-direction:column !important;height:100% !important;width:150px !important;margin:0 !important;padding:0 !important;position:sticky !important;top:100px !important}@media(max-width: 1000px){#content .voclist .left-col{top:140px !important}}#content .voclist .left-col a.create_voc{margin:0 !important;border-radius:5px !important;transition:all .1s !important;filter:invert(1) !important}#content .voclist .left-col h4{color:hsl(30,65%,50%) !important;font:700 1.2em \"Montserrat\",sans-serif !important;text-transform:uppercase !important;padding:2px 5px !important;margin:15px 0 5px !important;border-radius:3px !important;text-align:center !important}#content .voclist .left-col ul.left-menu{display:flex !important;flex-direction:column !important;align-items:center !important;width:150px !important;margin:0 !important}#content .voclist .left-col ul.left-menu li{left:0 !important;padding:0 !important;margin:2px !important;width:100% !important;display:flex !important;align-items:center !important;height:20px !important;white-space:nowrap !important}#content .voclist .left-col ul.left-menu li.active{background:rgba(0,0,0,0) !important}#content .voclist .left-col ul.left-menu li.active span{color:hsl(200,40%,60%) !important;background:hsl(200,40%,20%) !important;padding:2px 5px !important;margin:0 !important;width:100% !important;border-radius:3px !important}#content .voclist .left-col ul.left-menu li a{padding:2px 5px !important;display:flex !important;align-items:center !important;width:100% !important;text-decoration:none !important;background:hsl(0,0%,15%) !important;color:#689 !important;transition:all .1s !important;border-radius:3px !important}#content .voclist .left-col ul.left-menu li a:hover{color:hsl(200,40%,60%) !important;background:hsl(200,40%,20%) !important}#content .voclist .content-col{margin:0 !important;padding:0 !important;padding-left:0 !important;padding-right:0 !important}#content .voclist .content-col #search_form{position:sticky !important;top:100px !important;z-index:5 !important}@media(max-width: 1000px){#content .voclist .content-col #search_form{top:140px !important}}#content .voclist .content-col input[type=submit]{display:none !important}#content .voclist .content-col table{background:hsl(0,0%,15%) !important}#content .voclist .content-col table tbody{display:grid !important;width:100% !important;grid-template-columns:repeat(3, 1fr) !important;gap:5px !important;align-items:center !important}#content .voclist .content-col table tbody tr{border-radius:5px !important;border:1px solid hsl(210,5%,25%) !important;padding:10px !important;display:block !important;height:100% !important;background-color:hsl(0,0%,13%) !important}#content .voclist .content-col table tbody tr td{border-bottom:none !important}#content .voclist .content-col table tbody tr td.title{width:100% !important;padding:5px 0 !important}#content .voclist .content-col table tbody tr td.title .btn_play,#content .voclist .content-col table tbody tr td.title .btn_fav,#content .voclist .content-col table tbody tr td.title .remove{width:80px !important}#content .voclist .content-col table tbody tr td.title .btn_fav{filter:invert(0.8) !important}#content .voclist .content-col table tbody tr td.title .remove{color:hsl(200,40%,60%) !important;background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\"></line><line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\"></line></svg>') no-repeat left center/contain !important;filter:hue-rotate(150deg) !important}#content .voclist .content-col table tbody tr td.symbols{width:calc(100% - 30px) !important;padding:5px 0 !important;display:inline-flex !important;align-items:center !important;color:hsl(200,40%,60%) !important}#content .voclist .content-col table tbody tr td.symbols strong{color:hsl(30,65%,50%) !important;background-color:hsl(30,65%,20%) !important;padding:2px 5px !important;margin-right:10px !important;border-radius:3px !important;font-weight:bold !important}#content .voclist .content-col table tbody tr td.symbols i{color:hsl(210,5%,40%) !important;margin-right:2px !important}#content .voclist .content-col table tbody tr td.popularity{display:inline-flex !important;width:24px !important;height:24px !important;background:none !important}#content .voclist .content-col table tbody tr td.popularity .voc_popularity{background:url(\"https://i.imgur.com/2eXawT9.png\") no-repeat}#content .voclist .content-col table tbody tr td.popularity .voc_popularity.popularity0{background-position:0px -96px !important}#content .voclist .content-col table tbody tr td.popularity .voc_popularity.popularity1{background-position:0px -72px !important}#content .voclist .content-col table tbody tr td.popularity .voc_popularity.popularity2{background-position:0px -48px !important}#content .voclist .content-col table tbody tr td.popularity .voc_popularity.popularity3{background-position:0px -24px !important}#content .voclist .content-col table tbody tr td.popularity .voc_popularity.popularity4{background-position:0px 0px !important}@media(max-width: 1100px){#content .voclist .content-col table tbody{grid-template-columns:repeat(2, 1fr) !important}}@media(max-width: 900px){#content .voclist .content-col table tbody{grid-template-columns:repeat(1, 1fr) !important}}@media(max-width: 600px){#content .voclist{display:flex !important;flex-direction:column !important;align-items:center !important}#content .voclist .left-col{flex-direction:row !important;justify-content:center !important;width:100% !important;gap:10px !important}#content .voclist .left-col .create_voc{position:absolute !important}#content .voclist .left-col h4{display:none !important}#content .voclist .left-col ul.left-menu{margin-top:40px !important}}@media(max-width: 450px){#content .voclist .left-menu li{font-size:.9em !important}}@keyframes fadeIn{0%,80%{opacity:0}100%{opacity:1}}@keyframes bounce{from{transform:translateY(3px)}to{transform:translateY(-3px)}}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}@keyframes vigorousShake{0%,100%{transform:translateX(0px) translateY(0px) rotate(0deg)}5%{transform:translateX(-3px) translateY(-1px) rotate(-1deg)}10%{transform:translateX(3px) translateY(1px) rotate(1deg)}15%{transform:translateX(-4px) translateY(-2px) rotate(-1.5deg)}20%{transform:translateX(4px) translateY(2px) rotate(1.5deg)}25%{transform:translateX(-3px) translateY(-1px) rotate(-1deg)}30%{transform:translateX(3px) translateY(1px) rotate(1deg)}35%{transform:translateX(-2px) translateY(-2px) rotate(-0.5deg)}40%{transform:translateX(2px) translateY(2px) rotate(0.5deg)}45%{transform:translateX(-3px) translateY(-1px) rotate(-1deg)}50%{transform:translateX(3px) translateY(1px) rotate(1deg)}55%{transform:translateX(-2px) translateY(-1px) rotate(-0.5deg)}60%{transform:translateX(2px) translateY(1px) rotate(0.5deg)}65%{transform:translateX(-1px) translateY(-1px) rotate(-0.3deg)}70%{transform:translateX(1px) translateY(1px) rotate(0.3deg)}75%{transform:translateX(-2px) translateY(-1px) rotate(-0.5deg)}80%{transform:translateX(2px) translateY(1px) rotate(0.5deg)}85%{transform:translateX(-1px) translateY(0px) rotate(-0.2deg)}90%{transform:translateX(1px) translateY(0px) rotate(0.2deg)}95%{transform:translateX(-1px) translateY(0px) rotate(0deg)}}#content #profile-block{margin-top:10px !important;display:grid !important;grid-template-areas:\"title right\" \"menu right\" \"content right\";grid-template-columns:100% auto;grid-template-rows:auto auto 1fr}#content #profile-block dl{margin:10px 0 0}#content #profile-block dd{margin:0 !important}#content #profile-block dl.user-title{grid-area:title;width:100% !important;display:flex !important;justify-content:center !important}#content #profile-block dl.user-title dd table tbody tr{display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:center !important;gap:10px !important}@media(max-width: 600px){#content #profile-block dl.user-title dd table tbody tr{display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}}@media(max-width: 600px){#content #profile-block dl.user-title dd table tbody tr td.title{display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}}#content #profile-block dl.user-title dd table tbody tr td.links .btn_play,#content #profile-block dl.user-title dd table tbody tr td.links .btn_fav{margin:0 !important}#content #profile-block dl.user-title dd table tbody tr td.links .btn_fav{filter:invert(1) !important}#content #profile-block dl.user-title dd .remove{color:hsl(200,40%,60%) !important;background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\"></line><line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\"></line></svg>') no-repeat left center/contain !important;filter:hue-rotate(150deg) !important;margin:0 !important}#content #profile-block .menu{grid-area:menu;width:100% !important;display:flex !important;justify-content:center !important}#content #profile-block .user-content{clear:unset !important;margin-top:0 !important;grid-area:content;width:100% !important}@media(max-width: 450px){#content #profile-block .user-content{margin:0 10px !important;width:auto !important}}#content #profile-block .user-content dt{width:100px}#content #profile-block .user-content dd[style*=\"avatars/\"]{padding-left:40px !important;width:32px !important;height:32px !important;position:relative !important}#content #profile-block .user-content dd[style*=\"avatars/\"]::before{content:\"\";position:absolute;left:0;width:32px;height:32px;background-image:url('data:image/svg+xml;utf8,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(0, 0%, 15%)\" d=\"M24,0l0,24l-24,0l0,-24l24,0Zm-0.944,4.26c0,-1.828 -1.488,-3.316 -3.316,-3.316l-15.48,0c-1.828,0 -3.316,1.488 -3.316,3.316l0,15.48c0,1.828 1.488,3.316 3.316,3.316l15.48,0c1.828,0 3.316,-1.488 3.316,-3.316l0,-15.48Z\"/></svg>');background-position:left center;background-size:32px}@media(max-width: 450px){#content #profile-block .user-content dl:not(.write):not(:has(.title)) dt{display:none !important}}#content #profile-block .user-content dl:not(.write):not(:has(.title)) dd{margin-left:120px !important;background-color:rgba(0,0,0,0) !important}@media(max-width: 450px){#content #profile-block .user-content dl:not(.write):not(:has(.title)) dd{margin-left:0 !important}}#content #profile-block .user-content dl:not(.write):not(:has(.title)) dd .words{width:fit-content !important;border:1px solid #689 !important;background-color:hsl(0,0%,5%) !important}#content #profile-block .user-content dl:not(.write):not(:has(.title)) dd .words tr .num,#content #profile-block .user-content dl:not(.write):not(:has(.title)) dd .words tr .text{background:rgba(0,0,0,0) !important}#content #profile-block .user-content dl:not(.write):not(:has(.title)) dd .words tr .num{color:#689 !important}#content #profile-block .user-content dl:not(.write):not(:has(.title)) dd .words tr .text{color:hsl(0,0%,70%) !important}#content #profile-block .editfor-title{text-decoration:none !important;padding:4px 8px !important;color:hsl(0,0%,5%) !important;background-color:hsl(210,5%,40%) !important;border-radius:3px !important}#content #profile-block .editfor-title.loading i{filter:invert(1) !important}#content #profile-block .editfor-title:hover{background-color:hsl(210,5%,50%) !important}#content #profile-block .editfor-title i{margin-left:-30px !important;filter:brightness(0.6) contrast(1.5) sepia(0.5) !important}#content #profile-block .editfor-title .dashed{border:none !important;color:inherit !important}#content #profile-block .right-col{grid-area:right;position:fixed !important;top:50% !important;right:0 !important;transform:translateY(-50%) !important;width:50px !important;height:50px !important;z-index:10 !important;cursor:pointer !important;opacity:0;animation:fadeIn .5s ease-in-out 0s 1 forwards !important}#content #profile-block .right-col .comments{position:absolute !important;width:500px !important;height:50px !important;max-height:80vh !important;right:0 !important;top:50% !important;transform:translateY(-50%) translateX(calc(100% - 50px)) !important;transition:transform .3s ease,height .3s ease !important;background:hsl(0,0%,5%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z\"></path></svg>') no-repeat 10px center/32px !important;border:1px solid #689 !important;overflow:hidden !important;overflow-x:hidden !important;overflow-y:auto !important}@media(max-width: 500px){#content #profile-block .right-col .comments{width:100vw !important}}#content #profile-block .right-col .comments .comment,#content #profile-block .right-col .comments .link,#content #profile-block .right-col .comments h4{opacity:0 !important;transition:opacity .3s ease !important}#content #profile-block .right-col .comments .rss{top:0 !important;background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(30, 65%, 50%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 11a9 9 0 0 1 9 9\"></path><path d=\"M4 4a16 16 0 0 1 16 16\"></path><circle cx=\"5\" cy=\"19\" r=\"1\"></circle></svg>') no-repeat center/contain !important}#content #profile-block .right-col .comments .rss img{visibility:hidden !important}#content #profile-block .right-col .comments .comment{display:flex !important;flex-direction:column !important;position:relative !important;margin:25px 0 15px !important}#content #profile-block .right-col .comments .comment .info[style*=\"avatars/\"]{width:32px !important;height:32px !important;padding-left:40px !important}#content #profile-block .right-col .comments .comment .info[style*=\"avatars/\"]::before{content:\"\";position:absolute;left:0;width:32px;height:32px;background-image:url('data:image/svg+xml;utf8,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(0, 0%, 5%)\" d=\"M24,0l0,24l-24,0l0,-24l24,0Zm-0.944,4.26c0,-1.828 -1.488,-3.316 -3.316,-3.316l-15.48,0c-1.828,0 -3.316,1.488 -3.316,3.316l0,15.48c0,1.828 1.488,3.316 3.316,3.316l15.48,0c1.828,0 3.316,-1.488 3.316,-3.316l0,-15.48Z\"/></svg>');background-position:left center;background-size:32px}#content #profile-block .right-col .comments .comment .info{display:inline-flex !important;align-items:center !important;gap:5px !important}#content #profile-block .right-col .comments .link{width:calc(50% + 15px) !important;height:32px !important;display:flex !important;justify-content:center !important;align-items:center !important;text-decoration:none !important;color:hsl(0,0%,5%) !important;background-color:hsl(210,5%,40%) !important;bottom:0 !important;transition:background-color .15s ease !important;position:sticky !important}#content #profile-block .right-col .comments .link:hover{background-color:#689 !important}#content #profile-block .right-col .comments .link i{margin:0 !important;left:15px !important}@media(max-width: 430px){#content #profile-block .right-col .comments .link i{display:none !important}}#content #profile-block .right-col .comments .write{margin-left:-15px !important;float:left !important;left:0 !important;border-right:1px solid hsl(0,0%,5%) !important}#content #profile-block .right-col .comments .write i{background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 10%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z\"></path></svg>') no-repeat center/contain !important}#content #profile-block .right-col .comments .other{margin-right:-15px !important;float:right !important;left:50% !important}#content #profile-block .right-col .comments .other i{background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 10%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z\"></path></svg>') no-repeat center/contain !important}#content #profile-block .right-col:hover .comments{transform:translateY(-50%) translateX(0) !important;height:auto !important;background:hsl(0,0%,5%) !important}@media(max-width: 500px){#content #profile-block .right-col:hover .comments{height:70vh !important}}#content #profile-block .right-col:hover .comments .comment,#content #profile-block .right-col:hover .comments .link,#content #profile-block .right-col:hover .comments h4{opacity:1 !important}#content #profile-block .user-content .comments{display:flex !important;flex-direction:column !important;gap:12px !important}#content #profile-block .user-content .comments .comment{border:1px solid hsl(210,5%,40%) !important;border-radius:5px !important;padding:12px !important;background-color:hsl(0,0%,15%) !important;transition:border-color .1s ease,background-color .1s ease-out !important;font-family:\"Montserrat\",Verdana,Geneva,Tahoma,sans-serif !important}#content #profile-block .user-content .comments .comment:hover{border-color:hsl(200,40%,60%) !important;background-color:hsl(0,0%,10%) !important}#content #profile-block .user-content .comments .comment dl{margin:0 !important;display:flex !important;gap:12px !important;align-items:flex-start !important}#content #profile-block .user-content .comments .comment dl dt{width:60px !important;height:60px !important;flex-shrink:0 !important;margin:0 !important}#content #profile-block .user-content .comments .comment dl dt img{width:60px !important;height:60px !important;border-radius:5px !important;object-fit:cover !important}#content #profile-block .user-content .comments .comment dl dd{flex:1 !important}#content #profile-block .user-content .comments .comment .title{display:flex !important;align-items:center !important;flex-wrap:wrap !important;gap:10px !important;margin-bottom:5px !important}#content #profile-block .user-content .comments .comment .title .name{font-weight:600 !important;color:hsl(0,0%,70%) !important;text-decoration:none !important;font-size:1.1em !important}#content #profile-block .user-content .comments .comment .title .name:hover{color:hsl(200,40%,60%) !important}#content #profile-block .user-content .comments .comment .title .date{margin:0 !important;color:hsl(210,5%,40%) !important;font-size:1em !important}#content #profile-block .user-content .comments .comment .text{color:hsl(0,0%,70%) !important;line-height:1.5 !important;font-size:1em !important;margin:0 !important}#content #profile-block .user-content .comments .comment .text b{color:hsl(120,35%,45%) !important;font-weight:600 !important}#content .gamelist-create{margin-bottom:0 !important;background:none !important}#content .gamelist-create .r .rc{padding:10px 0 !important}#content .gamelist-create .r .rc form{display:inline-flex;font-size:0}#content .gamelist-create .r .rc form #savedModes{margin-right:10px !important}#content .gamelist-create .r .rc form input#create_game,#content .gamelist-create .r .rc form input#delete{color:rgba(0,0,0,0) !important;border:none !important;background-color:hsl(210,5%,40%) !important;padding:0 !important;display:inline-flex !important;width:35px !important;height:35px !important;border-radius:50% !important;cursor:pointer !important;transition:background-color .15s !important;background-repeat:no-repeat !important;background-position:center !important;background-size:18px !important;margin-right:5px !important}#content .gamelist-create .r .rc form input#create_game{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 10%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"12\" y1=\"5\" x2=\"12\" y2=\"19\"></line><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"></line></svg>') !important}#content .gamelist-create .r .rc form input#create_game:hover{background-color:hsl(120,35%,45%) !important}#content .gamelist-create .r .rc form input#delete{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 10%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\"></line><line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\"></line></svg>') !important}#content .gamelist-create .r .rc form input#delete:hover{background-color:#c68 !important}#content #gamelist .tl{display:none !important}#content #gamelist .item td{border:none !important}#content #gamelist .item td.enter,#content #gamelist .item td.sign,#content #gamelist .item td.status,#content #gamelist .item td.players{padding:0 10px 0 0 !important;height:100% !important}#content #gamelist .item td.enter .enter{margin:0 !important}#content #gamelist .item td.enter a{display:block !important;box-sizing:border-box !important;width:63px !important;height:63px !important;background:url(\"https://i.imgur.com/3cCOjvW.png\") !important;background-size:contain !important;background-repeat:no-repeat !important;padding-left:63px !important;filter:brightness(0.8) !important}#content #gamelist .item td.enter a:hover{display:block !important;box-sizing:border-box !important;width:63px !important;height:63px !important;padding-left:63px !important}#content #gamelist .item td.enter a.competition{display:block !important;box-sizing:border-box !important;width:63px !important;height:63px !important;background:url(\"https://i.imgur.com/SBiVd3b.png\") !important;background-size:contain !important;background-repeat:no-repeat !important;padding-left:63px !important}#content #gamelist .item td.enter a.competition:hover{display:block !important;box-sizing:border-box !important;width:63px !important;height:63px !important;padding-left:63px !important;filter:brightness(0.8) !important}#content #gamelist .item td.sign .gametype-sign{margin:0 !important}#content #gamelist .remain span{color:hsl(200,40%,60%) !important;background-position:0 -25px !important}#content #gamelist .custominfo .competition{color:hsl(50,80%,50%) !important}#content #gamelist .custominfo .cost{color:hsl(30,65%,50%) !important}#content #gamelist .players .name{min-height:24px !important;display:inline-flex !important;align-items:center !important;justify-content:center !important;width:100% !important}#content #gamelist .players .name i{width:24px !important;height:24px !important;border-radius:2px !important;background-color:rgba(0,0,0,0) !important}#content #gamelist .players .name a{border:none !important;padding-left:8px !important}#content #gamelist .players .numbers{top:0 !important}#content #gamelist-active{background:hsl(0,0%,15%) !important;border-top:1px solid hsl(210,5%,40%) !important;margin-top:20px !important}#content #gamelist-active button.hide-btn{top:0 !important;right:0 !important;background:hsl(210,5%,40%) !important;color:hsl(0,0%,5%) !important;transition:all .15s ease-out !important}#content #gamelist-active button.hide-btn:hover{background:#689 !important}#content #gamelist-active button.hide-btn .glyphicon{display:none !important}#content #gamelist-active.hide-block{background-color:hsl(0,0%,15%) !important;border:none !important;margin:0 !important}#content #gamelist-active.hide-block h3,#content #gamelist-active.hide-block h4{color:hsl(210,5%,40%) !important}#content #gamelist-active.hide-block button{background:hsl(210,5%,40%) !important;color:hsl(0,0%,5%) !important;transition:all .15s ease-out !important}#content #gamelist-active.hide-block button:hover{background:#689 !important}#content #gamelist-active.hide-block button .glyphicon{display:none !important}@media(max-width: 800px){#content .gamelist-create .r .rc{padding:10px 5px 40px 5px !important}#content .gamelist-create .r .rc form{position:relative !important}#content .gamelist-create .r .rc form #savedModes{position:absolute !important;margin:0 !important;bottom:-40px !important}}@media(max-width: 800px){#content #gamelist .item{padding:5px !important}#content #gamelist .item table{display:flex !important;flex-direction:column !important;justify-content:flex-start !important;align-items:stretch !important;width:100% !important;gap:10px !important}#content #gamelist .item table tbody{display:flex !important;flex-direction:column !important;justify-content:flex-start !important;align-items:stretch !important;gap:10px !important}#content #gamelist .item table tr{display:flex !important;flex-direction:row !important;justify-content:flex-start !important;align-items:center !important;flex-wrap:wrap !important;gap:10px !important;width:100% !important}#content #gamelist .item td.enter{margin:0 !important;flex:0 0 auto !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}#content #gamelist .item td.sign{margin:0 !important;flex:0 0 auto !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}#content #gamelist .item td.status{margin:0 !important;flex:0 0 auto !important;overflow-wrap:break-word !important;word-wrap:break-word !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}#content #gamelist .item td.players{display:flex !important;flex-direction:column !important;justify-content:flex-start !important;align-items:stretch !important;padding:10px 0 0 0 !important;width:100% !important;flex-basis:100% !important;overflow-wrap:break-word !important;word-wrap:break-word !important}#content #gamelist .item td.players table{display:flex !important;flex-direction:row !important;justify-content:flex-start !important;align-items:center !important;flex-wrap:wrap !important;width:100% !important;gap:5px !important}#content #gamelist .item td.players .name{flex:0 0 auto !important;white-space:nowrap !important}}@media(max-width: 550px){#content #gamelist-active{display:none !important}}#recent-games-container .gametype-normal,#gametype-select .gametype-normal,#content .gametype-normal,#popup .gametype-normal{color:hsl(135,30%,60%) !important}#recent-games-container a.gametype-normal,#gametype-select a.gametype-normal,#content a.gametype-normal,#popup a.gametype-normal{border-color:hsl(135,30%,60%) !important}#recent-games-container .gametype-quote,#gametype-select .gametype-quote,#content .gametype-quote,#popup .gametype-quote{color:#999 !important}#recent-games-container a.gametype-quote,#gametype-select a.gametype-quote,#content a.gametype-quote,#popup a.gametype-quote{border-color:#999 !important}#recent-games-container .gametype-sprint,#gametype-select .gametype-sprint,#content .gametype-sprint,#popup .gametype-sprint{color:hsl(280,65%,65%) !important}#recent-games-container a.gametype-sprint,#gametype-select a.gametype-sprint,#content a.gametype-sprint,#popup a.gametype-sprint{border-color:hsl(280,65%,65%) !important}#recent-games-container .gametype-marathon,#gametype-select .gametype-marathon,#content .gametype-marathon,#popup .gametype-marathon{color:hsl(315,40%,60%) !important}#recent-games-container a.gametype-marathon,#gametype-select a.gametype-marathon,#content a.gametype-marathon,#popup a.gametype-marathon{border-color:hsl(315,40%,60%) !important}#recent-games-container .gametype-noerror,#gametype-select .gametype-noerror,#content .gametype-noerror,#popup .gametype-noerror{color:#0cb !important}#recent-games-container a.gametype-noerror,#gametype-select a.gametype-noerror,#content a.gametype-noerror,#popup a.gametype-noerror{border-color:#0cb !important}#recent-games-container .gametype-noerrorcnt,#gametype-select .gametype-noerrorcnt,#content .gametype-noerrorcnt,#popup .gametype-noerrorcnt{color:#0cb !important}#recent-games-container a.gametype-noerrorcnt,#gametype-select a.gametype-noerrorcnt,#content a.gametype-noerrorcnt,#popup a.gametype-noerrorcnt{border-color:#0cb !important}#recent-games-container .gametype-abra,#gametype-select .gametype-abra,#content .gametype-abra,#popup .gametype-abra{color:hsl(50,100%,45%) !important}#recent-games-container a.gametype-abra,#gametype-select a.gametype-abra,#content a.gametype-abra,#popup a.gametype-abra{border-color:hsl(50,100%,45%) !important}#recent-games-container .gametype-abra-premium,#gametype-select .gametype-abra-premium,#content .gametype-abra-premium,#popup .gametype-abra-premium{color:hsl(50,100%,45%) !important}#recent-games-container a.gametype-abra-premium,#gametype-select a.gametype-abra-premium,#content a.gametype-abra-premium,#popup a.gametype-abra-premium{border-color:hsl(50,100%,45%) !important}#recent-games-container .gametype-digits,#gametype-select .gametype-digits,#content .gametype-digits,#popup .gametype-digits{color:hsl(170,45%,50%) !important}#recent-games-container a.gametype-digits,#gametype-select a.gametype-digits,#content a.gametype-digits,#popup a.gametype-digits{border-color:hsl(170,45%,50%) !important}#recent-games-container .gametype-referats,#gametype-select .gametype-referats,#content .gametype-referats,#popup .gametype-referats{color:hsl(60,40%,60%) !important}#recent-games-container a.gametype-referats,#gametype-select a.gametype-referats,#content a.gametype-referats,#popup a.gametype-referats{border-color:hsl(60,40%,60%) !important}#recent-games-container .gametype-voc,#gametype-select .gametype-voc,#content .gametype-voc,#popup .gametype-voc{color:hsl(215,60%,60%) !important}#recent-games-container a.gametype-voc,#gametype-select a.gametype-voc,#content a.gametype-voc,#popup a.gametype-voc{border-color:hsl(215,60%,60%) !important}#recent-games-container .gametype-chars,#gametype-select .gametype-chars,#content .gametype-chars,#popup .gametype-chars{color:hsl(20,45%,60%) !important}#recent-games-container a.gametype-chars,#gametype-select a.gametype-chars,#content a.gametype-chars,#popup a.gametype-chars{border-color:hsl(20,45%,60%) !important}#recent-games-container .gametype-qual,#gametype-select .gametype-qual,#content .gametype-qual,#popup .gametype-qual{color:#f66 !important}#recent-games-container a.gametype-qual,#gametype-select a.gametype-qual,#content a.gametype-qual,#popup a.gametype-qual{border-color:#f66 !important}#recent-games-container .premium-yellow,#recent-games-container .premium-yellow a,#gametype-select .premium-yellow,#gametype-select .premium-yellow a,#content .premium-yellow,#content .premium-yellow a,#popup .premium-yellow,#popup .premium-yellow a{color:hsl(50,80%,55%) !important}#howtoplay .gametype-sign,#content .gametype-sign,#content .gametype-sign:not(.qual),#status .gametype-sign:not(.qual){background-size:contain !important;background-repeat:no-repeat !important;margin:0 0 0 6px !important}.gametype-sign{display:block !important;box-sizing:border-box !important;width:48px !important;height:48px !important;background:url(\"https://i.imgur.com/bc1qtjV.png\") !important;padding-left:0 !important}.gametype-sign.sign-normal{display:block !important;box-sizing:border-box !important;width:48px !important;height:48px !important;background:url(\"https://i.imgur.com/bc1qtjV.png\") !important;padding-left:0 !important}.gametype-sign.sign-normal{display:block !important;box-sizing:border-box !important;width:48px !important;height:48px !important;background:url(\"https://i.imgur.com/bc1qtjV.png\") !important;padding-left:0 !important}.gametype-sign.sign-noerror{display:block !important;box-sizing:border-box !important;width:48px !important;height:48px !important;background:url(\"https://i.imgur.com/Jtc0hbl.png\") !important;padding-left:0 !important}.gametype-sign.sign-chars{display:block !important;box-sizing:border-box !important;width:48px !important;height:48px !important;background:url(\"https://i.imgur.com/h9gIqII.png\") !important;padding-left:0 !important}.gametype-sign.sign-marathon{display:block !important;box-sizing:border-box !important;width:48px !important;height:48px !important;background:url(\"https://i.imgur.com/FrbMx1S.png\") !important;padding-left:0 !important}.gametype-sign.sign-sprint{display:block !important;box-sizing:border-box !important;width:48px !important;height:48px !important;background:url(\"https://i.imgur.com/nv8KiwH.png\") !important;padding-left:0 !important}.gametype-sign.sign-abra{display:block !important;box-sizing:border-box !important;width:48px !important;height:48px !important;background:url(\"https://i.imgur.com/GSgcQHr.png\") !important;padding-left:0 !important}.gametype-sign.sign-digits{display:block !important;box-sizing:border-box !important;width:48px !important;height:48px !important;background:url(\"https://i.imgur.com/4wGQAmB.png\") !important;padding-left:0 !important}.gametype-sign.sign-voc{display:block !important;box-sizing:border-box !important;width:48px !important;height:48px !important;background:url(\"https://i.imgur.com/1D7IS4z.png\") !important;padding-left:0 !important}.gametype-sign.sign-referats{display:block !important;box-sizing:border-box !important;width:48px !important;height:48px !important;background:url(\"https://i.imgur.com/2UotZ43.png\") !important;padding-left:0 !important}.gametype-sign.qual{box-sizing:border-box !important;height:48px !important;width:48px !important;padding:0 !important;margin:0 !important;position:relative !important;top:0 !important;left:0 !important;background:rgba(0,0,0,0) !important;transition:background .2s !important;z-index:10 !important;cursor:pointer !important}.gametype-sign.qual::after{content:\"\" !important;position:absolute !important;top:100% !important;left:100% !important;transform:translate(-90%, -90%) !important;width:24px !important;height:24px !important;border-radius:50% !important;background:hsl(30,65%,30%) url('data:image/svg+xml,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path d=\"M12,0.4c6.412,0 11.6,5.188 11.6,11.6c0,6.412 -5.188,11.6 -11.6,11.6c-6.412,0 -11.6,-5.188 -11.6,-11.6c-0,-6.412 5.188,-11.6 11.6,-11.6Zm-0,1.2c-5.748,-0 -10.4,4.652 -10.4,10.4c-0,5.748 4.652,10.4 10.4,10.4c5.748,-0 10.4,-4.652 10.4,-10.4c-0,-5.748 -4.652,-10.4 -10.4,-10.4Zm-3.043,11.874c-1.19,-0.91 -1.957,-2.346 -1.957,-3.964c0,-2.752 2.218,-4.97 4.97,-4.97c2.752,-0 4.98,2.218 4.98,4.97c0,1.618 -0.771,3.055 -1.965,3.965l0.71,5.326c0.03,0.228 -0.073,0.453 -0.265,0.58c-0.192,0.127 -0.44,0.132 -0.638,0.014l-2.822,-1.686l-2.812,1.686c-0.197,0.118 -0.445,0.113 -0.637,-0.013c-0.193,-0.127 -0.296,-0.352 -0.266,-0.58l0.702,-5.328Zm4.903,0.645c-0.583,0.239 -1.221,0.371 -1.89,0.371c-0.669,-0 -1.306,-0.132 -1.887,-0.37l-0.476,3.607l2.055,-1.232c0.189,-0.113 0.426,-0.113 0.616,-0l2.063,1.233l-0.481,-3.609Zm1.89,-4.609c0,-2.088 -1.692,-3.77 -3.78,-3.77c-2.088,-0 -3.77,1.682 -3.77,3.77c0,2.088 1.682,3.78 3.77,3.78c2.088,-0 3.78,-1.692 3.78,-3.78Z\" fill=\"hsl(50, 80%, 50%)\"/></svg>') no-repeat center/24px !important}#create h3{display:none !important}#create dl{display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:start !important;gap:10px !important;margin:0 !important;padding:0 !important}@media(max-width: 1120px){#create dl{display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}}#create dl dd{float:unset !important;width:550px !important;min-width:550px !important;padding:0 !important;order:1 !important}@media(max-width: 1120px){#create dl dd{order:0 !important}}@media(max-width: 1120px)and (max-width: 580px){#create dl dd{width:calc(100% - 20px) !important;min-width:calc(100% - 20px) !important}}#create dl dd .buttons{display:flex !important;justify-content:space-between !important;margin:0 !important;padding:10px 0 !important;gap:10px !important}@media(max-width: 580px){#create dl dd .buttons{display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}}#create dl dd .buttons input{transition:background .15s ease-out !important;padding:0 !important;margin:0 !important;width:50% !important;height:50px !important;border-radius:5px !important}@media(max-width: 580px){#create dl dd .buttons input{width:100% !important;min-width:300px !important}}#create dl dd .buttons input.create_game{background:#689 url('data:image/svg+xml,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 235 50\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path d=\"M73.653,18.554l0,15.403l-2.511,0l0,-17.743l12.595,0l0,17.743l-2.51,0l0,-15.403l-7.574,0Zm20.338,15.573c-1.233,-0 -2.34,-0.255 -3.276,-0.809c-0.936,-0.553 -1.659,-1.319 -2.17,-2.297c-0.51,-0.979 -0.766,-2.128 -0.766,-3.447l0,-5.021c0,-1.276 0.256,-2.425 0.766,-3.446c0.511,-0.979 1.234,-1.745 2.17,-2.255c0.936,-0.553 2.043,-0.851 3.276,-0.851c1.234,-0 2.341,0.298 3.277,0.851c0.936,0.51 1.659,1.276 2.17,2.255c0.553,1.021 0.808,2.17 0.808,3.446l0,5.021c0,1.319 -0.255,2.468 -0.808,3.447c-0.511,0.978 -1.234,1.744 -2.17,2.297c-0.936,0.554 -2.043,0.809 -3.277,0.809Zm0,-2.425c0.724,-0 1.362,-0.171 1.958,-0.511c0.553,-0.34 0.978,-0.809 1.276,-1.404c0.298,-0.596 0.468,-1.319 0.468,-2.128l0,-5.191c0,-0.766 -0.17,-1.489 -0.468,-2.085c-0.298,-0.638 -0.723,-1.063 -1.276,-1.404c-0.596,-0.34 -1.234,-0.51 -1.958,-0.51c-0.723,-0 -1.361,0.17 -1.914,0.51c-0.596,0.341 -1.021,0.766 -1.319,1.404c-0.298,0.596 -0.468,1.319 -0.468,2.085l0,5.191c0,0.809 0.17,1.532 0.468,2.128c0.298,0.595 0.723,1.064 1.319,1.404c0.553,0.34 1.191,0.511 1.914,0.511Zm14.723,-13.148l0,8.127c0,1.702 -0.213,3.106 -0.554,4.17c-0.383,1.063 -0.936,1.829 -1.744,2.34c-0.766,0.51 -1.745,0.766 -3.021,0.766l-0.213,0l0,-2.383c0.681,0 1.277,-0.17 1.702,-0.468c0.468,-0.341 0.809,-0.851 1.021,-1.532c0.213,-0.723 0.298,-1.617 0.298,-2.723l0,-10.637l11.233,0l0,17.743l-2.51,-0l0,-15.403l-6.212,-0Zm24.508,15.403l-11.403,-0l0,-17.743l11.403,-0l0,2.34l-8.893,-0l0,5.404l7.574,-0l0,2.382l-7.574,-0l0,5.234l8.893,-0l0,2.383Zm6.127,-15.403l-5.021,-0l-0,-2.34l12.51,-0l-0,2.34l-5.021,-0l-0,15.403l-2.468,-0l-0,-15.403Zm20.849,15.403l-11.403,-0l-0,-17.743l11.403,-0l-0,2.34l-8.893,-0l-0,5.404l7.574,-0l-0,2.382l-7.574,-0l-0,5.234l8.893,-0l-0,2.383Zm8.34,-15.403l-0,8.127c-0,1.702 -0.17,3.106 -0.553,4.17c-0.341,1.063 -0.936,1.829 -1.702,2.34c-0.766,0.51 -1.787,0.766 -3.021,0.766l-0.255,-0l-0,-2.383c0.723,-0 1.319,-0.17 1.744,-0.468c0.468,-0.341 0.766,-0.851 0.979,-1.532c0.212,-0.723 0.34,-1.617 0.34,-2.723l-0,-10.637l11.233,-0l-0,17.743l-2.51,-0l-0,-15.403l-6.255,-0Zm23.785,2.202l-8.595,13.201l-2.042,-0l-0,-17.743l2.468,-0l-0,13.367l8.637,-13.367l2,-0l-0,17.743l-2.468,-0l-0,-13.201Zm-146.838,4.265l-9.786,5.617l-9.744,5.659l2,-11.276l-2,-11.275l9.744,5.616l9.786,5.659Z\" fill=\"hsl(0, 0%, 5%)\"/></svg>') no-repeat center !important}#create dl dd .buttons input.create_game:hover{background:hsl(200,40%,60%) url('data:image/svg+xml,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 235 50\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path d=\"M73.653,18.554l0,15.403l-2.511,0l0,-17.743l12.595,0l0,17.743l-2.51,0l0,-15.403l-7.574,0Zm20.338,15.573c-1.233,-0 -2.34,-0.255 -3.276,-0.809c-0.936,-0.553 -1.659,-1.319 -2.17,-2.297c-0.51,-0.979 -0.766,-2.128 -0.766,-3.447l0,-5.021c0,-1.276 0.256,-2.425 0.766,-3.446c0.511,-0.979 1.234,-1.745 2.17,-2.255c0.936,-0.553 2.043,-0.851 3.276,-0.851c1.234,-0 2.341,0.298 3.277,0.851c0.936,0.51 1.659,1.276 2.17,2.255c0.553,1.021 0.808,2.17 0.808,3.446l0,5.021c0,1.319 -0.255,2.468 -0.808,3.447c-0.511,0.978 -1.234,1.744 -2.17,2.297c-0.936,0.554 -2.043,0.809 -3.277,0.809Zm0,-2.425c0.724,-0 1.362,-0.171 1.958,-0.511c0.553,-0.34 0.978,-0.809 1.276,-1.404c0.298,-0.596 0.468,-1.319 0.468,-2.128l0,-5.191c0,-0.766 -0.17,-1.489 -0.468,-2.085c-0.298,-0.638 -0.723,-1.063 -1.276,-1.404c-0.596,-0.34 -1.234,-0.51 -1.958,-0.51c-0.723,-0 -1.361,0.17 -1.914,0.51c-0.596,0.341 -1.021,0.766 -1.319,1.404c-0.298,0.596 -0.468,1.319 -0.468,2.085l0,5.191c0,0.809 0.17,1.532 0.468,2.128c0.298,0.595 0.723,1.064 1.319,1.404c0.553,0.34 1.191,0.511 1.914,0.511Zm14.723,-13.148l0,8.127c0,1.702 -0.213,3.106 -0.554,4.17c-0.383,1.063 -0.936,1.829 -1.744,2.34c-0.766,0.51 -1.745,0.766 -3.021,0.766l-0.213,0l0,-2.383c0.681,0 1.277,-0.17 1.702,-0.468c0.468,-0.341 0.809,-0.851 1.021,-1.532c0.213,-0.723 0.298,-1.617 0.298,-2.723l0,-10.637l11.233,0l0,17.743l-2.51,-0l0,-15.403l-6.212,-0Zm24.508,15.403l-11.403,-0l0,-17.743l11.403,-0l0,2.34l-8.893,-0l0,5.404l7.574,-0l0,2.382l-7.574,-0l0,5.234l8.893,-0l0,2.383Zm6.127,-15.403l-5.021,-0l-0,-2.34l12.51,-0l-0,2.34l-5.021,-0l-0,15.403l-2.468,-0l-0,-15.403Zm20.849,15.403l-11.403,-0l-0,-17.743l11.403,-0l-0,2.34l-8.893,-0l-0,5.404l7.574,-0l-0,2.382l-7.574,-0l-0,5.234l8.893,-0l-0,2.383Zm8.34,-15.403l-0,8.127c-0,1.702 -0.17,3.106 -0.553,4.17c-0.341,1.063 -0.936,1.829 -1.702,2.34c-0.766,0.51 -1.787,0.766 -3.021,0.766l-0.255,-0l-0,-2.383c0.723,-0 1.319,-0.17 1.744,-0.468c0.468,-0.341 0.766,-0.851 0.979,-1.532c0.212,-0.723 0.34,-1.617 0.34,-2.723l-0,-10.637l11.233,-0l-0,17.743l-2.51,-0l-0,-15.403l-6.255,-0Zm23.785,2.202l-8.595,13.201l-2.042,-0l-0,-17.743l2.468,-0l-0,13.367l8.637,-13.367l2,-0l-0,17.743l-2.468,-0l-0,-13.201Zm-146.838,4.265l-9.786,5.617l-9.744,5.659l2,-11.276l-2,-11.275l9.744,5.616l9.786,5.659Z\" fill=\"hsl(0, 0%, 5%)\"/></svg>') no-repeat center !important}#create dl dd .buttons input.save_game{background:#689 url('data:image/svg+xml,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 235 50\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path d=\"M34.82,35.287l-12.411,-21.459l6.615,1.173l0,-1.637l13.384,0l0,1.637l6.592,-1.173l-13.295,23.007l-0.885,-1.548Zm39.863,-1.151c-1.239,0 -2.323,-0.265 -3.252,-0.818c-0.929,-0.553 -1.659,-1.328 -2.168,-2.323c-0.508,-0.995 -0.752,-2.168 -0.752,-3.473l0,-4.867c0,-1.327 0.244,-2.478 0.752,-3.495c0.509,-0.996 1.239,-1.77 2.168,-2.323c0.929,-0.553 2.013,-0.818 3.252,-0.818c1.018,0 1.947,0.221 2.81,0.663c0.84,0.421 1.57,1.04 2.146,1.836c0.553,0.797 0.951,1.726 1.15,2.766l-2.544,0c-0.155,-0.554 -0.42,-1.04 -0.774,-1.483c-0.376,-0.42 -0.797,-0.752 -1.283,-0.995c-0.487,-0.243 -0.996,-0.354 -1.505,-0.354c-0.73,0 -1.371,0.177 -1.902,0.509c-0.553,0.354 -0.974,0.862 -1.283,1.482c-0.288,0.641 -0.443,1.371 -0.443,2.212l0,4.867c0,0.818 0.155,1.548 0.443,2.19c0.309,0.641 0.73,1.128 1.283,1.482c0.531,0.332 1.172,0.509 1.902,0.509c0.531,0 1.018,-0.111 1.505,-0.332c0.486,-0.221 0.907,-0.531 1.283,-0.973c0.354,-0.421 0.619,-0.952 0.774,-1.549l2.544,0c-0.199,1.062 -0.597,1.991 -1.173,2.788c-0.575,0.796 -1.283,1.415 -2.145,1.836c-0.863,0.442 -1.792,0.663 -2.788,0.663Zm15.53,0c-1.239,0 -2.345,-0.265 -3.274,-0.818c-0.952,-0.531 -1.682,-1.305 -2.19,-2.301c-0.531,-0.973 -0.775,-2.124 -0.775,-3.429l-0,-5.021c-0,-1.306 0.244,-2.456 0.775,-3.451c0.508,-0.974 1.238,-1.748 2.19,-2.279c0.929,-0.553 2.035,-0.818 3.274,-0.818c1.216,0 2.323,0.265 3.274,0.818c0.929,0.531 1.659,1.305 2.19,2.279c0.509,0.995 0.774,2.145 0.774,3.451l-0,5.021c-0,1.305 -0.265,2.456 -0.774,3.429c-0.531,0.996 -1.261,1.77 -2.19,2.301c-0.951,0.553 -2.058,0.818 -3.274,0.818Zm-0,-2.455c0.73,0 1.371,-0.177 1.924,-0.487c0.553,-0.332 0.996,-0.796 1.283,-1.416c0.31,-0.597 0.465,-1.305 0.465,-2.101l-0,-5.199c-0,-0.796 -0.155,-1.504 -0.465,-2.101c-0.287,-0.62 -0.73,-1.084 -1.283,-1.416c-0.553,-0.332 -1.194,-0.487 -1.924,-0.487c-0.73,0 -1.394,0.155 -1.947,0.487c-0.553,0.332 -0.995,0.796 -1.283,1.416c-0.31,0.597 -0.465,1.305 -0.465,2.101l-0,5.199c-0,0.796 0.155,1.504 0.465,2.101c0.288,0.62 0.73,1.084 1.283,1.416c0.553,0.31 1.217,0.487 1.947,0.487Zm15.126,-4.605l-4.021,6.883l-2.81,0l5.533,-9.069l-5.378,-8.694l2.788,0l3.878,6.537l3.82,-6.537l2.787,0l-5.3,8.7l5.588,9.063l-2.81,0l-4.075,-6.883Zm11.796,-0.019l0,6.902l-2.478,0l0,-17.763l6.88,0c1.04,0 1.969,0.221 2.788,0.685c0.796,0.443 1.437,1.084 1.858,1.903c0.464,0.84 0.686,1.77 0.686,2.853c0,1.084 -0.222,2.036 -0.686,2.854c-0.421,0.819 -1.062,1.46 -1.858,1.903c-0.819,0.442 -1.748,0.663 -2.788,0.663l-4.402,0Zm0,-8.494l0,6.127l4.469,0c0.553,0 1.017,-0.11 1.415,-0.376c0.421,-0.243 0.73,-0.597 0.952,-1.062c0.221,-0.464 0.331,-0.995 0.331,-1.615c0,-0.597 -0.11,-1.15 -0.331,-1.592c-0.222,-0.465 -0.531,-0.841 -0.952,-1.084c-0.398,-0.266 -0.862,-0.398 -1.415,-0.398l-4.469,0Zm14.297,11.503l-1.334,3.893l-2.676,0l6.526,-17.763l2.123,0l6.548,17.763l-2.676,0l-1.34,-3.893l-7.171,0Zm6.356,-2.367l-2.779,-8.075l-2.766,8.075l5.545,0Zm10.008,-1.305l0,7.565l-2.5,0l0,-17.763l2.5,0l0,7.831l7.588,0l0,-7.831l2.499,0l0,17.763l-2.499,0l0,-7.565l-7.588,0Zm25.13,-5.643l-8.605,13.186l-2.058,0l0,-17.741l2.478,0l0,13.401l8.628,-13.401l2.013,0l0,17.741l-2.456,0l0,-13.186Zm9.424,-2.188l-5.022,0l-0,-2.367l12.544,0l-0,2.367l-5.022,0l-0,15.396l-2.5,0l-0,-15.396Zm16.282,15.396l-6.814,0l-0,-17.763l2.478,0l-0,7.145l4.336,0c1.128,0 2.079,0.199 2.876,0.619c0.796,0.398 1.415,1.018 1.836,1.814c0.398,0.797 0.619,1.748 0.619,2.876c-0,1.128 -0.221,2.08 -0.619,2.876c-0.421,0.774 -1.04,1.394 -1.836,1.814c-0.797,0.398 -1.748,0.619 -2.876,0.619Zm-4.336,-8.251l-0,5.884l4.424,0c0.553,0 1.04,-0.132 1.46,-0.354c0.398,-0.221 0.708,-0.553 0.907,-0.995c0.221,-0.443 0.332,-0.973 0.332,-1.593c-0,-0.619 -0.111,-1.15 -0.332,-1.593c-0.199,-0.442 -0.509,-0.774 -0.907,-1.017c-0.42,-0.221 -0.907,-0.332 -1.46,-0.332l-4.424,0Z\" fill=\"hsl(0, 0%, 5%)\"/></svg>') no-repeat center !important}#create dl dd .buttons input.save_game:hover{background:hsl(200,40%,60%) url('data:image/svg+xml,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 235 50\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path d=\"M34.82,35.287l-12.411,-21.459l6.615,1.173l0,-1.637l13.384,0l0,1.637l6.592,-1.173l-13.295,23.007l-0.885,-1.548Zm39.863,-1.151c-1.239,0 -2.323,-0.265 -3.252,-0.818c-0.929,-0.553 -1.659,-1.328 -2.168,-2.323c-0.508,-0.995 -0.752,-2.168 -0.752,-3.473l0,-4.867c0,-1.327 0.244,-2.478 0.752,-3.495c0.509,-0.996 1.239,-1.77 2.168,-2.323c0.929,-0.553 2.013,-0.818 3.252,-0.818c1.018,0 1.947,0.221 2.81,0.663c0.84,0.421 1.57,1.04 2.146,1.836c0.553,0.797 0.951,1.726 1.15,2.766l-2.544,0c-0.155,-0.554 -0.42,-1.04 -0.774,-1.483c-0.376,-0.42 -0.797,-0.752 -1.283,-0.995c-0.487,-0.243 -0.996,-0.354 -1.505,-0.354c-0.73,0 -1.371,0.177 -1.902,0.509c-0.553,0.354 -0.974,0.862 -1.283,1.482c-0.288,0.641 -0.443,1.371 -0.443,2.212l0,4.867c0,0.818 0.155,1.548 0.443,2.19c0.309,0.641 0.73,1.128 1.283,1.482c0.531,0.332 1.172,0.509 1.902,0.509c0.531,0 1.018,-0.111 1.505,-0.332c0.486,-0.221 0.907,-0.531 1.283,-0.973c0.354,-0.421 0.619,-0.952 0.774,-1.549l2.544,0c-0.199,1.062 -0.597,1.991 -1.173,2.788c-0.575,0.796 -1.283,1.415 -2.145,1.836c-0.863,0.442 -1.792,0.663 -2.788,0.663Zm15.53,0c-1.239,0 -2.345,-0.265 -3.274,-0.818c-0.952,-0.531 -1.682,-1.305 -2.19,-2.301c-0.531,-0.973 -0.775,-2.124 -0.775,-3.429l-0,-5.021c-0,-1.306 0.244,-2.456 0.775,-3.451c0.508,-0.974 1.238,-1.748 2.19,-2.279c0.929,-0.553 2.035,-0.818 3.274,-0.818c1.216,0 2.323,0.265 3.274,0.818c0.929,0.531 1.659,1.305 2.19,2.279c0.509,0.995 0.774,2.145 0.774,3.451l-0,5.021c-0,1.305 -0.265,2.456 -0.774,3.429c-0.531,0.996 -1.261,1.77 -2.19,2.301c-0.951,0.553 -2.058,0.818 -3.274,0.818Zm-0,-2.455c0.73,0 1.371,-0.177 1.924,-0.487c0.553,-0.332 0.996,-0.796 1.283,-1.416c0.31,-0.597 0.465,-1.305 0.465,-2.101l-0,-5.199c-0,-0.796 -0.155,-1.504 -0.465,-2.101c-0.287,-0.62 -0.73,-1.084 -1.283,-1.416c-0.553,-0.332 -1.194,-0.487 -1.924,-0.487c-0.73,0 -1.394,0.155 -1.947,0.487c-0.553,0.332 -0.995,0.796 -1.283,1.416c-0.31,0.597 -0.465,1.305 -0.465,2.101l-0,5.199c-0,0.796 0.155,1.504 0.465,2.101c0.288,0.62 0.73,1.084 1.283,1.416c0.553,0.31 1.217,0.487 1.947,0.487Zm15.126,-4.605l-4.021,6.883l-2.81,0l5.533,-9.069l-5.378,-8.694l2.788,0l3.878,6.537l3.82,-6.537l2.787,0l-5.3,8.7l5.588,9.063l-2.81,0l-4.075,-6.883Zm11.796,-0.019l0,6.902l-2.478,0l0,-17.763l6.88,0c1.04,0 1.969,0.221 2.788,0.685c0.796,0.443 1.437,1.084 1.858,1.903c0.464,0.84 0.686,1.77 0.686,2.853c0,1.084 -0.222,2.036 -0.686,2.854c-0.421,0.819 -1.062,1.46 -1.858,1.903c-0.819,0.442 -1.748,0.663 -2.788,0.663l-4.402,0Zm0,-8.494l0,6.127l4.469,0c0.553,0 1.017,-0.11 1.415,-0.376c0.421,-0.243 0.73,-0.597 0.952,-1.062c0.221,-0.464 0.331,-0.995 0.331,-1.615c0,-0.597 -0.11,-1.15 -0.331,-1.592c-0.222,-0.465 -0.531,-0.841 -0.952,-1.084c-0.398,-0.266 -0.862,-0.398 -1.415,-0.398l-4.469,0Zm14.297,11.503l-1.334,3.893l-2.676,0l6.526,-17.763l2.123,0l6.548,17.763l-2.676,0l-1.34,-3.893l-7.171,0Zm6.356,-2.367l-2.779,-8.075l-2.766,8.075l5.545,0Zm10.008,-1.305l0,7.565l-2.5,0l0,-17.763l2.5,0l0,7.831l7.588,0l0,-7.831l2.499,0l0,17.763l-2.499,0l0,-7.565l-7.588,0Zm25.13,-5.643l-8.605,13.186l-2.058,0l0,-17.741l2.478,0l0,13.401l8.628,-13.401l2.013,0l0,17.741l-2.456,0l0,-13.186Zm9.424,-2.188l-5.022,0l-0,-2.367l12.544,0l-0,2.367l-5.022,0l-0,15.396l-2.5,0l-0,-15.396Zm16.282,15.396l-6.814,0l-0,-17.763l2.478,0l-0,7.145l4.336,0c1.128,0 2.079,0.199 2.876,0.619c0.796,0.398 1.415,1.018 1.836,1.814c0.398,0.797 0.619,1.748 0.619,2.876c-0,1.128 -0.221,2.08 -0.619,2.876c-0.421,0.774 -1.04,1.394 -1.836,1.814c-0.797,0.398 -1.748,0.619 -2.876,0.619Zm-4.336,-8.251l-0,5.884l4.424,0c0.553,0 1.04,-0.132 1.46,-0.354c0.398,-0.221 0.708,-0.553 0.907,-0.995c0.221,-0.443 0.332,-0.973 0.332,-1.593c-0,-0.619 -0.111,-1.15 -0.332,-1.593c-0.199,-0.442 -0.509,-0.774 -0.907,-1.017c-0.42,-0.221 -0.907,-0.332 -1.46,-0.332l-4.424,0Z\" fill=\"hsl(0, 0%, 5%)\"/></svg>') no-repeat center !important}#create dl dd .params{background-color:rgba(0,0,0,0) !important;border:1px solid hsl(210,5%,40%) !important}@media(max-width: 580px){#create dl dd .params .rc{padding:10px !important}}#create dl dd .params .rc h4{font:700 1.1em \"Montserrat\",sans-serif !important}@media(max-width: 580px){#create dl dd .params .rc select#type{width:calc(100% - 20px) !important}}@media(max-width: 580px){#create dl dd .params .rc span#players_range{font-size:0 !important}#create dl dd .params .rc span#players_range select{width:calc(50% - 20px) !important}}#create dl dd .params .rc .note{color:hsl(210,5%,60%) !important}#create dl dd .params .rc #qual-block label{color:#f66 !important}#create dl dt{margin:0 !important;width:100% !important;order:0 !important;border-radius:5px !important;overflow:hidden !important}@media(max-width: 1120px){#create dl dt{width:calc(100% - 20px) !important}}#create dl dt .gametypes .gametype-normal h4{color:hsl(135, 30%, 60%) !important;font:700 1.4em \"Montserrat\",sans-serif !important}#create dl dt .gametypes .gametype-voc h4{color:hsl(215, 60%, 60%) !important;font:700 1.4em \"Montserrat\",sans-serif !important}#create dl dt .gametypes .gametype-noerror h4{color:hsl(175, 100%, 40%) !important;font:700 1.4em \"Montserrat\",sans-serif !important}#create dl dt .gametypes .gametype-chars h4{color:hsl(20, 45%, 60%) !important;font:700 1.4em \"Montserrat\",sans-serif !important}#create dl dt .gametypes .gametype-marathon h4{color:hsl(315, 40%, 60%) !important;font:700 1.4em \"Montserrat\",sans-serif !important}#create dl dt .gametypes .gametype-sprint h4{color:hsl(280, 65%, 65%) !important;font:700 1.4em \"Montserrat\",sans-serif !important}#create dl dt .gametypes .gametype-abra h4{color:hsl(50, 100%, 45%) !important;font:700 1.4em \"Montserrat\",sans-serif !important}#create dl dt .gametypes .gametype-digits h4{color:hsl(170, 45%, 50%) !important;font:700 1.4em \"Montserrat\",sans-serif !important}#create dl dt .gametypes .gametype-referats h4{color:hsl(60, 40%, 60%) !important;font:700 1.4em \"Montserrat\",sans-serif !important}#create dl dt .gametypes tr:not(:last-child){border-bottom:1px solid hsl(210,5%,20%) !important}#create dl dt .gametypes tr.active,#create dl dt .gametypes tr:hover{background-color:hsl(0,0%,5%) !important}#create dl dt .gametypes tr .note{color:hsl(210,5%,60%) !important}@media(max-width: 580px){#create dl dt .gametypes tr .note{display:none !important}}#create dl dt .gametypes tr td{border:none !important;padding:20px 5px !important;height:fit-content !important}#create dl dt .gametypes tr.gametype-abra #premium_abra{color:hsl(50,100%,35%) !important}#create dl dt .gametypes tr.gametype-abra #premium_abra label{background:rgba(0,0,0,0) !important;color:hsl(50,100%,45%) !important}@media(max-width: 580px){#create dl dt .gametypes tr.gametype-voc h4{display:flex !important;flex-direction:column !important;justify-content:start !important;align-items:start !important;gap:5px !important}#create dl dt .gametypes tr.gametype-voc h4 select{width:280px !important}}#content .play-wrapper #play-right{display:flex !important;flex-direction:column !important;position:absolute !important;left:0 !important;z-index:1000 !important;width:0 !important;min-width:0 !important;max-width:0 !important;margin:0 !important;padding:0 !important}#content .play-wrapper #play-right #invite{z-index:100 !important;margin:0 !important;padding:0 !important;border-radius:0 5px 5px 0 !important;color:hsl(0,0%,70%) !important;position:absolute !important;top:0px !important;width:50px;height:50px;overflow:hidden !important;min-width:unset !important;max-width:300px !important;transition:width .15s ease-in-out,height .15s ease-in-out !important;background:hsl(0,0%,5%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"></path><circle cx=\"9\" cy=\"7\" r=\"4\"></circle><path d=\"M23 21v-2a4 4 0 0 0-3-3.87\"></path><path d=\"M16 3.13a4 4 0 0 1 0 7.75\"></path></svg>') no-repeat center/24px !important}#content .play-wrapper #play-right #invite *{opacity:0 !important;transition:opacity .3s ease-in-out !important}#content .play-wrapper #play-right #invite:hover{width:300px !important;height:auto !important;background:hsl(0,0%,5%) !important;border:2px solid #689 !important;border-left-width:0 !important}#content .play-wrapper #play-right #invite:hover *{opacity:1 !important;transition:opacity .3s ease-in-out .05s !important}#content .play-wrapper #play-right #invite a{color:#689 !important}#content .play-wrapper #play-right #invite a:hover{color:hsl(200,40%,60%) !important}#content .play-wrapper #play-right #invite #friends-list{background:hsl(0,0%,15%) !important;border:none !important}#content .play-wrapper #play-right #invite #select-all{border-bottom:none !important;text-decoration:underline !important}#content .play-wrapper #play-right #invite #invite-link{color:#689 !important;border:none !important;border-bottom:1px solid hsl(210,5%,40%) !important;background:none !important}#content .play-wrapper #play-right #params{z-index:100 !important;margin:0 !important;padding:0 !important;border-radius:0 5px 5px 0 !important;color:hsl(0,0%,70%) !important;position:absolute !important;top:60px !important;width:50px;height:50px;overflow:hidden !important;min-width:unset !important;max-width:300px !important;transition:width .15s ease-in-out,height .15s ease-in-out !important;background:hsl(0,0%,5%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"4\" y1=\"21\" x2=\"4\" y2=\"14\"></line><line x1=\"4\" y1=\"10\" x2=\"4\" y2=\"3\"></line><line x1=\"12\" y1=\"21\" x2=\"12\" y2=\"12\"></line><line x1=\"12\" y1=\"8\" x2=\"12\" y2=\"3\"></line><line x1=\"20\" y1=\"21\" x2=\"20\" y2=\"16\"></line><line x1=\"20\" y1=\"12\" x2=\"20\" y2=\"3\"></line><line x1=\"1\" y1=\"14\" x2=\"7\" y2=\"14\"></line><line x1=\"9\" y1=\"8\" x2=\"15\" y2=\"8\"></line><line x1=\"17\" y1=\"16\" x2=\"23\" y2=\"16\"></line></svg>') no-repeat center/24px !important}#content .play-wrapper #play-right #params *{opacity:0 !important;transition:opacity .3s ease-in-out !important}#content .play-wrapper #play-right #params:hover{width:300px !important;height:auto !important;background:hsl(0,0%,5%) !important;border:2px solid #689 !important;border-left-width:0 !important}#content .play-wrapper #play-right #params:hover *{opacity:1 !important;transition:opacity .3s ease-in-out .05s !important}#content .play-wrapper #play-right #params a{text-decoration:underline !important;border-bottom:none !important}#content .play-wrapper #play-right #params select{margin:2px !important}#content .play-wrapper #play-right #params .slider{background:hsl(0,0%,15%) !important;border-radius:10px !important;box-sizing:content-box !important;display:flex !important;align-items:center !important}#content .play-wrapper #play-right #params .slider.off{background:hsl(210,5%,40%) !important;pointer-events:none !important}#content .play-wrapper #play-right #params .slider.off .handle{display:none !important}#content .play-wrapper #play-right #params .slider .handle{background:hsl(210,5%,40%) !important;border-radius:50% !important;height:14px !important;width:14px !important;transition:background .15s ease-in-out !important}#content .play-wrapper #play-right #params .slider .handle:hover{background:hsl(210,5%,60%) !important}#content .play-wrapper .play-overall-table #play-overall #status-block{margin:0 !important}#content .play-wrapper .play-overall-table #play-overall #status-block #speedpanel #speedpanel-canvas{box-sizing:border-box !important;padding-left:260px !important;height:90px !important;width:260px !important;background:rgba(0,0,0,0) url(\"https://i.imgur.com/c3CG7QV.png\") no-repeat right center/contain !important}#content .play-wrapper .play-overall-table #play-overall #status-block #speedpanel::before{content:\"\";position:absolute !important;width:100% !important;height:100% !important;z-index:15 !important;background:rgba(0,0,0,0) url(\"https://i.imgur.com/TveD9ms.png\") no-repeat right center/contain !important}#content .play-wrapper .play-overall-table #play-overall #status-block #speedpanel #speed-label{width:40px !important;top:61px !important;right:129px !important;font:600 16px \"Montserrat\",sans-serif !important;color:hsl(200,40%,75%) !important}#content .play-wrapper .play-overall-table #play-overall #status-block #speedpanel #errors-label{width:62px !important;right:18px !important;top:37px !important;font:600 24px \"Montserrat\",sans-serif !important;color:hsl(340,50%,75%) !important}#content .play-wrapper .play-overall-table #play-overall #status-block #status{padding:0 !important;background:hsl(0,0%,15%) !important}#content .play-wrapper .play-overall-table #play-overall #status-block #status table{width:100% !important}#content .play-wrapper .play-overall-table #play-overall #status-block #status table tr:nth-child(1){display:inline-flex !important;width:calc(100% - 260px) !important}#content .play-wrapper .play-overall-table #play-overall #status-block #status table tr:nth-child(1) .gametype-sign-wrapper{height:unset !important}#content .play-wrapper .play-overall-table #play-overall #status-block #status table tr:nth-child(2){display:flex !important;width:100% !important;justify-content:center !important;align-items:center !important}#content .play-wrapper .play-overall-table #play-overall #status-block #status #host_start{border-bottom:1px solid #689 !important}#content .play-wrapper .play-overall-table #play-overall #status-block #status #gamedesc{vertical-align:middle !important;padding-bottom:0 !important;color:hsl(0,0%,70%) !important;z-index:20 !important}#content .play-wrapper .play-overall-table #play-overall #status-block #status #gamedesc .gametype-voc a{color:hsl(215,60%,60%) !important;transition:color .15s ease-in-out !important}#content .play-wrapper .play-overall-table #play-overall #status-block #status #gamedesc .gametype-voc a:hover{color:hsl(215,60%,70%) !important}#content .play-wrapper .play-overall-table #play-overall #status-block #status #status-inner{display:flex !important;width:100% !important;align-items:center !important;justify-content:center}#content .play-wrapper .play-overall-table #play-overall #status-block #status #status-inner #waiting{position:absolute !important;color:rgba(0,0,0,0) !important;display:flex;justify-content:center !important;align-items:center !important;flex-direction:row-reverse !important;transform-origin:bottom center;animation:wait 1s infinite ease-in-out;animation-timing-function:linear}#content .play-wrapper .play-overall-table #play-overall #status-block #status #status-inner #waiting[style=none]{display:none !important}#content .play-wrapper .play-overall-table #play-overall #status-block #status #status-inner #racing{position:absolute !important;display:flex !important;justify-content:center !important;align-items:center !important}#content .play-wrapper .play-overall-table #play-overall #status-block #status #status-inner #racing[style=\"display: none\"]{display:none !important}#content .play-wrapper .play-overall-table #play-overall #status-block #status #status-inner #paused{color:hsl(0,0%,50%) !important;width:100% !important;margin-left:70px !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock{background:hsl(0,0%,15%) !important;border:none !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock #hiddentext{background:rgba(0,0,0,0) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(210, 5%, 40%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24\"></path><line x1=\"1\" y1=\"1\" x2=\"23\" y2=\"23\"></line></svg>') no-repeat center/contain !important;background-color:hsl(0,0%,15%) !important;border:none !important;color:rgba(0,0,0,0) !important;font-size:0 !important;min-height:45px !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock #typetext{opacity:1 !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock #typetext #beforefocus{color:hsl(210,5%,40%) !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock #typetext #typefocus{color:hsl(120,70%,70%) !important;text-decoration:none !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock #typetext #typefocus.highlight_error{color:hsl(0,85%,70%) !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock #typetext #afterfocus{color:hsl(0,0%,70%) !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock .correct_errors_text{background:hsl(0,0%,15%) !important;color:hsl(0,0%,70%) !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock img[src*=\"tmp/text/\"]{filter:invert(0.9) brightness(0.83) sepia(1) hue-rotate(200deg) saturate(0.4) !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock #inputtext{color:hsl(120,15%,75%) !important;background:hsl(120,15%,25%) !important;caret-color:hsl(120,15%,75%) !important;border:none !important;padding:8px;border-radius:8px !important;width:100% !important;box-sizing:border-box}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock #inputtext::selection{background:hsl(120,15%,75%) !important;color:hsl(120,15%,25%) !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock #inputtext[class=error]{color:hsl(350,60%,20%) !important;background:hsl(350,60%,45%) !important;caret-color:hsl(350,60%,20%) !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock #inputtext[class=error]::selection{background:hsl(350,80%,20%) !important;color:hsl(350,60%,45%) !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock #inputtext.disabled{color:rgba(0,0,0,0) !important;background:hsl(0,0%,10%) !important;caret-color:rgba(0,0,0,0) !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock #inputtext.disabled::selection{background:rgba(0,0,0,0) !important;color:rgba(0,0,0,0) !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock #bookinfo .hotkey{color:hsl(210,5%,40%) !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock #bookinfo #book .imobilco-container img{border-radius:5px !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock div{color:hsl(210,5%,40%) !important}#content .play-wrapper .play-overall-table #play-overall #main-block #keyboard_cont{display:flex !important;justify-content:center !important}#content .play-wrapper .play-overall-table #play-overall #main-block #keyboard_cont[style*=\"display: none\"]{display:none !important}#content .play-wrapper .play-overall-table #play-overall #main-block #keyboard_cont #param_keyboard{font-size:0 !important;position:absolute !important;border:none !important;background:url(\"https://i.imgur.com/CVbMpI4.png\");color:rgba(0,0,0,0) !important;height:12px;width:26px;display:block;transition:all .15s !important;animation:keyboard 10s linear infinite !important}#content .play-wrapper .play-overall-table #play-overall #main-block #keyboard_cont #param_keyboard:hover{filter:brightness(0.7) !important}#content .play-wrapper .play-overall-table #play-overall #main-block #keyboard{margin:30px auto 0 auto !important;filter:unset !important}#content .play-wrapper .play-overall-table #play-overall #main-block #keyboard #back_keyboard{background-image:url(\"https://i.imgur.com/JkhSkyg.png\");background-size:546px 202px !important;background-repeat:no-repeat !important}#content .play-wrapper .play-overall-table #play-overall #main-block #keyboard #back_keyboard #fore_keyboard{background-image:url(\"https://i.imgur.com/Jdon0BB.png\");background-size:546px 172px !important;background-repeat:no-repeat !important}#content .play-wrapper .play-overall-table #play-overall #main-block #keyboard #back_keyboard #fore_keyboard #shift_keyboard{background-image:url(\"https://i.imgur.com/alP9Hh6.png\") !important;background-size:546px 172px !important;background-repeat:no-repeat !important}#content .play-wrapper .play-overall-table #play-overall #main-block #keyboard.en #back_keyboard{background-image:url(\"https://i.imgur.com/pzB4kEl.png\") !important}#content .play-wrapper .play-overall-table #play-overall #main-block #keyboard.en #back_keyboard #fore_keyboard{background-image:url(\"https://i.imgur.com/cNTXVxU.png\") !important}#content .play-wrapper .play-overall-table #play-overall .imobilco-book .imobilco-cover .co{background:none !important}#content .play-wrapper .play-overall-table #play-overall #errors_text{border-radius:5px !important;overflow:hidden !important}#content .play-wrapper .play-overall-table #play-overall #errors_text p{margin:0 !important;background-color:hsl(0,0%,10%) !important;color:hsl(0,0%,70%) !important}#content .play-wrapper .play-overall-table #play-overall #errors_text p s.error{color:hsl(0,90%,60%) !important}#content .play-wrapper .play-overall-table #play-overall #errors_text p span.error{color:hsl(0,90%,50%) !important}#content .play-wrapper .play-overall-table #play-overall #errors_text p.premium_abra_errors span{background-color:#c68 !important;color:hsl(0,0%,5%) !important}#content .play-wrapper .play-overall-table #play-overall #errors_text p.premium_abra_errors a{color:hsl(50,80%,50%) !important}#content .play-wrapper .play-overall-table #play-overall #errors_text p.premium_abra_errors a:hover{color:hsl(50,80%,40%) !important}#content .play-wrapper .play-overall-table #play-overall #errors_text p.premium_abra_errors sup{color:hsl(200,40%,60%) !important;font-weight:bold !important}#content .play-wrapper .play-overall-table #play-overall #errors_tab,#content .play-wrapper .play-overall-table #play-overall #errorwork{background:none !important}#content .play-wrapper .play-overall-table #play-overall #errors_tab a,#content .play-wrapper .play-overall-table #play-overall #errorwork a{text-decoration:underline !important;border-bottom:none !important}#content .play-wrapper .play-overall-table #play-overall #report{display:none !important}#content .play-wrapper .play-overall-table #play-overall #fixtypo{display:none !important}#content .play-wrapper .play-overall-table #play-overall #report_reason_input{background:hsl(0,0%,15%) !important;border:1px solid hsl(210,5%,40%) !important}#content .play-wrapper .play-overall-table #players-block .people{display:none !important}#content .play-wrapper .play-overall-table #players-block .handle{top:-5px !important}#content .play-wrapper .play-overall-table #players-block #players-count-lbl{float:unset !important;font-size:13px !important}#content .play-wrapper .play-overall-table #players-block #players-count-lbl b{color:hsl(0,0%,15%) !important;background:#689 !important}#content .play-wrapper .play-overall-table #players-block #players{overflow:visible !important;background-color:hsl(0,0%,15%) !important}#content .play-wrapper .play-overall-table #players-block #players .player{background:none !important;padding:10px 0 10px 0 !important;border-bottom:1px solid hsl(210,5%,40%) !important}#content .play-wrapper .play-overall-table #players-block #players .player .error-on-track .error-on-track-img{background:url(\"https://i.imgur.com/78JhhAA.png\") !important;background-position:center !important;background-size:contain !important;mask-image:unset !important}#content .play-wrapper .play-overall-table #players-block #players .player .error-on-track span{left:4px !important;top:14px !important;color:hsl(0,0%,70%) !important;padding:2px !important;font:600 6pt \"Montserrat\",sans-serif !important}#content .play-wrapper .play-overall-table #players-block #players .player .divider{display:none !important}#content .play-wrapper .play-overall-table #players-block #players .player .rating{display:flex !important;width:70% !important;align-items:center !important;justify-content:space-between !important;height:30px !important}#content .play-wrapper .play-overall-table #players-block #players .player .rating div{color:hsl(0,0%,70%) !important;margin-right:0 !important}#content .play-wrapper .play-overall-table #players-block #players .player .rating .stats{color:hsl(210,5%,40%) !important;left:135px !important;height:30px !important;display:flex !important;align-items:center !important;justify-content:space-around !important;gap:1em !important}#content .play-wrapper .play-overall-table #players-block #players .player .rating .rating_gained{background:none !important;background:hsl(30,65%,50%) !important;color:hsl(0,0%,15%) !important}#content .play-wrapper .play-overall-table #players-block #players .player .newrecord a{margin-top:-10px !important;border-radius:5px !important;padding:6px !important;background:hsl(40,85%,20%) !important;border:1px solid hsl(40,85%,35%) !important;color:hsl(40,85%,80%) !important;font:bold 10pt \"Montserrat\",sans-serif !important}#content .play-wrapper .play-overall-table #players-block #players .player .delresult{left:95px !important;bottom:unset !important}#content .play-wrapper .play-overall-table #players-block #players .player .delresult a{border:1px solid #689 !important;border-radius:5px !important;display:flex !important;justify-content:center !important;align-items:center !important;height:30px !important;width:30px !important;background:hsl(0,0%,5%) !important}#content .play-wrapper .play-overall-table #players-block #players .player .delresult a:hover{filter:hue-rotate(180deg) !important}#content .play-wrapper .play-overall-table #players-block #players .player .delresult img{box-sizing:border-box !important;background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\"></line><line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\"></line></svg>') no-repeat center/20px !important;width:16px !important;height:16px !important;padding-left:16px !important}#content .play-wrapper .play-overall-table #players-block #players .car .name{min-width:168px !important}#content .play-wrapper .play-overall-table #players-block #players .car .name .name_content{overflow:visible !important;width:100% !important}#content .play-wrapper .play-overall-table #players-block #players .car .name .name_content .top-award .numbers{transition:width .15s !important}#content .play-wrapper .play-overall-table #players-block #players .car .name .name_content img[src*=\"avatars/\"]{height:24px !important;border-radius:3px !important}#content .play-wrapper .play-overall-table #players-block #players .car .name .name_content .nick_content{z-index:100 !important}#content .play-wrapper .play-overall-table #players-block #rating_loading{background:none !important;bottom:45px !important;left:-50px !important;font-size:12px !important;color:#689 !important}#content #waiting_timeout,#content #racing_time{font-family:\"Lekton\",monospace;font-weight:600;font-size:28px !important;display:flex !important;justify-content:center !important;align-items:center !important;width:110px !important;height:40px !important;padding-top:4px !important;position:absolute !important;border-radius:5px !important}#content #waiting_timeout{color:hsl(10,70%,75%) !important;background:hsl(10,50%,25%) !important;border:1px solid #943 !important}#content #racing_time{color:hsl(100,70%,45%) !important;background:hsl(100,50%,15%) !important;border:1px solid hsl(100,50%,30%) !important}#howtoplay .quoteleft,#howtoplay .quoteright,#content .quoteleft,#content .quoteright{filter:brightness(0.3) !important}#content .gameblock .handle{margin-left:-5px !important;opacity:.5 !important;border-radius:50% !important;height:10px !important;width:10px !important;background:hsl(210,5%,40%) !important}#content .gameblock .handle:hover{background:#689 !important}@keyframes wait{0%{transform:translateY(0px) rotate(0deg);animation-timing-function:cubic-bezier(0.25, 0.46, 0.45, 0.94)}10%{transform:translateY(-18px) rotate(-3deg);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}20%{transform:translateY(0px) rotate(-3deg);animation-timing-function:cubic-bezier(0.68, -0.55, 0.265, 1.55)}22%{transform:translateY(0px) rotate(2.5deg);animation-timing-function:cubic-bezier(0.25, 0.46, 0.45, 0.94)}27%{transform:translateY(-10.8px) rotate(3.5deg);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}35%{transform:translateY(0px) rotate(3.5deg);animation-timing-function:cubic-bezier(0.68, -0.55, 0.265, 1.55)}37%{transform:translateY(0px) rotate(-2deg);animation-timing-function:cubic-bezier(0.25, 0.46, 0.45, 0.94)}40%{transform:translateY(-4.8px) rotate(-2.5deg);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}47%{transform:translateY(0px) rotate(-2.5deg);animation-timing-function:cubic-bezier(0.68, -0.55, 0.265, 1.55)}48%{transform:translateY(0px) rotate(1deg);animation-timing-function:cubic-bezier(0.25, 0.46, 0.45, 0.94)}50%{transform:translateY(-1.8px) rotate(1.2deg);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}55%{transform:translateY(0px) rotate(1.2deg);animation-timing-function:cubic-bezier(0.68, -0.55, 0.265, 1.55)}58%{transform:translateY(0px) rotate(0deg)}100%{transform:translateY(0px) rotate(0deg)}}@keyframes keyboard{0%{filter:brightness(0.8) hue-rotate(0)}50%{filter:brightness(0.8) hue-rotate(180deg)}100%{filter:brightness(0.8) hue-rotate(0)}}#content #forums-list table tbody{display:flex !important;flex-direction:column !important}#content #forums-list table tbody tr{margin-bottom:10px !important;display:grid !important;grid-template-columns:auto 100px 100px 420px !important}#content #forums-list tr.header th.title .moderators{color:#c68 !important}#content #forums-list tr.header th.topic-cnt{color:hsl(200,40%,60%) !important;text-align:center !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}#content #forums-list tr.header th.post-cnt{color:hsl(120,35%,45%) !important;text-align:center !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}#content #forums-list tr.header th:last-child{color:hsl(0,0%,70%) !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}#content #forums-list tr.item{border:1px solid hsl(210,5%,40%) !important;border-radius:5px !important;padding:0 !important;position:relative !important;min-height:70px !important}@media(max-width: 900px){#content #forums-list tr.item{display:flex !important;flex-direction:column !important;min-height:auto !important;padding:10px !important;background:hsl(0,0%,10%) !important}}#content #forums-list tr.item td{border:none !important;padding:0 !important}#content #forums-list tr.item td:first-child{display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:start !important}@media(max-width: 900px){#content #forums-list tr.item td:first-child{width:100% !important;order:1 !important;justify-content:flex-start !important}}#content #forums-list tr.item td:first-child a.short-description{display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;cursor:pointer !important;text-decoration:none !important;color:hsl(0,0%,5%) !important;background:hsl(210,5%,40%) !important;min-height:30px !important;width:100% !important;border-radius:5px !important;padding:5px 10px !important;font:600 1.5em \"Montserrat\",Verdana,Geneva,Tahoma,sans-serif !important;white-space:break-spaces !important;transition:background .1s ease-in-out;margin:10px !important}#content #forums-list tr.item td:first-child a.short-description:hover{background:#689 !important}@media(max-width: 1000px){#content #forums-list tr.item td:first-child a.short-description{display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;font-size:1.1em !important}}@media(max-width: 1000px)and (max-width: 900px){#content #forums-list tr.item td:first-child a.short-description{margin:0 0 10px 0 !important;font-size:1.5em !important}}@media(max-width: 1000px)and (max-width: 375px){#content #forums-list tr.item td:first-child a.short-description{font-size:1.2em !important}}#content #forums-list tr.item td:first-child .long-description{color:hsl(210,5%,60%) !important;font-size:.9em !important;padding:0 10px 10px 10px !important;margin:0 !important}@media(max-width: 1000px){#content #forums-list tr.item td:first-child .long-description{font-size:.8em !important}}@media(max-width: 1000px)and (max-width: 900px){#content #forums-list tr.item td:first-child .long-description{padding:0 0 10px !important}}#content #forums-list tr.item td.topic-cnt{color:hsl(200,40%,60%) !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}@media(max-width: 900px){#content #forums-list tr.item td.topic-cnt{order:2 !important;display:inline-block !important;text-align:left !important;margin:0 !important}#content #forums-list tr.item td.topic-cnt:before{content:\"Темы:\" !important;margin-right:5px !important;color:hsl(0,0%,70%) !important}}#content #forums-list tr.item td.post-cnt{color:hsl(120,35%,45%) !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}@media(max-width: 900px){#content #forums-list tr.item td.post-cnt{order:3 !important;display:inline-block !important;text-align:left !important;margin:0 !important}#content #forums-list tr.item td.post-cnt:before{content:\"Сообщения:\" !important;margin-right:5px !important;color:hsl(0,0%,70%) !important}}@media(max-width: 900px){#content #forums-list tr.item::after{content:\"\" !important;order:4 !important;width:100% !important;height:0 !important;border-bottom:1px solid hsl(210,5%,40%) !important;background:hsl(210,5%,30%) !important;margin:10px 0 !important;display:block !important;mask:linear-gradient(90deg, transparent 0%, hsl(210, 5%, 40%) 50px, hsl(210, 5%, 40%) calc(100% - 50px), transparent 100%) !important}}#content #forums-list tr.item td.last-post{overflow:hidden !important;margin-right:80px !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:start !important}@media(max-width: 900px){#content #forums-list tr.item td.last-post{order:5 !important;width:100% !important;margin-right:0 !important;padding:0 !important}}#content #forums-list tr.item td.last-post .title{grid-area:title !important;display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;margin-bottom:5px !important}#content #forums-list tr.item td.last-post .title a{display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;cursor:pointer !important;text-decoration:none !important;color:hsl(0,0%,5%) !important;background:hsl(210,5%,40%) !important;min-height:30px !important;width:fit-content !important;border-radius:5px !important;padding:5px 10px !important;font:600 1em \"Montserrat\",Verdana,Geneva,Tahoma,sans-serif !important;white-space:break-spaces !important;transition:background .1s ease-in-out}#content #forums-list tr.item td.last-post .title a:hover{background:#689 !important}@media(max-width: 900px){#content #forums-list tr.item td.last-post .title a{margin-bottom:10px !important}}#content #forums-list tr.item td.last-post a.user-link{display:inline-flex !important;align-items:center !important;height:24px !important;min-width:160px !important;display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important}@media(max-width: 900px){#content #forums-list tr.item td.last-post a.user-link{margin-bottom:5px !important}}#content #forums-list tr.item td.last-post a.user-link[style*=\"/avatars/\"]{padding-left:30px !important;position:relative !important}#content #forums-list tr.item td.last-post a.user-link[style*=\"/avatars/\"]::before{content:\"\";position:absolute !important;content:\"\";position:absolute;left:0;width:24px;height:24px;background-image:url('data:image/svg+xml;utf8,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(0, 0%, 15%)\" d=\"M24,0l0,24l-24,0l0,-24l24,0Zm-0.944,4.26c0,-1.828 -1.488,-3.316 -3.316,-3.316l-15.48,0c-1.828,0 -3.316,1.488 -3.316,3.316l0,15.48c0,1.828 1.488,3.316 3.316,3.316l15.48,0c1.828,0 3.316,-1.488 3.316,-3.316l0,-15.48Z\"/></svg>');background-position:left center;background-size:24px}@media(max-width: 900px){#content #forums-list tr.item td.last-post a.user-link[style*=\"/avatars/\"]::before{content:\"\";position:absolute;left:0;width:24px;height:24px;background-image:url('data:image/svg+xml;utf8,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(0, 0%, 10%)\" d=\"M24,0l0,24l-24,0l0,-24l24,0Zm-0.944,4.26c0,-1.828 -1.488,-3.316 -3.316,-3.316l-15.48,0c-1.828,0 -3.316,1.488 -3.316,3.316l0,15.48c0,1.828 1.488,3.316 3.316,3.316l15.48,0c1.828,0 3.316,-1.488 3.316,-3.316l0,-15.48Z\"/></svg>');background-position:left center;background-size:24px}}#content #forums-list tr.item td.last-post span.date{color:hsl(210,5%,60%) !important;min-width:120px !important;margin:0 !important;display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important}#content #forums-list tr.item td.last-post a.go{position:absolute !important;top:0 !important;right:0 !important;height:100% !important;width:70px !important;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4\"></path><polyline points=\"10 17 15 12 10 7\"></polyline><line x1=\"15\" y1=\"12\" x2=\"3\" y2=\"12\"></line></svg>') !important;background-position:center center !important;background-repeat:no-repeat !important;border-radius:0 5px 5px 0 !important;border-left:1px solid rgba(0,0,0,0) !important;transition:background-color .1s ease-in-out}@media(max-width: 900px){#content #forums-list tr.item td.last-post a.go{height:60px !important;width:60px !important;border-radius:5px !important;margin:0 10px 10px 0 !important;top:unset !important;bottom:0 !important;border:1px solid rgba(0,0,0,0) !important}}@media(max-width: 900px)and (max-width: 375px){#content #forums-list tr.item td.last-post a.go{height:45px !important;width:45px !important}}#content #forums-list tr.item td.last-post a.go:hover{background-color:hsl(0,0%,10%) !important;border-left:1px solid hsl(210,5%,40%) !important}@media(max-width: 900px){#content #forums-list tr.item td.last-post a.go:hover{background-color:hsl(0,0%,5%) !important;border:1px solid hsl(200,40%,60%) !important}}#content #forums-list tr.item td.last-post a.go img{display:none !important}@media(max-width: 900px){#content #forums-list tr.header{display:none !important}}#content #forums-list .feed-link{display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}#content #forums-list .feed-link a{display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important;padding:10px 20px !important;border-radius:5px !important;text-decoration:none !important;text-transform:uppercase !important;font-size:.9em !important;color:hsl(0,0%,5%) !important;font-weight:bold !important;background:hsl(210,5%,40%) !important;transition:background .15s ease-in-out}#content #forums-list .feed-link a:hover{background:#689 !important}#content #topics-list{position:relative !important}#content #topics-list h4{display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:center !important}#content #topics-list .write{padding:0 !important}#content #topics-list .write:has(a){width:60px !important;min-width:60px !important;height:50px !important;margin:0 5px 0 0 !important;border-radius:5px !important;border:1px solid hsl(210,5%,40%) !important;background:hsl(0,0%,10%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 20%, 50%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-edit\"><path d=\"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7\"></path><path d=\"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z\"></path></svg>') no-repeat center/24px !important;display:inline-flex !important;cursor:pointer !important;transition:border-color .15s ease-in-out,background-color .15s ease-in-out}#content #topics-list .write:has(a):hover{border-color:hsl(200,40%,60%) !important;background:hsl(0,0%,10%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-edit\"><path d=\"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7\"></path><path d=\"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z\"></path></svg>') no-repeat center/24px !important;background-color:hsl(0,0%,5%) !important}#content #topics-list .write:has(a) a{font-size:0 !important;width:100% !important;height:100% !important;border:none !important}#content #topics-list tr:has(.write){display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important}#content #topics-list tr:has(.write) td:has(.search){width:100% !important}#content #topics-list form table.list{width:100% !important;border-collapse:separate !important;border-spacing:0 !important}#content #topics-list form table.list tbody{display:flex !important;flex-direction:column !important}#content #topics-list form table.list tbody tr{margin-bottom:10px !important;display:grid !important;grid-template-columns:1fr 200px 80px 300px !important}@media(max-width: 900px){#content #topics-list form table.list tbody tr{display:flex !important;flex-direction:column !important;grid-template-columns:none !important}}#content #topics-list form table.list tr.header th.title{text-align:left !important;color:hsl(200,40%,60%) !important}#content #topics-list form table.list tr.header th.author{color:hsl(200,40%,60%) !important}#content #topics-list form table.list tr.header th.post-cnt{color:hsl(120,35%,45%) !important}#content #topics-list form table.list tr.header th:last-child{color:hsl(210,5%,60%) !important}@media(max-width: 900px){#content #topics-list form table.list tr.header{display:none !important}}#content #topics-list form table.list tr.item{border:1px solid hsl(210,5%,40%) !important;border-radius:5px !important;padding:0 !important;margin:0 0 10px !important;position:relative !important;min-height:80px !important;background:rgba(0,0,0,0) !important}@media(max-width: 900px){#content #topics-list form table.list tr.item{display:flex !important;flex-direction:column !important;min-height:auto !important;background:hsl(0,0%,10%) !important}}#content #topics-list form table.list tr.item td{background:rgba(0,0,0,0) !important;border:none !important;padding:10px !important}#content #topics-list form table.list tr.item td.title{display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:start !important}@media(max-width: 900px){#content #topics-list form table.list tr.item td.title{order:1 !important;width:100% !important;padding:10px 10px 0 !important}}#content #topics-list form table.list tr.item td.title .topic-note{background:rgba(0,0,0,0) !important;font-size:0 !important;padding:0 !important;margin:0 0 5px !important;width:20px !important;height:20px !important;background:rgba(0,0,0,0) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(50, 80%, 50%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polygon points=\"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2\"></polygon></svg>') no-repeat center/20px !important}#content #topics-list form table.list tr.item td.title .topic-title a{display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;cursor:pointer !important;text-decoration:none !important;color:hsl(0,0%,5%) !important;background:hsl(210,5%,40%) !important;min-height:30px !important;width:100% !important;border-radius:5px !important;padding:5px 10px !important;font:600 1em \"Montserrat\",Verdana,Geneva,Tahoma,sans-serif !important;white-space:break-spaces !important;transition:background .1s ease-in-out}#content #topics-list form table.list tr.item td.title .topic-title a:hover{background:#689 !important}#content #topics-list form table.list tr.item td.title .date{color:hsl(210,5%,60%) !important;margin-top:5px !important;font-size:.9em !important}@media(max-width: 900px){#content #topics-list form table.list tr.item td.title .date{font-size:.8em !important}}#content #topics-list form table.list tr.item td.title img[alt=\"Тема закрыта\"]{display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:center !important;position:unset !important;margin-bottom:5px !important;width:20px !important;height:20px !important;padding-left:20px !important;background:rgba(0,0,0,0) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(30, 65%, 50%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"3\" y=\"11\" width=\"18\" height=\"11\" rx=\"2\" ry=\"2\"></rect><path d=\"M7 11V7a5 5 0 0 1 10 0v4\"></path></svg>') no-repeat center/20px !important}#content #topics-list form table.list tr.item td.author{display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important}@media(max-width: 900px){#content #topics-list form table.list tr.item td.author{order:2 !important;padding:0 10px !important}#content #topics-list form table.list tr.item td.author:before{content:\"Автор:\" !important;color:hsl(0,0%,70%) !important;margin-right:5px !important}}#content #topics-list form table.list tr.item td.author a.user-link{display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;color:#689 !important;text-decoration:none !important;height:30px !important;transition:color .15s ease-in-out}#content #topics-list form table.list tr.item td.author a.user-link[style*=\"/avatars/\"]{padding-left:30px !important;background-size:24px !important;background-position:left center !important;position:relative !important}#content #topics-list form table.list tr.item td.author a.user-link[style*=\"/avatars/\"]::before{content:\"\";position:absolute !important;content:\"\";position:absolute;left:0;width:24px;height:24px;background-image:url('data:image/svg+xml;utf8,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(0, 0%, 15%)\" d=\"M24,0l0,24l-24,0l0,-24l24,0Zm-0.944,4.26c0,-1.828 -1.488,-3.316 -3.316,-3.316l-15.48,0c-1.828,0 -3.316,1.488 -3.316,3.316l0,15.48c0,1.828 1.488,3.316 3.316,3.316l15.48,0c1.828,0 3.316,-1.488 3.316,-3.316l0,-15.48Z\"/></svg>');background-position:left center;background-size:24px}@media(max-width: 900px){#content #topics-list form table.list tr.item td.author a.user-link[style*=\"/avatars/\"]::before{content:\"\";position:absolute;left:0;width:24px;height:24px;background-image:url('data:image/svg+xml;utf8,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(0, 0%, 10%)\" d=\"M24,0l0,24l-24,0l0,-24l24,0Zm-0.944,4.26c0,-1.828 -1.488,-3.316 -3.316,-3.316l-15.48,0c-1.828,0 -3.316,1.488 -3.316,3.316l0,15.48c0,1.828 1.488,3.316 3.316,3.316l15.48,0c1.828,0 3.316,-1.488 3.316,-3.316l0,-15.48Z\"/></svg>');background-position:left center;background-size:24px}}#content #topics-list form table.list tr.item td.author a.user-link:hover{color:hsl(200,40%,60%) !important}#content #topics-list form table.list tr.item td.post-cnt{display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;color:hsl(120,35%,45%) !important}@media(max-width: 900px){#content #topics-list form table.list tr.item td.post-cnt{order:3 !important;padding:0 10px 10px !important;position:relative !important}#content #topics-list form table.list tr.item td.post-cnt:before{content:\"Ответы:\" !important;color:hsl(0,0%,70%) !important;margin-right:5px !important}#content #topics-list form table.list tr.item td.post-cnt:after{content:\"\" !important;position:absolute !important;bottom:0 !important;left:10px !important;right:10px !important;height:0 !important;border-bottom:1px solid hsl(210,5%,40%) !important;background-color:hsl(210,5%,40%) !important;mask:linear-gradient(90deg, transparent 0%, hsl(210, 5%, 40%) 50px, hsl(210, 5%, 40%) calc(100% - 50px), transparent 100%) !important}}#content #topics-list form table.list tr.item td.last-post{display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:start !important;padding:10px 80px 10px 10px !important;position:relative !important}@media(max-width: 900px){#content #topics-list form table.list tr.item td.last-post{order:4 !important;margin-bottom:0 !important}#content #topics-list form table.list tr.item td.last-post:before{content:\"Последний ответ\" !important;color:hsl(30,65%,50%) !important;margin-bottom:8px !important;font-weight:600 !important;font-size:.9em !important}}#content #topics-list form table.list tr.item td.last-post a.user-link{display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;color:#689 !important;text-decoration:none !important;margin-bottom:5px !important;height:30px !important;transition:color .15s ease-in-out}#content #topics-list form table.list tr.item td.last-post a.user-link[style*=\"/avatars/\"]{padding-left:30px !important;background-size:24px !important;background-position:left center !important;position:relative !important}#content #topics-list form table.list tr.item td.last-post a.user-link[style*=\"/avatars/\"]::before{content:\"\";position:absolute !important;content:\"\";position:absolute;left:0;width:24px;height:24px;background-image:url('data:image/svg+xml;utf8,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(0, 0%, 15%)\" d=\"M24,0l0,24l-24,0l0,-24l24,0Zm-0.944,4.26c0,-1.828 -1.488,-3.316 -3.316,-3.316l-15.48,0c-1.828,0 -3.316,1.488 -3.316,3.316l0,15.48c0,1.828 1.488,3.316 3.316,3.316l15.48,0c1.828,0 3.316,-1.488 3.316,-3.316l0,-15.48Z\"/></svg>');background-position:left center;background-size:24px}@media(max-width: 900px){#content #topics-list form table.list tr.item td.last-post a.user-link[style*=\"/avatars/\"]::before{content:\"\";position:absolute;left:0;width:24px;height:24px;background-image:url('data:image/svg+xml;utf8,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(0, 0%, 10%)\" d=\"M24,0l0,24l-24,0l0,-24l24,0Zm-0.944,4.26c0,-1.828 -1.488,-3.316 -3.316,-3.316l-15.48,0c-1.828,0 -3.316,1.488 -3.316,3.316l0,15.48c0,1.828 1.488,3.316 3.316,3.316l15.48,0c1.828,0 3.316,-1.488 3.316,-3.316l0,-15.48Z\"/></svg>');background-position:left center;background-size:24px}}#content #topics-list form table.list tr.item td.last-post a.user-link:hover{color:hsl(200,40%,60%) !important}#content #topics-list form table.list tr.item td.last-post .date{color:hsl(210,5%,60%) !important;font-size:.9em !important;margin:0 !important}@media(max-width: 900px){#content #topics-list form table.list tr.item td.last-post .date{font-size:.8em !important}}#content #topics-list form table.list tr.item td.last-post a.go{position:absolute !important;top:0 !important;right:0 !important;height:100% !important;width:70px !important;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4\"></path><polyline points=\"10 17 15 12 10 7\"></polyline><line x1=\"15\" y1=\"12\" x2=\"3\" y2=\"12\"></line></svg>') !important;background-position:center center !important;background-repeat:no-repeat !important;background-size:20px 20px !important;border-radius:0 8px 8px 0 !important;border-left:1px solid rgba(0,0,0,0) !important;transition:border .15s ease-in-out,background-color .15s ease-in-out}@media(max-width: 900px){#content #topics-list form table.list tr.item td.last-post a.go{height:60px !important;width:60px !important;border-radius:5px !important;border:1px solid rgba(0,0,0,0) !important;top:unset !important;bottom:0 !important;margin:0 10px 10px 0 !important}}@media(max-width: 375px){#content #topics-list form table.list tr.item td.last-post a.go{height:45px !important;width:45px !important}}#content #topics-list form table.list tr.item td.last-post a.go:hover{background-color:hsl(0,0%,10%) !important;border-left-color:hsl(200,40%,60%) !important}@media(max-width: 900px){#content #topics-list form table.list tr.item td.last-post a.go:hover{background-color:hsl(0,0%,5%) !important;border-color:hsl(200,40%,60%) !important}}#content #topics-list form table.list tr.item td.last-post a.go img{display:none !important}#content #topics-list form table.foot{width:100% !important;border-collapse:separate !important;border-spacing:0 !important}#content #topics-list form table.foot tbody{display:flex !important;flex-direction:column !important}#content #topics-list form table.foot tr:last-child{display:flex !important;width:100% !important}#content #topics-list form table.foot tr:last-child td{width:100% !important;padding:0 20px 20px !important;background:linear-gradient(135deg, hsl(0, 0%, 10%) 0%, hsl(0, 0%, 0%) 100%) !important;border-radius:10px !important;border:1px solid hsla(200,40%,60%,.2) !important;margin-top:10px !important}#content #topics-list form table.foot tr:last-child td dl{margin:0 !important;display:flex !important;flex-direction:column !important}#content #topics-list form table.foot tr:last-child td dl dt{color:hsl(30,65%,50%) !important;font-weight:600 !important;font-size:1.1em !important;line-height:1.2em !important;text-transform:uppercase !important;margin:10px 0 !important;position:relative !important;padding-left:25px !important}#content #topics-list form table.foot tr:last-child td dl dt::before{content:\"👮\" !important;position:absolute !important;left:0 !important;top:0 !important;font-size:1.2em !important}#content #topics-list form table.foot tr:last-child td dl dd{margin:0 !important;display:flex !important;flex-wrap:wrap !important;gap:5px !important;font-size:0 !important}#content #topics-list form table.foot tr:last-child td dl dd a.user-link{display:inline-flex !important;align-items:center !important;padding:8px 12px !important;background:rgba(102,136,153,.1) !important;border:1px solid rgba(102,136,153,.3) !important;border-radius:20px !important;color:#689 !important;text-decoration:none !important;font-size:12px !important;font-weight:500 !important;transition:all .3s ease !important;position:relative !important}#content #topics-list form table.foot tr:last-child td dl dd a.user-link:hover{background:hsla(200,40%,60%,.2) !important;border-color:hsl(200,40%,60%) !important;color:hsl(200,40%,60%) !important;transform:translateY(-2px) !important;box-shadow:0 4px 12px hsla(200,40%,60%,.3) !important}@keyframes fadeIn{0%,80%{opacity:0}100%{opacity:1}}@keyframes bounce{from{transform:translateY(3px)}to{transform:translateY(-3px)}}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}@keyframes vigorousShake{0%,100%{transform:translateX(0px) translateY(0px) rotate(0deg)}5%{transform:translateX(-3px) translateY(-1px) rotate(-1deg)}10%{transform:translateX(3px) translateY(1px) rotate(1deg)}15%{transform:translateX(-4px) translateY(-2px) rotate(-1.5deg)}20%{transform:translateX(4px) translateY(2px) rotate(1.5deg)}25%{transform:translateX(-3px) translateY(-1px) rotate(-1deg)}30%{transform:translateX(3px) translateY(1px) rotate(1deg)}35%{transform:translateX(-2px) translateY(-2px) rotate(-0.5deg)}40%{transform:translateX(2px) translateY(2px) rotate(0.5deg)}45%{transform:translateX(-3px) translateY(-1px) rotate(-1deg)}50%{transform:translateX(3px) translateY(1px) rotate(1deg)}55%{transform:translateX(-2px) translateY(-1px) rotate(-0.5deg)}60%{transform:translateX(2px) translateY(1px) rotate(0.5deg)}65%{transform:translateX(-1px) translateY(-1px) rotate(-0.3deg)}70%{transform:translateX(1px) translateY(1px) rotate(0.3deg)}75%{transform:translateX(-2px) translateY(-1px) rotate(-0.5deg)}80%{transform:translateX(2px) translateY(1px) rotate(0.5deg)}85%{transform:translateX(-1px) translateY(0px) rotate(-0.2deg)}90%{transform:translateX(1px) translateY(0px) rotate(0.2deg)}95%{transform:translateX(-1px) translateY(0px) rotate(0deg)}}#content #posts-list{margin-top:5px !important;font-family:\"Montserrat\",Verdana,Geneva,Tahoma,sans-serif !important}@media(max-width: 1320px){#content #posts-list{margin:0 10px !important}}#content #posts-list h4 noindex{display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:center !important;gap:10px !important}@media(max-width: 750px){#content #posts-list h4 noindex{flex-direction:column !important;align-items:center !important}#content #posts-list h4 noindex span{text-align:center !important}}#content #posts-list h4 a[href*=\"/forum/\"]{display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;cursor:pointer !important;text-decoration:none !important;color:hsl(0,0%,5%) !important;background:hsl(210,5%,40%) !important;min-height:30px !important;width:fit-content !important;border-radius:5px !important;padding:5px 10px !important;font:600 16px \"Montserrat\",Verdana,Geneva,Tahoma,sans-serif !important;white-space:break-spaces !important;transition:background .1s ease-in-out}#content #posts-list h4 a[href*=\"/forum/\"]:hover{background:#689 !important}#content #posts-list h4 i{display:none !important}#content #posts-list h4 #topic-title-block{display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:center !important}#content #posts-list h4 #topic-title-block a{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-edit\"><path d=\"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7\"></path><path d=\"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z\"></path></svg>');height:35px !important;width:35px !important;border-radius:50% !important;font-size:0 !important;margin:0 10px !important;background-color:hsl(210,5%,40%) !important;background-position:center !important;background-repeat:no-repeat !important;border:none !important;transition:background-color .1s ease-in-out;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}#content #posts-list h4 #topic-title-block a img{display:none !important}#content #posts-list h4 #topic-title-block a:hover{background-color:hsl(30,65%,50%) !important}#content #posts-list form table tr,#content #posts-list form table th,#content #posts-list form table td{border:none !important}#content #posts-list form table .posth{background:rgba(0,0,0,0) !important;height:30px !important;min-height:30px !important;border-radius:5px !important;overflow:hidden !important}@media(max-width: 480px){#content #posts-list form table .posth{display:flex !important;flex-direction:column !important;width:100% !important;height:60px !important}}#content #posts-list form table .posth th{position:relative !important;min-width:170px !important}@media(max-width: 480px){#content #posts-list form table .posth th{width:100% !important;height:30px !important}}#content #posts-list form table .posth td{border-radius:0 5px 5px 0 !important;background:hsl(0,0%,5%) !important}@media(max-width: 480px){#content #posts-list form table .posth td{border-top:1px solid hsl(0,0%,5%) !important;width:100% !important;height:30px !important}}#content #posts-list form table .posth td{position:relative !important}#content #posts-list form table .posth span:first-child{float:unset !important;font-size:0 !important}#content #posts-list form table .posth span:first-child a{font-size:12px !important;font-weight:bold !important;text-decoration:none !important;position:absolute !important;right:0 !important;top:0 !important;width:100px !important;height:100% !important;color:hsl(0,0%,5%) !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important;background:hsl(200,20%,40%) !important;border-radius:0 5px 5px 0 !important;transition:background .1s ease-in-out}#content #posts-list form table .posth span:first-child a:hover{background:#689 !important}@media(max-width: 480px){#content #posts-list form table .posth span:first-child a{font-size:12px !important;font-weight:bold !important;text-decoration:none !important;position:absolute !important;right:0 !important;top:0 !important;width:100px !important;height:100% !important;color:hsl(0,0%,5%) !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important;background:hsl(200,20%,40%) !important;border-radius:0 !important;transition:background .1s ease-in-out}#content #posts-list form table .posth span:first-child a:hover{background:#689 !important}}#content #posts-list form table .posth span.date{display:inline-flex !important;height:100% !important;justify-content:center !important;align-items:center !important}#content #posts-list form table .posth.admin .user{color:hsl(0,0%,5%) !important;background:hsl(120,35%,35%) !important}#content #posts-list form table .posth.admin .user:hover{background:hsl(120,35%,45%) !important}#content #posts-list form table .posth.admin td{background:hsl(120,35%,7%) !important}#content #posts-list form table .posth.admin span a{font-size:12px !important;font-weight:bold !important;text-decoration:none !important;position:absolute !important;right:0 !important;top:0 !important;width:100px !important;height:100% !important;color:hsl(0,0%,5%) !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important;background:hsl(120,35%,35%) !important;border-radius:0 5px 5px 0 !important;transition:background .1s ease-in-out}#content #posts-list form table .posth.admin span a:hover{background:hsl(120,35%,45%) !important}#content #posts-list form table .posth .user{text-decoration:none !important;position:absolute;top:0;left:0;width:100%;height:100%;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important;transition:background .1s ease-in-out;color:hsl(0,0%,5%) !important;background:hsl(200,20%,40%) !important;border-radius:5px 0 0 5px !important}@media(max-width: 480px){#content #posts-list form table .posth .user{border-radius:0 !important}}#content #posts-list form table .posth .user:hover{background:#689 !important}@media(max-width: 480px){#content #posts-list form table .post{display:flex !important;flex-direction:column !important;width:100% !important}}#content #posts-list form table .post th{padding:10px !important;width:auto !important;display:flex !important;flex-direction:column !important;justify-content:start !important;align-items:center !important}@media(max-width: 480px){#content #posts-list form table .post th{width:100% !important;height:150px !important;padding:10px !important}}#content #posts-list form table .post th .avatar_big .rang{font-size:9px !important;text-transform:uppercase !important}@media(max-width: 480px){#content #posts-list form table .post td{width:100% !important}}#content #posts-list form table .post .post-container{padding:0 !important}@media(max-width: 480px){#content #posts-list form table .post .post-container{width:100% !important;padding:10px !important}}#content #posts-list form table .post .post-container .text img.linked-image:not([src*=\"smilies/\"]):not(img[src*=\"avatars/\"]){animation:fadeIn .5s ease-in-out;filter:brightness(0.5) !important;transition:filter .1s ease-in-out}#content #posts-list form table .post .post-container .text img.linked-image:not([src*=\"smilies/\"]):not(img[src*=\"avatars/\"]):hover{filter:brightness(1) !important}#content #posts-list form table .post .post-container .text img[src*=\"avatars/\"]{max-width:24px !important;border-radius:3px !important;transform-origin:left bottom;cursor:pointer !important;transition:transform .15s ease-in-out !important}#content #posts-list form table .post .post-container .text img[src*=\"avatars/\"]:hover{transform:scale(3) !important}#content #posts-list form table .post .post-opts{display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:center !important}#content #posts-list form table .post .post-opts td{display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:center !important}#content #posts-list form table .post .post-opts td a[onclick*=edit]{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-edit\"><path d=\"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7\"></path><path d=\"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z\"></path></svg>');height:35px !important;width:35px !important;border-radius:50% !important;font-size:0 !important;margin:10px !important;background-color:hsl(210,5%,40%) !important;background-position:center !important;background-repeat:no-repeat !important;border:none !important;transition:background-color .1s ease-in-out;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}#content #posts-list form table .post .post-opts td a[onclick*=edit]:hover{background-color:hsl(120,35%,45%) !important}#content #posts-list form table .post .post-opts a[onclick*=reply]{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"9 10 4 15 9 20\"></polyline><path d=\"M20 4v7a4 4 0 0 1-4 4H4\"></path></svg>');height:35px !important;width:35px !important;border-radius:50% !important;font-size:0 !important;margin:10px !important;background-color:hsl(210,5%,40%) !important;background-position:center !important;background-repeat:no-repeat !important;border:none !important;transition:background-color .1s ease-in-out;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}#content #posts-list form table .post .post-opts a[onclick*=reply]:hover{background-color:hsl(30,65%,50%) !important}#content #add-topic dl dd{margin:0 !important}#content #add-topic h4{display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:center !important;gap:10px !important;font-size:0 !important}@media(max-width: 500px){#content #add-topic h4{display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important;gap:5px !important}}#content #add-topic h4 a[href*=\"/forum/\"]{display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;cursor:pointer !important;text-decoration:none !important;color:hsl(0,0%,5%) !important;background:hsl(210,5%,40%) !important;min-height:30px !important;width:fit-content !important;border-radius:5px !important;padding:5px 10px !important;font:600 16px \"Montserrat\",Verdana,Geneva,Tahoma,sans-serif !important;white-space:break-spaces !important;transition:background .1s ease-in-out}#content #add-topic h4 a[href*=\"/forum/\"]:hover{background:#689 !important}#content #add-topic h4 span{font-size:22px !important}#content #add-topic form dl dt{display:none !important}#content #add-topic form dl dd{margin:0 !important}#content #add-topic form dl dd input#title-input{width:100% !important;font-size:22px !important;padding:10px !important;border-radius:5px !important;border:1px solid hsl(210,5%,40%) !important;background-color:hsl(0,0%,10%) !important;transition:border-color .15s ease-in-out,background-color .15s ease-in-out !important}#content #add-topic form dl dd input#title-input:focus{border-color:#689 !important;background-color:hsl(0,0%,5%) !important}#content #add-topic form dl dd #bb_tools_text,#content #add-topic form dl dd #text-controls{margin:10px 0 !important}#content #add-topic form dl dd textarea#text_textarea{width:100% !important;height:400px !important;font-size:1.2em !important;padding:10px !important;margin-bottom:5px !important;border-radius:5px !important;border:1px solid hsl(210,5%,40%) !important;background-color:hsl(0,0%,10%) !important;resize:none !important;transition:border-color .15s ease-in-out,background-color .15s ease-in-out !important}#content #add-topic form dl dd textarea#text_textarea:focus{border-color:#689 !important;background-color:hsl(0,0%,5%) !important}#content #add-topic form dl.write dd{display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:center !important}#content #add-topic form dl.write dd:has(input){margin-top:5px !important}@media(max-width: 400px){#content #add-topic form dl.write dd:has(input){gap:5px !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}}#content #add-topic form dl.write input{border:none !important;width:50% !important;height:40px !important;color:hsl(0,0%,5%) !important;transition:background-color .15s ease !important;font-family:\"Montserrat\",Verdana,Geneva,Tahoma,sans-serif !important;font-weight:700 !important;text-transform:uppercase !important;font-size:14px !important}#content #add-topic form dl.write input[name=send]{border-radius:5px 0 0 5px !important;border-right:1px solid hsl(0,0%,5%) !important;background:hsl(210,5%,40%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"-10 -10 270 270\"><path fill=\"hsl(0, 0%, 5%)\" d=\"M22.32 98.04l-19.04 -87.15c-0.75,-3.46 0.48,-6.84 3.29,-9 2.81,-2.17 6.39,-2.49 9.55,-0.87l225.95 116.02c3.07,1.57 4.87,4.52 4.87,7.96 0,3.44 -1.8,6.39 -4.87,7.96l-225.95 116.02c-3.16,1.62 -6.74,1.3 -9.55,-0.87 -2.81,-2.16 -4.04,-5.54 -3.29,-9l19.04 -87.15c0.79,-3.62 3.53,-6.26 7.18,-6.91l102.6 -18.19c0.91,-0.16 1.56,-0.94 1.56,-1.86 0,-0.92 -0.65,-1.7 -1.56,-1.86l-102.6 -18.19c-3.65,-0.65 -6.39,-3.29 -7.18,-6.91z\"/></svg>') no-repeat 15px center/24px !important}#content #add-topic form dl.write input[name=send]:hover{background-color:#689 !important}#content #add-topic form dl.write input[name=preview]{border-radius:0 5px 5px 0 !important;background:hsl(210,5%,40%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle></svg>') no-repeat 15px center/24px !important}#content #add-topic form dl.write input[name=preview]:hover{background-color:#689 !important}@media(max-width: 500px){#content #add-topic form dl.write input{height:32px !important;font-size:11px !important}#content #add-topic form dl.write input[name=send]{background-size:18px !important;background-position:10px center !important}#content #add-topic form dl.write input[name=preview]{background-size:18px !important;background-position:10px center !important}}@media(max-width: 400px){#content #add-topic form dl.write input[name=send],#content #add-topic form dl.write input[name=preview]{width:100% !important;border-radius:5px !important;border:none !important}}.forum-up{display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:center !important;margin-bottom:10px !important}.forum-up a[href*=\"/forum/\"]{display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;cursor:pointer !important;text-decoration:none !important;color:hsl(0,0%,5%) !important;background:hsl(210,5%,40%) !important;min-height:30px !important;width:fit-content !important;border-radius:5px !important;padding:5px 10px !important;font:600 0px \"Montserrat\",Verdana,Geneva,Tahoma,sans-serif !important;white-space:break-spaces !important;transition:background .1s ease-in-out}.forum-up a[href*=\"/forum/\"]:hover{background:#689 !important}.forum-up a[href*=\"/forum/\"] span{font-size:14px !important;text-decoration:none !important}div.logdate{color:hsl(30,65%,50%) !important}div.rct{background:hsl(0,0%,15%) !important}div.rct div.rc{color:hsl(0,0%,70%) !important}.mn{color:#689 !important}.mne{color:#c68 !important}html[xmlns*=xhtml]{font:18px Tahoma !important;color:hsl(0,0%,70%) !important}html[xmlns*=xhtml] a[href*=\"klavogonki.ru/chatlogs/\"]{background-color:#c68 !important;color:hsl(0,0%,10%) !important;padding:1px !important;border-radius:3px !important}.rcod,.rcoe,.rcot,.rcos{background:hsl(0,0%,10%) !important}@media(max-width: 800px){#content:has(#chat-wrapper:not(.chat-hidden)) #gamelist{display:none !important}}#content #chat-inline-placeholder #chat-wrapper #chat-container,#content #chat-fixed-placeholder #chat-wrapper #chat-container{display:flex !important;flex-direction:column !important}@media(max-width: 1400px){#content #chat-inline-placeholder #chat-wrapper #chat-container,#content #chat-fixed-placeholder #chat-wrapper #chat-container{left:0 !important;right:0 !important}}@media(max-width: 1400px)and (max-width: 800px){#content #chat-inline-placeholder #chat-wrapper #chat-container,#content #chat-fixed-placeholder #chat-wrapper #chat-container{height:100% !important}}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content{display:flex !important;flex-direction:column !important;flex:1 !important;min-height:0 !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title{height:26px !important;background:hsl(0,0%,10%) !important;border-radius:8px 8px 0 0 !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .l,#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .r,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .l,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .r{display:none !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .c,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .c{color:hsl(210,5%,40%) !important;background:rgba(0,0,0,0) !important;width:120px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .c:not(:has(span)),#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .c:not(:has(span)){background:rgba(0,0,0,0) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(210, 5%, 40%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z\"></path></svg>') no-repeat 10px center/12px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .c span,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .c span{height:26px !important;color:hsl(0,0%,5%) !important;background:hsl(210,5%,40%) !important;padding:0 !important;margin-left:4px !important;height:20px !important;border-radius:5px !important;font:600 1em \"Montserrat\",sans-serif !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .c.general span,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .c.general span{background:hsl(210,5%,40%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z\"></path></svg>') no-repeat 5px center/12px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .c.general.active span,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .c.general.active span{background:#689 url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z\"></path></svg>') no-repeat 5px center/12px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .c.game span,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .c.game span{background:hsl(210,5%,40%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z\"></path><line x1=\"4\" y1=\"22\" x2=\"4\" y2=\"15\"></line></svg>') no-repeat 5px center/12px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .c.game.active span,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .c.game.active span{background:#689 url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z\"></path><line x1=\"4\" y1=\"22\" x2=\"4\" y2=\"15\"></line></svg>') no-repeat 5px center/12px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .dummy,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .dummy{background:rgba(0,0,0,0) !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .dummy .hide-bar,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .dummy .hide-bar{height:26px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .height-btn,#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .mostright,#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .pin,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .height-btn,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .mostright,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .pin{height:26px !important;width:26px !important;transition:filter .1s ease-out !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .height-btn:hover,#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .mostright:hover,#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .pin:hover,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .height-btn:hover,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .mostright:hover,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .pin:hover{filter:brightness(1.2) !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .height-btn,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .height-btn{background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 70%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"18 15 12 9 6 15\"></polyline></svg>') no-repeat center/16px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .height-btn.height-btn-max,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .height-btn.height-btn-max{background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 70%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"6 9 12 15 18 9\"></polyline></svg>') no-repeat center/16px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .mostright,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .mostright{background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 70%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\"></line><line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\"></line></svg>') no-repeat center/16px}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .pin,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content #chat-title .pin{background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 70%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"5\" r=\"3\"></circle><line x1=\"12\" y1=\"22\" x2=\"12\" y2=\"8\"></line><path d=\"M5 12H2a10 10 0 0 0 20 0h-3\"></path></svg>') no-repeat center/16px}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat{background:hsl(0,0%,10%) !important;border:none !important;display:flex;flex:1 !important;min-height:0 !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat>table,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat>table{display:flex !important;width:100% !important;height:100% !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat>table tbody,#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat>table tr,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat>table tbody,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat>table tr{display:flex !important;width:100% !important;height:100% !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages{background:hsl(0,0%,10%) !important;display:flex !important;flex-direction:column !important;flex:1 !important;min-width:0 !important;overflow:hidden !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border{background:hsl(0,0%,10%) !important;border:none !important;display:flex !important;flex-direction:column !important;flex:1 !important;min-height:0 !important;overflow:hidden !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content{border:none !important;flex:1 !important;overflow-y:auto !important;padding:5px !important;scrollbar-width:thin !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content .chat-header,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content .chat-header{display:none !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div{border:none !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p{font-size:1.2em !important}@media(max-width: 1000px){#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p{white-space:break-spaces !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .username::after,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .username::after{content:\"\\a\" !important;white-space:pre !important}}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .time,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .time{color:hsl(210,5%,40%);visibility:hidden !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .time span,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .time span{visibility:visible !important;text-decoration:none !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .time span:hover,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .time span:hover{filter:brightness(0.8) !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .time[style*=\"background-color: yellow\"],#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .time[style*=\"background-color: yellow\"]{color:hsl(120,35%,45%);background-color:rgba(0,0,0,0) !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .username,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .username{visibility:hidden !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .username span,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .username span{visibility:visible !important;text-decoration:none !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .username span:hover,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border .messages-content div p .username span:hover{filter:brightness(0.8) !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table{background:hsl(0,0%,10%) !important;display:flex !important;flex-shrink:0 !important;width:100% !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table tbody,#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table tr,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table tbody,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table tr{display:flex !important;width:100% !important;align-items:center !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table th,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table th{display:flex !important;flex:1 !important;padding:0 !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table th form,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table th form{display:flex !important;width:100% !important;margin:0 !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table td,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table td{display:flex !important;align-items:center !important;flex-shrink:0 !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table td div[style*=\"width: 50px\"][style*=\"height: 0px\"],#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table td div[style*=\"width: 50px\"][style*=\"height: 0px\"]{display:none}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table input.text,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table input.text{border:none !important;outline:none !important;background:hsl(0,0%,5%) !important;margin:5px !important;padding:0 10px !important;height:35px !important;border-radius:5px !important;color:hsl(0,0%,70%) !important;flex:1 !important;min-width:0 !important;font-size:1.2em !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table input.text:disabled,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table input.text:disabled{background:hsl(210,5%,20%) !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table input.send,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table input.send{margin:0 5px 0 0 !important;padding:0 !important;flex-shrink:0 !important;height:35px !important;width:35px !important;border:none !important;outline:none !important;border-radius:5px !important;font-size:0 !important;transition:background .1s ease-out !important;background:hsl(210,5%,40%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"-10 -10 270 270\"><path fill=\"hsl(0, 0%, 5%)\" d=\"M22.32 98.04l-19.04 -87.15c-0.75,-3.46 0.48,-6.84 3.29,-9 2.81,-2.17 6.39,-2.49 9.55,-0.87l225.95 116.02c3.07,1.57 4.87,4.52 4.87,7.96 0,3.44 -1.8,6.39 -4.87,7.96l-225.95 116.02c-3.16,1.62 -6.74,1.3 -9.55,-0.87 -2.81,-2.16 -4.04,-5.54 -3.29,-9l19.04 -87.15c0.79,-3.62 3.53,-6.26 7.18,-6.91l102.6 -18.19c0.91,-0.16 1.56,-0.94 1.56,-1.86 0,-0.92 -0.65,-1.7 -1.56,-1.86l-102.6 -18.19c-3.65,-0.65 -6.39,-3.29 -7.18,-6.91z\"/></svg>') no-repeat center/20px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table input.send:hover,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table input.send:hover{background:#689 url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"-10 -10 270 270\"><path fill=\"hsl(0, 0%, 5%)\" d=\"M22.32 98.04l-19.04 -87.15c-0.75,-3.46 0.48,-6.84 3.29,-9 2.81,-2.17 6.39,-2.49 9.55,-0.87l225.95 116.02c3.07,1.57 4.87,4.52 4.87,7.96 0,3.44 -1.8,6.39 -4.87,7.96l-225.95 116.02c-3.16,1.62 -6.74,1.3 -9.55,-0.87 -2.81,-2.16 -4.04,-5.54 -3.29,-9l19.04 -87.15c0.79,-3.62 3.53,-6.26 7.18,-6.91l102.6 -18.19c0.91,-0.16 1.56,-0.94 1.56,-1.86 0,-0.92 -0.65,-1.7 -1.56,-1.86l-102.6 -18.19c-3.65,-0.65 -6.39,-3.29 -7.18,-6.91z\"/></svg>') no-repeat center/20px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .chat-opt-btn,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .chat-opt-btn{display:flex !important;align-items:center !important;justify-content:center !important;flex-shrink:0 !important;height:35px !important;width:35px !important;border:none !important;border-radius:5px !important;background:hsl(210,5%,40%) !important;margin:0 5px 0 0 !important;padding:0 !important;transition:background .1s ease-out !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .chat-opt-btn img,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .chat-opt-btn img{display:none !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .smile-btn,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .smile-btn{background:hsl(210,5%,40%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"8\" y1=\"15\" x2=\"16\" y2=\"15\"></line><line x1=\"9\" y1=\"9\" x2=\"9.01\" y2=\"9\"></line><line x1=\"15\" y1=\"9\" x2=\"15.01\" y2=\"9\"></line></svg>') no-repeat center/20px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .smile-btn:hover,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .smile-btn:hover{background:#689 url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M8 14s1.5 2 4 2 4-2 4-2\"></path><line x1=\"9\" y1=\"9\" x2=\"9.01\" y2=\"9\"></line><line x1=\"15\" y1=\"9\" x2=\"15.01\" y2=\"9\"></line></svg>') no-repeat center/20px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .smile-btn.active,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .smile-btn.active{background:hsl(30,65%,50%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M8 14s1.5 2 4 2 4-2 4-2\"></path><line x1=\"9\" y1=\"9\" x2=\"9.01\" y2=\"9\"></line><line x1=\"15\" y1=\"9\" x2=\"15.01\" y2=\"9\"></line></svg>') no-repeat center/20px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .smile-btn.active:hover,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .smile-btn.active:hover{background:hsl(30,65%,50%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M16 16s-1.5-2-4-2-4 2-4 2\"></path><line x1=\"9\" y1=\"9\" x2=\"9.01\" y2=\"9\"></line><line x1=\"15\" y1=\"9\" x2=\"15.01\" y2=\"9\"></line></svg>') no-repeat center/20px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .filter-btn,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .filter-btn{background:hsl(210,5%,40%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polygon points=\"22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3\"></polygon></svg>') no-repeat center/20px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .filter-btn:hover,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .filter-btn:hover{background:#689 url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polygon points=\"22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3\"></polygon></svg>') no-repeat center/20px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .filter-btn.active,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .messages .messages-border>table .filter-btn.active{background:hsl(120,35%,45%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polygon points=\"22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3\"></polygon></svg>') no-repeat center/20px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .panel-btn,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .panel-btn{width:0 !important;background:hsl(210,5%,40%) !important;position:relative !important;padding:0 !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .panel-btn i,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .panel-btn i{position:absolute !important;width:35px !important;height:35px !important;right:calc(100% + 3px) !important;border-radius:5px 0 0 5px !important;border:none !important;top:0 !important;transform:translateY(0) !important;transition:background .1s ease-out !important;background:#689 url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"15 18 9 12 15 6\"></polyline></svg>') no-repeat center/20px !important}@media(max-width: 800px){#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .panel-btn i,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .panel-btn i{top:50% !important;transform:translateY(-50%) !important}}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .panel-btn i:hover,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .panel-btn i:hover{background:hsl(210,5%,40%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"15 18 9 12 15 6\"></polyline></svg>') no-repeat center/20px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .panel-btn.active i,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .panel-btn.active i{background:hsl(210,5%,40%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"9 18 15 12 9 6\"></polyline></svg>') no-repeat center/20px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .panel-btn.active i:hover,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .panel-btn.active i:hover{background:#689 url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"9 18 15 12 9 6\"></polyline></svg>') no-repeat center/20px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist{padding:0 10px !important;width:200px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .chat-user-list,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .chat-user-list{scrollbar-width:thin !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .userlist-content,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .userlist-content{margin:0 !important;padding:0 !important;scrollbar-width:thin !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .userlist-content ins,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .userlist-content ins{height:26px !important;display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .userlist-content ins .name,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .userlist-content ins .name{height:26px !important;font-size:1.2em !important;display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;background-size:24px !important;padding-left:30px !important;text-decoration:none !important;color:#999 !important;position:relative !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .userlist-content ins .name::before,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .userlist-content ins .name::before{content:\"\" !important;position:absolute !important;left:0 !important;top:0 !important;content:\"\";position:absolute;left:0;width:24px;height:24px;background-image:url('data:image/svg+xml;utf8,<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(0, 0%, 10%)\" d=\"M24,0l0,24l-24,0l0,-24l24,0Zm-0.944,4.26c0,-1.828 -1.488,-3.316 -3.316,-3.316l-15.48,0c-1.828,0 -3.316,1.488 -3.316,3.316l0,15.48c0,1.828 1.488,3.316 3.316,3.316l15.48,0c1.828,0 3.316,-1.488 3.316,-3.316l0,-15.48Z\"/></svg>');background-position:left center;background-size:24px}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .userlist-content ins .name:hover,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .userlist-content ins .name:hover{color:hsl(0,0%,70%) !important;text-decoration:underline !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .userlist-content ins .info,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .userlist-content ins .info{width:14px !important;height:14px !important;margin-left:5px !important;background:hsl(0,0%,10%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"12\" y1=\"16\" x2=\"12\" y2=\"12\"></line><line x1=\"12\" y1=\"8\" x2=\"12.01\" y2=\"8\"></line></svg>') no-repeat center/14px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .userlist-content ins .info img,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .userlist-content ins .info img{display:none !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .smile-tab,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .smile-tab{display:flex;flex-direction:column;justify-content:start;align-items:start;height:100% !important;max-height:100% !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .smile-tab .smile-groups,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .smile-tab .smile-groups{height:35px !important;width:100% !important;background:hsl(0,0%,10%) !important;display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;gap:5px !important;margin-bottom:5px !important;flex-shrink:0 !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .smile-tab .smile-groups .smile-groups-action,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .smile-tab .smile-groups .smile-groups-action{border:none !important;padding:0 !important;margin:0 !important;width:35px !important;height:35px !important;color:hsl(0,0%,5%) !important;background:hsl(210,5%,40%) !important;border-radius:5px !important;font:600 1.2em \"Montserrat\",sans-serif !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .smile-tab .smile-groups .smile-groups-action.active,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .smile-tab .smile-groups .smile-groups-action.active{background:#689 !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .smile-tab .smile-content,#content #chat-fixed-placeholder #chat-wrapper #chat-container #chat-content .chat .userlist .smile-tab .smile-content{scrollbar-width:thin !important;margin:0 !important;padding:0 !important;gap:2px !important;height:calc(100% - 35px) !important;max-height:calc(100% - 35px) !important;overflow-y:auto !important;overflow-x:hidden !important}#content #chat-inline-placeholder #chat-wrapper.chat-hidden #chat-container,#content #chat-fixed-placeholder #chat-wrapper.chat-hidden #chat-container{height:26px !important}#content #chat-inline-placeholder #chat-wrapper.chat-hidden #chat-container #chat-content #chat-title .mostright,#content #chat-fixed-placeholder #chat-wrapper.chat-hidden #chat-container #chat-content #chat-title .mostright{background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 70%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3\"></path></svg>') no-repeat center/16px !important}#content #chat-inline-placeholder #chat-wrapper.chat-hidden #chat-container #chat-content .chat .panel-btn,#content #chat-fixed-placeholder #chat-wrapper.chat-hidden #chat-container #chat-content .chat .panel-btn{display:none !important}#content #chat-inline-placeholder .handle{top:-15px !important}#content #chat-inline-placeholder #chat-wrapper{border-radius:8px !important;overflow:hidden !important}#content #chat-inline-placeholder #chat-wrapper #chat-container{height:250px !important}#content #chat-inline-placeholder #chat-wrapper #chat-container #chat-content #chat-title .pin{background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"5\" r=\"3\"></circle><line x1=\"12\" y1=\"22\" x2=\"12\" y2=\"8\"></line><path d=\"M5 12H2a10 10 0 0 0 20 0h-3\"></path></svg>') no-repeat center/16px !important}#stats{width:100% !important}#stats>h4{display:none !important}#stats h4{color:hsl(30,65%,50%) !important}#stats .all-stats-container{justify-content:center !important}#stats .all-stats-container_column{min-width:360px !important}@media(max-width: 1000px){#stats .all-stats-container_column{width:550px !important}}@media(max-width: 1000px)and (max-width: 600px){#stats .all-stats-container_column{width:100% !important;margin:0 10px !important}}#stats .statistic-general,#stats .statistic-players-ranks,#stats .statistic-top-15,#stats .statistic-records{background-color:hsl(0,0%,10%) !important;border:1px solid hsl(210,5%,40%) !important}#stats .statistic-players-ranks table td{background-color:hsl(0,0%,15%) !important;border:1px solid hsl(0,0%,10%) !important}@media(max-width: 1000px){#stats .statistic-players-ranks .statistic__row-container{flex-direction:column !important}#stats .statistic-players-ranks .statistic__row-container canvas#playersRanks{margin-bottom:10px !important}#stats .statistic-players-ranks .statistic__row-container .statistic-players-ranks__table{width:100% !important}}#stats .statistic-players-ranks tbody tr:nth-child(1) td:first-child{color:#ccc !important}#stats .statistic-players-ranks tbody tr:nth-child(2) td:first-child{color:hsl(180,70%,70%) !important}#stats .statistic-players-ranks tbody tr:nth-child(3) td:first-child{color:hsl(120,70%,50%) !important}#stats .statistic-players-ranks tbody tr:nth-child(4) td:first-child{color:#cb0 !important}#stats .statistic-players-ranks tbody tr:nth-child(5) td:first-child{color:#f93 !important}#stats .statistic-players-ranks tbody tr:nth-child(6) td:first-child{color:rgb(255,25.5,102) !important}#stats .statistic-players-ranks tbody tr:nth-child(7) td:first-child{color:hsl(275,70%,70%) !important}#stats .statistic-players-ranks tbody tr:nth-child(8) td:first-child{color:#99f !important}#stats .statistic-players-ranks tbody tr:nth-child(9) td:first-child{color:hsl(200,80%,70%) !important}#stats .statistic-players-ranks tbody tr:nth-child(10) td:first-child{color:hsl(300,55%,50%) !important}#stats .statistic-players-ranks tbody tr:nth-child(11) td:first-child{color:rgb(255,212.5,0) !important}#stats .statistic-general span{color:hsl(200,40%,60%) !important}#stats .statistic-general div{color:hsl(0,0%,70%) !important}#stats .statistic-top-15 tr,#stats .statistic-records tr{height:30px !important}#stats .statistic-top-15 tr td[style*=\"avatars/\"],#stats .statistic-records tr td[style*=\"avatars/\"]{background-size:24px !important;position:relative !important}#stats .statistic-top-15 td:first-of-type{padding-left:30px !important}#stats .statistic-records td:last-of-type{padding-left:30px !important}#stats .statistic-records #records th::after,#stats .statistic-records #records td::after{background:linear-gradient(to right, transparent, hsl(0, 0%, 8%)) !important}#stats .statistic-records .statistic-records-title-container{display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:center !important}#stats .statistic-records .statistic-records-title-container .statistic-records-prize{background:url(\"data:image/svg+xml,<svg width=\\\"800px\\\" height=\\\"800px\\\" viewBox=\\\"0 0 120 120\\\" version=\\\"1.1\\\" xml:space=\\\"preserve\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><path fill=\\\"%23FFC54D\\\" d=\\\"M74.5,101.6h-5.3v-2c0-0.8-0.6-1.4-1.4-1.4H65l-1-7.3h2.2c0.8,0,1.4-0.6,1.4-1.4s-0.6-1.4-1.4-1.4h-2.6 l-0.3-2h-6.9l-0.3,2h-2.6c-0.8,0-1.4,0.6-1.4,1.4s0.6,1.4,1.4,1.4h2.2l-1,7.3h-2.8c-0.8,0-1.4,0.6-1.4,1.4v2h-5.3 c-2,0-3.6,1.6-3.6,3.6v4.5H78v-4.5C78.1,103.2,76.5,101.6,74.5,101.6z\\\"/><path fill=\\\"%23FFC54D\\\" d=\\\"M75.7,30.1v6h25V51c-1.4,2.6-8.5,14-29,11.5l-0.7,6c2.3,0.3,4.5,0.4,6.6,0.4c22,0,28.7-15.3,29-16l0.2-0.6 V30.1H75.7z\\\"/><path fill=\\\"%23FFC54D\\\" d=\\\"M48.9,68.4l-0.7-6c-20.5,2.6-27.7-8.9-29-11.5V36.1h25v-6h-31v22.2l0.2,0.6c0.3,0.7,7,16,29,16 C44.4,68.8,46.6,68.7,48.9,68.4z\\\"/><polygon fill=\\\"%237A9FFF\\\" points=\\\"81.3,30.1 81.3,93.1 88.4,87.1 95.5,93.1 95.5,30.1 \\\"/><polygon fill=\\\"%237A9FFF\\\" points=\\\"24.4,93.1 31.5,87.1 38.6,93.1 38.6,30.1 24.4,30.1 \\\"/><path fill=\\\"%23FFC54D\\\" d=\\\"M60,89.3L60,89.3c-16.4,0-29.7-13.3-29.7-29.7v-40h59.3v40C89.6,76,76.3,89.3,60,89.3z\\\"/><path fill=\\\"%23EDB248\\\" d=\\\"M60.6,36.5l3.8,7.6c0.1,0.2,0.3,0.4,0.6,0.4l8.4,1.2c0.6,0.1,0.8,0.8,0.4,1.3l-6.1,5.9 c-0.2,0.2-0.3,0.4-0.2,0.7l1.4,8.4c0.1,0.6-0.5,1.1-1.1,0.8l-7.5-4c-0.2-0.1-0.5-0.1-0.7,0l-7.5,4c-0.5,0.3-1.2-0.2-1.1-0.8 l1.4-8.4c0-0.2,0-0.5-0.2-0.7L46.1,47c-0.4-0.4-0.2-1.2,0.4-1.3l8.4-1.2c0.2,0,0.4-0.2,0.6-0.4l3.8-7.6 C59.6,35.9,60.3,35.9,60.6,36.5z\\\"/></svg>\") no-repeat center/cover !important;width:40px !important;height:40px !important}#stats .statistic-records .statistic-records-title-container h4{display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}#stats .statistic-records table.table-records tr td{max-width:115px !important}@media(max-width: 600px){#stats .statistic-records table.table-records{display:flex !important;flex-direction:column !important;justify-content:start !important;align-items:stretch !important}#stats .statistic-records table.table-records tbody{display:flex !important;flex-direction:column !important;justify-content:start !important;align-items:stretch !important;width:100% !important}#stats .statistic-records table.table-records tr{display:flex !important;flex-direction:column !important;justify-content:start !important;align-items:stretch !important;margin-bottom:15px !important;padding:15px !important;background-color:hsl(0,0%,5%) !important;border-radius:8px !important;border:1px solid hsl(210,5%,40%) !important;height:auto !important}#stats .statistic-records table.table-records tr th.table-records__title{display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;width:100% !important;max-width:100% !important;padding:0 0 8px 0 !important;font-weight:bold !important;color:hsl(30,65%,50%) !important;white-space:break-spaces !important}#stats .statistic-records table.table-records tr th.table-records__title::after{display:none !important}#stats .statistic-records table.table-records tr td{display:flex !important;padding:0 !important;max-width:100% !important}#stats .statistic-records table.table-records tr td::after{display:none !important}#stats .statistic-records table.table-records tr td:nth-child(2){display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;margin-bottom:8px !important}#stats .statistic-records table.table-records tr td:nth-child(2) .table-records__number{font-size:18px !important;font-weight:bold !important;color:hsl(200,40%,60%) !important}#stats .statistic-records table.table-records tr td:nth-child(3){display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;padding-left:30px !important;height:30px !important}#stats .statistic-records table.table-records tr td:nth-child(3) a.user{color:hsl(0,0%,70%) !important;text-decoration:none !important;font-size:16px !important}}@keyframes fadeIn{0%,80%{opacity:0}100%{opacity:1}}@keyframes bounce{from{transform:translateY(3px)}to{transform:translateY(-3px)}}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}@keyframes vigorousShake{0%,100%{transform:translateX(0px) translateY(0px) rotate(0deg)}5%{transform:translateX(-3px) translateY(-1px) rotate(-1deg)}10%{transform:translateX(3px) translateY(1px) rotate(1deg)}15%{transform:translateX(-4px) translateY(-2px) rotate(-1.5deg)}20%{transform:translateX(4px) translateY(2px) rotate(1.5deg)}25%{transform:translateX(-3px) translateY(-1px) rotate(-1deg)}30%{transform:translateX(3px) translateY(1px) rotate(1deg)}35%{transform:translateX(-2px) translateY(-2px) rotate(-0.5deg)}40%{transform:translateX(2px) translateY(2px) rotate(0.5deg)}45%{transform:translateX(-3px) translateY(-1px) rotate(-1deg)}50%{transform:translateX(3px) translateY(1px) rotate(1deg)}55%{transform:translateX(-2px) translateY(-1px) rotate(-0.5deg)}60%{transform:translateX(2px) translateY(1px) rotate(0.5deg)}65%{transform:translateX(-1px) translateY(-1px) rotate(-0.3deg)}70%{transform:translateX(1px) translateY(1px) rotate(0.3deg)}75%{transform:translateX(-2px) translateY(-1px) rotate(-0.5deg)}80%{transform:translateX(2px) translateY(1px) rotate(0.5deg)}85%{transform:translateX(-1px) translateY(0px) rotate(-0.2deg)}90%{transform:translateX(1px) translateY(0px) rotate(0.2deg)}95%{transform:translateX(-1px) translateY(0px) rotate(0deg)}}#toplist{font-family:\"Montserrat\",Verdana,Geneva,Tahoma,sans-serif;display:inline-flex !important;justify-content:center !important;gap:10px !important}#toplist h3{display:none !important}#toplist .left-col,#toplist dt:first-child{order:0 !important;float:none !important;display:flex !important;flex-direction:column !important;height:100% !important;width:fit-content !important;margin:0 !important;padding:0 !important;position:sticky !important;top:100px !important}#toplist .left-col h4,#toplist dt:first-child h4{color:hsl(30,65%,50%) !important;font:700 1.2em \"Montserrat\",sans-serif !important;text-transform:uppercase !important;padding:2px 5px !important;margin:15px 0 5px !important;border-radius:3px !important;text-align:center !important;width:220px !important}#toplist .left-col ul.mode,#toplist dt:first-child ul.mode{display:flex !important;flex-direction:column !important;align-items:center !important;margin:0 !important}#toplist .left-col ul.mode li.yeargroup,#toplist dt:first-child ul.mode li.yeargroup{color:hsl(30,65%,50%) !important;font:700 1.1em \"Montserrat\",sans-serif !important;text-align:center !important;justify-content:center !important}#toplist .left-col ul.mode li.yeargroup:hover:not(:has(a)),#toplist dt:first-child ul.mode li.yeargroup:hover:not(:has(a)){background:rgba(0,0,0,0) !important}#toplist .left-col ul.mode li.yeargroup a:hover,#toplist dt:first-child ul.mode li.yeargroup a:hover{color:hsl(215,60%,90%) !important}#toplist .left-col ul.mode li,#toplist dt:first-child ul.mode li{left:0 !important;position:relative !important;padding:2px 5px !important;margin:2px !important;width:100% !important;display:flex !important;align-items:center !important;height:fit-content !important;min-height:20px !important;border-radius:3px !important}#toplist .left-col ul.mode li span,#toplist dt:first-child ul.mode li span{padding:0 !important;padding:2px 5px !important;background:rgba(0,0,0,0) !important}#toplist .left-col ul.mode li a,#toplist dt:first-child ul.mode li a{position:absolute !important;display:inline-flex !important;align-items:center !important;top:0 !important;bottom:0 !important;left:10px;right:0;z-index:1 !important;text-decoration:none !important}#toplist .left-col ul.mode li a img,#toplist dt:first-child ul.mode li a img{visibility:hidden !important;height:100% !important;width:25px !important;top:0 !important}#toplist .left-col ul.mode li a[href*=\"/vocs/\"],#toplist dt:first-child ul.mode li a[href*=\"/vocs/\"]{left:0 !important;width:25px !important;border-radius:3px 0 0 3px !important;mix-blend-mode:lighten !important}#toplist .left-col ul.mode li a.gametype-voc,#toplist dt:first-child ul.mode li a.gametype-voc{left:25px !important;padding-left:5px !important;border-radius:0 3px 3px 0 !important;white-space:nowrap !important;overflow:hidden !important}#toplist .left-col ul.mode li:hover,#toplist dt:first-child ul.mode li:hover{background:hsl(200,40%,20%) !important}#toplist .left-col ul.mode li.gametype-voc,#toplist dt:first-child ul.mode li.gametype-voc{position:relative !important}#toplist .left-col ul.mode li.gametype-voc span,#toplist dt:first-child ul.mode li.gametype-voc span{margin:0 0 0 25px !important}#toplist .left-col ul.mode li.gametype-voc a:hover,#toplist dt:first-child ul.mode li.gametype-voc a:hover{color:hsl(215,60%,90%) !important;background-color:hsl(200,40%,30%) !important}#toplist .left-col ul.mode li.gametype-voc::before,#toplist dt:first-child ul.mode li.gametype-voc::before{content:\"\" !important;position:absolute !important;top:0 !important;left:0 !important;display:inline-flex !important;width:24px !important;height:100% !important;background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 19.5A2.5 2.5 0 0 1 6.5 17H20\"></path><path d=\"M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z\"></path></svg>') no-repeat center/16px !important}#toplist .left-col ul.mode li.active,#toplist dt:first-child ul.mode li.active{background:hsl(200,40%,20%) !important}#toplist .left-col ul.mode li:has(.gametype-normal).active,#toplist .left-col ul.mode li:has(.gametype-normal):hover,#toplist dt:first-child ul.mode li:has(.gametype-normal).active,#toplist dt:first-child ul.mode li:has(.gametype-normal):hover{background:hsl(135,30%,20%) !important}#toplist .left-col ul.mode li:has(.gametype-quote).active,#toplist .left-col ul.mode li:has(.gametype-quote):hover,#toplist dt:first-child ul.mode li:has(.gametype-quote).active,#toplist dt:first-child ul.mode li:has(.gametype-quote):hover{background:#333 !important}#toplist .left-col ul.mode li:has(.gametype-sprint).active,#toplist .left-col ul.mode li:has(.gametype-sprint):hover,#toplist dt:first-child ul.mode li:has(.gametype-sprint).active,#toplist dt:first-child ul.mode li:has(.gametype-sprint):hover{background:hsl(280,65%,25%) !important}#toplist .left-col ul.mode li:has(.gametype-marathon).active,#toplist .left-col ul.mode li:has(.gametype-marathon):hover,#toplist dt:first-child ul.mode li:has(.gametype-marathon).active,#toplist dt:first-child ul.mode li:has(.gametype-marathon):hover{background:hsl(315,40%,20%) !important}#toplist .left-col ul.mode li:has(.gametype-noerror).active,#toplist .left-col ul.mode li:has(.gametype-noerror):hover,#toplist dt:first-child ul.mode li:has(.gametype-noerror).active,#toplist dt:first-child ul.mode li:has(.gametype-noerror):hover{background:#000 !important}#toplist .left-col ul.mode li:has(.gametype-noerrorcnt).active,#toplist .left-col ul.mode li:has(.gametype-noerrorcnt):hover,#toplist dt:first-child ul.mode li:has(.gametype-noerrorcnt).active,#toplist dt:first-child ul.mode li:has(.gametype-noerrorcnt):hover{background:#000 !important}#toplist .left-col ul.mode li:has(.gametype-abra).active,#toplist .left-col ul.mode li:has(.gametype-abra):hover,#toplist dt:first-child ul.mode li:has(.gametype-abra).active,#toplist dt:first-child ul.mode li:has(.gametype-abra):hover{background:hsl(50,100%,5%) !important}#toplist .left-col ul.mode li:has(.gametype-abra-premium).active,#toplist .left-col ul.mode li:has(.gametype-abra-premium):hover,#toplist dt:first-child ul.mode li:has(.gametype-abra-premium).active,#toplist dt:first-child ul.mode li:has(.gametype-abra-premium):hover{background:hsl(50,100%,5%) !important}#toplist .left-col ul.mode li:has(.gametype-digits).active,#toplist .left-col ul.mode li:has(.gametype-digits):hover,#toplist dt:first-child ul.mode li:has(.gametype-digits).active,#toplist dt:first-child ul.mode li:has(.gametype-digits):hover{background:hsl(170,45%,10%) !important}#toplist .left-col ul.mode li:has(.gametype-referats).active,#toplist .left-col ul.mode li:has(.gametype-referats):hover,#toplist dt:first-child ul.mode li:has(.gametype-referats).active,#toplist dt:first-child ul.mode li:has(.gametype-referats):hover{background:hsl(60,40%,20%) !important}#toplist .left-col ul.mode li:has(.gametype-voc).active,#toplist .left-col ul.mode li:has(.gametype-voc):hover,#toplist dt:first-child ul.mode li:has(.gametype-voc).active,#toplist dt:first-child ul.mode li:has(.gametype-voc):hover{background:hsl(215,60%,20%) !important}#toplist .left-col ul.mode li:has(.gametype-chars).active,#toplist .left-col ul.mode li:has(.gametype-chars):hover,#toplist dt:first-child ul.mode li:has(.gametype-chars).active,#toplist dt:first-child ul.mode li:has(.gametype-chars):hover{background:hsl(20,45%,20%) !important}#toplist .left-col ul.mode li:has(.gametype-qual).active,#toplist .left-col ul.mode li:has(.gametype-qual):hover,#toplist dt:first-child ul.mode li:has(.gametype-qual).active,#toplist dt:first-child ul.mode li:has(.gametype-qual):hover{background:#900 !important}#toplist .content-col,#toplist dd{display:flex !important;flex-direction:column !important;align-items:center !important;order:1 !important;margin:0 !important;padding:0 10px !important;width:fit-content !important}#toplist .content-col .search-position,#toplist dd .search-position{width:100% !important}#toplist .content-col .search-position .search-self,#toplist dd .search-position .search-self{background:hsl(0,0%,10%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z\"></path><circle cx=\"12\" cy=\"10\" r=\"3\"></circle></svg>') no-repeat center/24px !important;border-radius:5px !important;border:1px solid hsl(210,5%,40%) !important;width:60px !important;height:100% !important;padding:0 !important;margin-right:10px !important;transition:background .15s ease !important;cursor:pointer !important}#toplist .content-col .search-position .search-self:hover,#toplist dd .search-position .search-self:hover{background:hsl(0,0%,5%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z\"></path><circle cx=\"12\" cy=\"10\" r=\"3\"></circle></svg>') no-repeat center/24px !important;border-color:hsl(200,40%,60%) !important}#toplist .content-col .search-position .search-self a,#toplist dd .search-position .search-self a{font-size:0 !important;display:inline-flex !important;height:100% !important;width:100% !important}#toplist .content-col table,#toplist dd table{width:100% !important}#toplist .content-col table tbody,#toplist dd table tbody{display:flex !important;flex-direction:column !important}#toplist .content-col table tbody tr,#toplist dd table tbody tr{background-color:hsl(0,0%,13%) !important;border:1px solid hsl(210,5%,25%) !important;border-radius:5px !important;margin:5px 0 !important;padding:5px !important;height:70px !important;position:relative !important}#toplist .content-col table tbody tr .offset_up,#toplist .content-col table tbody tr .offset_down,#toplist dd table tbody tr .offset_up,#toplist dd table tbody tr .offset_down{position:absolute !important;top:0 !important;right:10px !important;width:50px !important;justify-content:center !important;font-weight:700 !important;font-size:1.1em !important}#toplist .content-col table tbody tr .offset_up,#toplist dd table tbody tr .offset_up{color:hsl(120,35%,45%) !important}#toplist .content-col table tbody tr .offset_down,#toplist dd table tbody tr .offset_down{color:#c68 !important}#toplist .content-col table tbody tr .pos,#toplist dd table tbody tr .pos{width:50px !important;justify-content:center !important}#toplist .content-col table tbody tr th.name,#toplist dd table tbody tr th.name{margin-right:120px !important}#toplist .content-col table tbody tr .name,#toplist dd table tbody tr .name{width:220px !important;background-position:left center !important;background-size:32px !important}#toplist .content-col table tbody tr .name a,#toplist dd table tbody tr .name a{border:none !important}#toplist .content-col table tbody tr .name[style*=\"avatars/\"] a,#toplist dd table tbody tr .name[style*=\"avatars/\"] a{padding-left:40px !important}#toplist .content-col table tbody tr .car,#toplist dd table tbody tr .car{margin-right:15px !important}#toplist .content-col table tbody tr .car .img::before,#toplist dd table tbody tr .car .img::before{filter:brightness(0.88) !important}#toplist .content-col table tbody tr .car .numbers,#toplist dd table tbody tr .car .numbers{bottom:5px !important;right:calc(100% + 5px) !important}#toplist .content-col table tbody tr .highlight,#toplist dd table tbody tr .highlight{margin-right:15px !important;min-width:140px !important}#toplist .content-col table tbody tr .highlight+td,#toplist .content-col table tbody tr .highlight+td+td,#toplist .content-col table tbody tr .highlight+th,#toplist .content-col table tbody tr .highlight+th+th,#toplist dd table tbody tr .highlight+td,#toplist dd table tbody tr .highlight+td+td,#toplist dd table tbody tr .highlight+th,#toplist dd table tbody tr .highlight+th+th{min-width:90px !important;margin-right:15px !important}#toplist .content-col table tbody tr th:not(.offset),#toplist dd table tbody tr th:not(.offset){padding:0 !important}#toplist .content-col table tbody tr th,#toplist .content-col table tbody tr td,#toplist dd table tbody tr th,#toplist dd table tbody tr td{display:inline-flex !important;flex-direction:row !important;justify-content:start !important;align-items:center !important;width:fit-content !important;background-color:hsl(0,0%,13%) !important;border:none !important;height:100% !important;margin:0 !important;padding:0 !important}#toplist .content-col table tbody tr td strong,#toplist .content-col table tbody tr td b,#toplist dd table tbody tr td strong,#toplist dd table tbody tr td b{color:hsl(200,40%,60%) !important;margin-right:5px !important}#toplist .right-col{order:2 !important;float:none !important;display:flex !important;flex-direction:column !important;margin:0 !important;padding:0 !important;position:fixed !important;top:50% !important;right:0 !important;transform:translateY(-50%) !important;width:50px !important;height:50px !important;z-index:10 !important;cursor:pointer !important;opacity:0;animation:fadeIn 2s ease-in-out 0s 1 forwards !important}#toplist .right-col .info{position:absolute !important;background:hsl(0,0%,5%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"12\" y1=\"16\" x2=\"12\" y2=\"12\"></line><line x1=\"12\" y1=\"8\" x2=\"12.01\" y2=\"8\"></line></svg>') no-repeat 10px center/32px !important;width:500px !important;height:50px !important;overflow:hidden !important;border-radius:5px !important;right:0 !important;top:50% !important;transform:translateY(-50%) translateX(calc(100% - 50px)) !important;transition:transform .3s ease !important}#toplist .right-col .info p{opacity:0 !important;transition:opacity .3s ease !important}#toplist .right-col .info:hover{height:fit-content !important;transform:translateY(-50%) translateX(0) !important;background:hsl(0,0%,5%) !important}#toplist .right-col .info:hover p{opacity:1 !important}.search,.yandexform{padding:0 !important;width:100% !important;background:none !important;border:none !important}#search_form [style*=margin-right]{margin-right:0 !important}.search input[type=text],.search input[name=text],.yandexform input[type=text],.yandexform input[name=text],#search_form input[type=text],#search_form input[name=searchtext]{background:hsl(0,0%,10%) !important;color:hsl(210,5%,40%) !important;border:1px solid hsl(210,5%,40%) !important;border-radius:5px !important;font-size:20px !important;height:50px !important;padding:0 20px !important;width:100% !important;box-sizing:border-box !important;transition:border-color .15s ease-in-out,background .15s ease-in-out !important}.search input[type=text]::selection,.search input[name=text]::selection,.yandexform input[type=text]::selection,.yandexform input[name=text]::selection,#search_form input[type=text]::selection,#search_form input[name=searchtext]::selection{background:hsl(210,5%,40%) !important;color:hsl(0,0%,10%) !important}.search input[type=text]:hover,.search input[name=text]:hover,.yandexform input[type=text]:hover,.yandexform input[name=text]:hover,#search_form input[type=text]:hover,#search_form input[name=searchtext]:hover{color:#689 !important;border-color:#689 !important}.search input[type=text]:hover::selection,.search input[name=text]:hover::selection,.yandexform input[type=text]:hover::selection,.yandexform input[name=text]:hover::selection,#search_form input[type=text]:hover::selection,#search_form input[name=searchtext]:hover::selection{background:#689 !important;color:hsl(0,0%,10%) !important}.search input[type=text]:focus,.search input[name=text]:focus,.yandexform input[type=text]:focus,.yandexform input[name=text]:focus,#search_form input[type=text]:focus,#search_form input[name=searchtext]:focus{background:hsl(0,0%,5%) !important;color:hsl(200,40%,60%) !important;border-color:hsl(200,40%,60%) !important}.search input[type=text]:focus::selection,.search input[name=text]:focus::selection,.yandexform input[type=text]:focus::selection,.yandexform input[name=text]:focus::selection,#search_form input[type=text]:focus::selection,#search_form input[name=searchtext]:focus::selection{background:hsl(200,40%,60%) !important;color:hsl(0,0%,10%) !important}.yandexform input[name=text][style*=width],.yandexform input[name=text]{width:100% !important}.search input[type=submit],.yandexform input[type=submit],#search_form input[type=submit]{display:none !important}div[style*=\"/iframe/loader__progress.gif\"]{filter:hue-rotate(180deg) !important}iframe[src*=\"http://yandex.ru\"]{filter:invert(90%) !important}.fuel-dlg-pay .amount{background:hsl(0,0%,10%) !important;border:1px solid hsl(210,5%,40%) !important}.fuel-dlg-pay ul.benefit>li.active,.fuel-dlg-pay ul.benefit>li:hover{background:hsl(0,0%,10%) !important}.fuel-dlg-pay ul.benefit>li .pro-options>li{background:hsl(0,0%,15%) !important;border:1px solid hsl(210,5%,40%) !important}.fuel-dlg-pay ul.benefit>li .pro-options>li.active{background:hsl(0,0%,15%) !important}.fuel-dlg-pay .bonus.clickable{background:hsl(0,0%,15%) !important}.fuel-dlg-pay .bonus.clickable:hover{background:hsl(0,0%,10%) !important}input.ng-pristine{border:1px solid hsl(210,5%,40%) !important}.fuel-root .faq{height:0 !important;visibility:hidden !important;margin-bottom:0 !important}.fuel-root .fuel-content,.fuel-root .thankyou{background-color:hsl(0,0%,15%) !important}.fuel-root .fuel-content{border-bottom:1px solid hsl(210,5%,40%) !important}.fuel-root .fuel-content .left-block .amount{color:#689 !important}.fuel-root .fuel-content .left-block .tank-up{background:url(\"https://i.imgur.com/DRxzmSe.png\") no-repeat !important}.fuel-root .fuel-content .left-block .tank-up:hover{background-position:0 -70px !important}.fuel-root .fuel-content .right-block .goal-list .goal{background:hsl(0,0%,10%) !important;border-bottom:1px solid #689 !important}.fuel-root .fuel-content .right-block .goal-list .goal h4,.fuel-root .fuel-content .right-block .goal-list .goal h4 .remained{color:hsl(0,0%,10%) !important}.fuel-root .fuel-content .right-block .goal-list .gradient-bottom,.fuel-root .fuel-content .right-block .goal-list .gradient-top{display:none !important}.fuel-root .thankyou{padding:0 !important}.fuel-root .thankyou .row>div .user>div.avgmore{background:#689 !important}.fuel-root .thankyou .row>div .user>div.avgmore a,.fuel-root .thankyou .row>div .user>div.avgmore a:hover,.fuel-root .thankyou .row>div .user>div.avgmore .note{color:hsl(0,0%,15%) !important;text-decoration:none !important}.fuel-root h2 a.active{color:hsl(30,65%,50%) !important}.fuel-root .month button{padding:5px !important;background:hsl(0,0%,10%) !important;border-bottom:1px solid rgba(0,0,0,0) !important}.fuel-root .month button:hover{text-decoration:none !important;border-bottom:1px solid #689 !important}.fuel-root .month span.ng-scope:nth-child(1){color:hsl(0,0%,70%) !important}.about{width:80% !important;font-size:12px !important}.about img{filter:invert(83%) !important}.about div[style*=eee]{background-color:hsl(0,0%,15%) !important}#about table#regular{display:flex !important;justify-content:center !important}#about table.cars{border:1px solid hsl(210,5%,40%) !important}#about table.cars td{background:hsl(0,0%,15%) !important;color:hsl(0,0%,70%) !important}#faq .question dt{color:#689 !important}#learning .hint{background:hsl(0,0%,10%) !important}.imgcont:has(.car1[style*=\"background-color: #777\"]){position:relative;background-color:hsl(210,5%,40%) !important}.imgcont:has(.car1[style*=\"background-color: #777\"])::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M500,0l0,200l-500,0l0,-200l500,0Zm-419,149l-63,0l0,1l63,0l0,-1Zm-58,-69l41,0l-4,-7l-30.492,0c-3,2 -6.508,7 -6.508,7Zm158.619,-42c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 -0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.283,0 -0.619,0 -0.619,0c0,0 -0.184,-0.552 -0.394,-1.182c-0.371,-1.114 -1.34,-1.923 -2.503,-2.089c-3.825,-0.546 -12.103,-1.729 -12.103,-1.729l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8c-6,3 -8,6 -8,9c0,2 0,3.654 0,3.654c0,3.026 2.311,5.55 5.325,5.817l5.978,0.529c0.939,1.315 2.477,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.214,-2.173l31.592,0c0.938,1.315 2.476,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.213,-2.173c3.252,0 4.252,-3 4.252,-9l0.619,0Zm-100.641,-5c0,-0 -0.154,-0.475 -0.341,-1.047c-0.39,-1.196 -1.426,-2.066 -2.671,-2.244c-3.882,-0.554 -11.966,-1.709 -11.966,-1.709l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8l-7.12,2.67c-0.529,0.199 -0.88,0.704 -0.88,1.27l-0,9.795c0,0.718 0.544,1.319 1.258,1.391l8.742,0.874l0.344,0.031c0.017,2.841 2.328,5.142 5.172,5.142c2.526,-0 4.631,-1.814 5.083,-4.209l0.401,0.036l29,0l0.413,-0.275c0.353,2.512 2.513,4.448 5.122,4.448c2.855,-0 5.173,-2.318 5.173,-5.173c-0,-0.342 -0.034,-0.676 -0.097,-1l2.556,-0c0.221,0 0.433,-0.088 0.589,-0.244c0.156,-0.156 0.244,-0.368 0.244,-0.589l-0,-4.167l0.619,0c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.291,-0 -0.641,-0 -0.641,-0Z'/%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-size:500px 200px !important;z-index:1}.imgcont:has(.car1[style*=\"background-color: #777\"])::after{content:\"\";position:absolute;bottom:0px;left:2px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 70%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 70%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 70%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 70%) / 2) + calc((70% - 30%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 70%) / 2) + calc((70% - 30%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 70%) / 2) - calc((70% - 30%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 70%) / 2) - calc((70% - 30%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 70%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 70%) / 2) - 10%), transparent calc(100% - calc((100% - 70%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car1.car-tuning1_0{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M500,0l0,200l-500,0l0,-200l500,0Zm-419,149l-63,0l0,1l63,0l0,-1Zm-58,-69l41,0l-4,-7l-30.492,0c-3,2 -6.508,7 -6.508,7Zm158.619,-42c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 -0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.283,0 -0.619,0 -0.619,0c0,0 -0.184,-0.552 -0.394,-1.182c-0.371,-1.114 -1.34,-1.923 -2.503,-2.089c-3.825,-0.546 -12.103,-1.729 -12.103,-1.729l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8c-6,3 -8,6 -8,9c0,2 0,3.654 0,3.654c0,3.026 2.311,5.55 5.325,5.817l5.978,0.529c0.939,1.315 2.477,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.214,-2.173l31.592,0c0.938,1.315 2.476,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.213,-2.173c3.252,0 4.252,-3 4.252,-9l0.619,0Zm-100.641,-5c0,-0 -0.154,-0.475 -0.341,-1.047c-0.39,-1.196 -1.426,-2.066 -2.671,-2.244c-3.882,-0.554 -11.966,-1.709 -11.966,-1.709l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8l-7.12,2.67c-0.529,0.199 -0.88,0.704 -0.88,1.27l-0,9.795c0,0.718 0.544,1.319 1.258,1.391l8.742,0.874l0.344,0.031c0.017,2.841 2.328,5.142 5.172,5.142c2.526,-0 4.631,-1.814 5.083,-4.209l0.401,0.036l29,0l0.413,-0.275c0.353,2.512 2.513,4.448 5.122,4.448c2.855,-0 5.173,-2.318 5.173,-5.173c-0,-0.342 -0.034,-0.676 -0.097,-1l2.556,-0c0.221,0 0.433,-0.088 0.589,-0.244c0.156,-0.156 0.244,-0.368 0.244,-0.589l-0,-4.167l0.619,0c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.291,-0 -0.641,-0 -0.641,-0Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car1.car-tuning1_1{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M500,0l0,200l-500,0l0,-200l500,0Zm-419,149l-63,0l0,1l63,0l0,-1Zm-58,-69l41,0l-4,-7l-30.492,0c-3,2 -6.508,7 -6.508,7Zm158.619,-42c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 -0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.283,0 -0.619,0 -0.619,0c0,0 -0.184,-0.552 -0.394,-1.182c-0.371,-1.114 -1.34,-1.923 -2.503,-2.089c-3.825,-0.546 -12.103,-1.729 -12.103,-1.729l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8c-6,3 -8,6 -8,9c0,2 0,3.654 0,3.654c0,3.026 2.311,5.55 5.325,5.817l5.978,0.529c0.939,1.315 2.477,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.214,-2.173l31.592,0c0.938,1.315 2.476,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.213,-2.173c3.252,0 4.252,-3 4.252,-9l0.619,0Zm-100.641,-5c0,-0 -0.154,-0.475 -0.341,-1.047c-0.39,-1.196 -1.426,-2.066 -2.671,-2.244c-3.882,-0.554 -11.966,-1.709 -11.966,-1.709l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8l-7.12,2.67c-0.529,0.199 -0.88,0.704 -0.88,1.27l-0,9.795c0,0.718 0.544,1.319 1.258,1.391l8.742,0.874l0.344,0.031c0.017,2.841 2.328,5.142 5.172,5.142c2.526,-0 4.631,-1.814 5.083,-4.209l0.401,0.036l29,0l0.413,-0.275c0.353,2.512 2.513,4.448 5.122,4.448c2.855,-0 5.173,-2.318 5.173,-5.173c-0,-0.342 -0.034,-0.676 -0.097,-1l2.556,-0c0.221,0 0.433,-0.088 0.589,-0.244c0.156,-0.156 0.244,-0.368 0.244,-0.589l-0,-4.167l0.619,0c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.291,-0 -0.641,-0 -0.641,-0Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car1.car-tuning1_2{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M500,0l0,200l-500,0l0,-200l500,0Zm-419,149l-63,0l0,1l63,0l0,-1Zm-58,-69l41,0l-4,-7l-30.492,0c-3,2 -6.508,7 -6.508,7Zm158.619,-42c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 -0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.283,0 -0.619,0 -0.619,0c0,0 -0.184,-0.552 -0.394,-1.182c-0.371,-1.114 -1.34,-1.923 -2.503,-2.089c-3.825,-0.546 -12.103,-1.729 -12.103,-1.729l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8c-6,3 -8,6 -8,9c0,2 0,3.654 0,3.654c0,3.026 2.311,5.55 5.325,5.817l5.978,0.529c0.939,1.315 2.477,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.214,-2.173l31.592,0c0.938,1.315 2.476,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.213,-2.173c3.252,0 4.252,-3 4.252,-9l0.619,0Zm-100.641,-5c0,-0 -0.154,-0.475 -0.341,-1.047c-0.39,-1.196 -1.426,-2.066 -2.671,-2.244c-3.882,-0.554 -11.966,-1.709 -11.966,-1.709l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8l-7.12,2.67c-0.529,0.199 -0.88,0.704 -0.88,1.27l-0,9.795c0,0.718 0.544,1.319 1.258,1.391l8.742,0.874l0.344,0.031c0.017,2.841 2.328,5.142 5.172,5.142c2.526,-0 4.631,-1.814 5.083,-4.209l0.401,0.036l29,0l0.413,-0.275c0.353,2.512 2.513,4.448 5.122,4.448c2.855,-0 5.173,-2.318 5.173,-5.173c-0,-0.342 -0.034,-0.676 -0.097,-1l2.556,-0c0.221,0 0.433,-0.088 0.589,-0.244c0.156,-0.156 0.244,-0.368 0.244,-0.589l-0,-4.167l0.619,0c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.291,-0 -0.641,-0 -0.641,-0Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car1.car-tuning1_3{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M500,0l0,200l-500,0l0,-200l500,0Zm-419,149l-63,0l0,1l63,0l0,-1Zm-58,-69l41,0l-4,-7l-30.492,0c-3,2 -6.508,7 -6.508,7Zm158.619,-42c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 -0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.283,0 -0.619,0 -0.619,0c0,0 -0.184,-0.552 -0.394,-1.182c-0.371,-1.114 -1.34,-1.923 -2.503,-2.089c-3.825,-0.546 -12.103,-1.729 -12.103,-1.729l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8c-6,3 -8,6 -8,9c0,2 0,3.654 0,3.654c0,3.026 2.311,5.55 5.325,5.817l5.978,0.529c0.939,1.315 2.477,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.214,-2.173l31.592,0c0.938,1.315 2.476,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.213,-2.173c3.252,0 4.252,-3 4.252,-9l0.619,0Zm-100.641,-5c0,-0 -0.154,-0.475 -0.341,-1.047c-0.39,-1.196 -1.426,-2.066 -2.671,-2.244c-3.882,-0.554 -11.966,-1.709 -11.966,-1.709l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8l-7.12,2.67c-0.529,0.199 -0.88,0.704 -0.88,1.27l-0,9.795c0,0.718 0.544,1.319 1.258,1.391l8.742,0.874l0.344,0.031c0.017,2.841 2.328,5.142 5.172,5.142c2.526,-0 4.631,-1.814 5.083,-4.209l0.401,0.036l29,0l0.413,-0.275c0.353,2.512 2.513,4.448 5.122,4.448c2.855,-0 5.173,-2.318 5.173,-5.173c-0,-0.342 -0.034,-0.676 -0.097,-1l2.556,-0c0.221,0 0.433,-0.088 0.589,-0.244c0.156,-0.156 0.244,-0.368 0.244,-0.589l-0,-4.167l0.619,0c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.291,-0 -0.641,-0 -0.641,-0Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car1.car-tuning1_4{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M500,0l0,200l-500,0l0,-200l500,0Zm-419,149l-63,0l0,1l63,0l0,-1Zm-58,-69l41,0l-4,-7l-30.492,0c-3,2 -6.508,7 -6.508,7Zm158.619,-42c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 -0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.283,0 -0.619,0 -0.619,0c0,0 -0.184,-0.552 -0.394,-1.182c-0.371,-1.114 -1.34,-1.923 -2.503,-2.089c-3.825,-0.546 -12.103,-1.729 -12.103,-1.729l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8c-6,3 -8,6 -8,9c0,2 0,3.654 0,3.654c0,3.026 2.311,5.55 5.325,5.817l5.978,0.529c0.939,1.315 2.477,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.214,-2.173l31.592,0c0.938,1.315 2.476,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.213,-2.173c3.252,0 4.252,-3 4.252,-9l0.619,0Zm-100.641,-5c0,-0 -0.154,-0.475 -0.341,-1.047c-0.39,-1.196 -1.426,-2.066 -2.671,-2.244c-3.882,-0.554 -11.966,-1.709 -11.966,-1.709l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8l-7.12,2.67c-0.529,0.199 -0.88,0.704 -0.88,1.27l-0,9.795c0,0.718 0.544,1.319 1.258,1.391l8.742,0.874l0.344,0.031c0.017,2.841 2.328,5.142 5.172,5.142c2.526,-0 4.631,-1.814 5.083,-4.209l0.401,0.036l29,0l0.413,-0.275c0.353,2.512 2.513,4.448 5.122,4.448c2.855,-0 5.173,-2.318 5.173,-5.173c-0,-0.342 -0.034,-0.676 -0.097,-1l2.556,-0c0.221,0 0.433,-0.088 0.589,-0.244c0.156,-0.156 0.244,-0.368 0.244,-0.589l-0,-4.167l0.619,0c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.291,-0 -0.641,-0 -0.641,-0Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car1.car-tuning2_0{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M500,0l0,200l-500,0l0,-200l500,0Zm-419,149l-63,0l0,1l63,0l0,-1Zm-58,-69l41,0l-4,-7l-30.492,0c-3,2 -6.508,7 -6.508,7Zm158.619,-42c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 -0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.283,0 -0.619,0 -0.619,0c0,0 -0.184,-0.552 -0.394,-1.182c-0.371,-1.114 -1.34,-1.923 -2.503,-2.089c-3.825,-0.546 -12.103,-1.729 -12.103,-1.729l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8c-6,3 -8,6 -8,9c0,2 0,3.654 0,3.654c0,3.026 2.311,5.55 5.325,5.817l5.978,0.529c0.939,1.315 2.477,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.214,-2.173l31.592,0c0.938,1.315 2.476,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.213,-2.173c3.252,0 4.252,-3 4.252,-9l0.619,0Zm-100.641,-5c0,-0 -0.154,-0.475 -0.341,-1.047c-0.39,-1.196 -1.426,-2.066 -2.671,-2.244c-3.882,-0.554 -11.966,-1.709 -11.966,-1.709l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8l-7.12,2.67c-0.529,0.199 -0.88,0.704 -0.88,1.27l-0,9.795c0,0.718 0.544,1.319 1.258,1.391l8.742,0.874l0.344,0.031c0.017,2.841 2.328,5.142 5.172,5.142c2.526,-0 4.631,-1.814 5.083,-4.209l0.401,0.036l29,0l0.413,-0.275c0.353,2.512 2.513,4.448 5.122,4.448c2.855,-0 5.173,-2.318 5.173,-5.173c-0,-0.342 -0.034,-0.676 -0.097,-1l2.556,-0c0.221,0 0.433,-0.088 0.589,-0.244c0.156,-0.156 0.244,-0.368 0.244,-0.589l-0,-4.167l0.619,0c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.291,-0 -0.641,-0 -0.641,-0Z'/%3E%3C/svg%3E\") no-repeat 0px -100px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car1.car-tuning2_1{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M500,0l0,200l-500,0l0,-200l500,0Zm-419,149l-63,0l0,1l63,0l0,-1Zm-58,-69l41,0l-4,-7l-30.492,0c-3,2 -6.508,7 -6.508,7Zm158.619,-42c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 -0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.283,0 -0.619,0 -0.619,0c0,0 -0.184,-0.552 -0.394,-1.182c-0.371,-1.114 -1.34,-1.923 -2.503,-2.089c-3.825,-0.546 -12.103,-1.729 -12.103,-1.729l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8c-6,3 -8,6 -8,9c0,2 0,3.654 0,3.654c0,3.026 2.311,5.55 5.325,5.817l5.978,0.529c0.939,1.315 2.477,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.214,-2.173l31.592,0c0.938,1.315 2.476,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.213,-2.173c3.252,0 4.252,-3 4.252,-9l0.619,0Zm-100.641,-5c0,-0 -0.154,-0.475 -0.341,-1.047c-0.39,-1.196 -1.426,-2.066 -2.671,-2.244c-3.882,-0.554 -11.966,-1.709 -11.966,-1.709l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8l-7.12,2.67c-0.529,0.199 -0.88,0.704 -0.88,1.27l-0,9.795c0,0.718 0.544,1.319 1.258,1.391l8.742,0.874l0.344,0.031c0.017,2.841 2.328,5.142 5.172,5.142c2.526,-0 4.631,-1.814 5.083,-4.209l0.401,0.036l29,0l0.413,-0.275c0.353,2.512 2.513,4.448 5.122,4.448c2.855,-0 5.173,-2.318 5.173,-5.173c-0,-0.342 -0.034,-0.676 -0.097,-1l2.556,-0c0.221,0 0.433,-0.088 0.589,-0.244c0.156,-0.156 0.244,-0.368 0.244,-0.589l-0,-4.167l0.619,0c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.291,-0 -0.641,-0 -0.641,-0Z'/%3E%3C/svg%3E\") no-repeat 0px -100px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car1.car-tuning2_2{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M500,0l0,200l-500,0l0,-200l500,0Zm-419,149l-63,0l0,1l63,0l0,-1Zm-58,-69l41,0l-4,-7l-30.492,0c-3,2 -6.508,7 -6.508,7Zm158.619,-42c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 -0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.283,0 -0.619,0 -0.619,0c0,0 -0.184,-0.552 -0.394,-1.182c-0.371,-1.114 -1.34,-1.923 -2.503,-2.089c-3.825,-0.546 -12.103,-1.729 -12.103,-1.729l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8c-6,3 -8,6 -8,9c0,2 0,3.654 0,3.654c0,3.026 2.311,5.55 5.325,5.817l5.978,0.529c0.939,1.315 2.477,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.214,-2.173l31.592,0c0.938,1.315 2.476,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.213,-2.173c3.252,0 4.252,-3 4.252,-9l0.619,0Zm-100.641,-5c0,-0 -0.154,-0.475 -0.341,-1.047c-0.39,-1.196 -1.426,-2.066 -2.671,-2.244c-3.882,-0.554 -11.966,-1.709 -11.966,-1.709l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8l-7.12,2.67c-0.529,0.199 -0.88,0.704 -0.88,1.27l-0,9.795c0,0.718 0.544,1.319 1.258,1.391l8.742,0.874l0.344,0.031c0.017,2.841 2.328,5.142 5.172,5.142c2.526,-0 4.631,-1.814 5.083,-4.209l0.401,0.036l29,0l0.413,-0.275c0.353,2.512 2.513,4.448 5.122,4.448c2.855,-0 5.173,-2.318 5.173,-5.173c-0,-0.342 -0.034,-0.676 -0.097,-1l2.556,-0c0.221,0 0.433,-0.088 0.589,-0.244c0.156,-0.156 0.244,-0.368 0.244,-0.589l-0,-4.167l0.619,0c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.291,-0 -0.641,-0 -0.641,-0Z'/%3E%3C/svg%3E\") no-repeat 0px -100px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car2.car-tuning1_1{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,0l500,0l0,200l-500,0l0,-200Zm110.17,35.44l-0.69,0.21c-0.11,0.03 -0.19,0.12 -0.21,0.23c-0.08,0.45 -0.25,1.94 -0.26,6.4c0,0.25 0.06,0.46 0.18,0.67c0.29,0.48 0.93,1.34 2.08,1.74c1.64,0.58 7.15,1.11 11.69,1.11l2.19,0c1.05,1.64 2.89,2.73 4.99,2.73c1.8,0 3.42,-0.81 4.51,-2.09l1.22,0.11l38.65,0c1.08,1.21 2.66,1.98 4.41,1.98c2.14,0 4,-1.13 5.05,-2.82l0.65,0l0.22,0.84l9.93,0c0.17,0 0.3,-0.13 0.3,-0.3l0,-1.05c0,-0.13 -0.09,-0.25 -0.22,-0.28l-0.55,-0.15l0,-3.59c0,-1.1 -0.23,-2.59 -0.99,-2.59c-1.64,0 0,-3.45 -1.99,-3.45l0,-2.99c0,-0.56 -0.46,-1.01 -1.02,-1.01l-0.57,0c-0.08,-0.12 -0.18,-0.21 -0.3,-0.29c-2.73,-1.77 -19.65,-2.62 -19.65,-2.62c-2.53,-3.44 -6.72,-7.14 -6.72,-7.14l0,-0.4c0,-0.56 -0.45,-1.02 -1.01,-1.02l-36.65,0c-1.77,0 -3.3,0.69 -4.48,2.01c-3.73,4.17 -6.9,8.78 -6.9,8.78l-1.72,0.4c-0.21,0.05 -0.35,0.2 -0.47,0.37c-0.59,0.84 -1,1.74 -1.26,2.46c-0.23,0.6 -0.36,1.15 -0.41,1.75Zm-96.17,45.56l57,0l0,-3l-7,-7l-42,0l-8,10Zm10.09,-39.44c-0.06,0.34 -0.09,0.68 -0.09,1.04c-0,3.27 2.65,5.93 5.93,5.93c3.27,0 5.92,-2.66 5.92,-5.93l36.81,0l0.46,-0.49c-0.02,0.16 -0.02,0.32 -0.02,0.49c-0,3.27 2.65,5.93 5.92,5.93c3.28,0 5.93,-2.66 5.93,-5.93c0,-0.27 -0.02,-0.53 -0.05,-0.79l2.05,0.04c0.48,0.01 0.81,-0.25 0.95,-0.64l1.59,0c0.45,0 0.84,-0.28 0.97,-0.72l0.71,-2.42c0.03,-0.09 0.01,-0.19 -0.04,-0.26c-0.06,-0.08 -0.15,-0.12 -0.24,-0.12l-0.85,0l0,-1.7l0.16,0c0.15,0 0.28,-0.13 0.28,-0.28l0,-4.29c0,-0.16 -0.13,-0.28 -0.28,-0.28l-0.3,0c-0.08,-0.12 -0.18,-0.21 -0.3,-0.29c-2.73,-1.77 -19.65,-2.62 -19.65,-2.62c-2.53,-3.44 -6.72,-7.14 -6.72,-7.14l0,-0.4c0,-0.56 -0.46,-1.01 -1.01,-1.02l-36.74,-0.15c-1.77,-0.01 -3.3,0.68 -4.48,2c-3.73,4.18 -6.9,8.79 -6.9,8.79l-1.63,0.55c-0.21,0.07 -0.35,0.2 -0.47,0.37c-0.59,0.84 -1,1.74 -1.27,2.46c-0.3,0.82 -0.44,1.56 -0.44,2.44l0,1.39l-1.18,0l0.79,3.21l4.54,0l0.28,0.83l9.37,0Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car5.car-tuning2_0{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,0l500,0l0,200l-500,0l0,-200Zm92.46,33.62l0.99,0c0.44,0 0.8,0.36 0.8,0.8l-0,3.55c-0,0.43 -0.34,0.79 -0.76,0.8c-0.22,0.01 -0.38,0.19 -0.38,0.4l-0,1.6c-0,0.22 -0.18,0.4 -0.4,0.4l-0.55,0l-0,0.45c-0,0.22 -0.18,0.4 -0.4,0.4l-6.85,0c-0,3.29 -2.67,5.96 -5.97,5.96c-2.9,0 -5.31,-2.07 -5.85,-4.81l-3.85,0c-0.22,0 -0.4,-0.18 -0.4,-0.4l-0,-0.35c-0,-0.22 -0.18,-0.4 -0.4,-0.4l-33.83,0c-0.22,0 -0.4,0.18 -0.4,0.4l-0,0.35c-0,0.22 -0.18,0.4 -0.4,0.4l-3.96,0c-0.53,2.74 -2.95,4.81 -5.85,4.81c-2.9,0 -5.32,-2.07 -5.85,-4.81l-1.54,0c-0.82,0 -1.5,-0.67 -1.5,-1.5l-0,-0.5l-7.82,0c-0.82,0 -1.5,-0.67 -1.5,-1.5l-0,-0.55c-0,-0.22 0.18,-0.4 0.4,-0.4l1.14,0c0.22,0 0.4,-0.18 0.4,-0.4l-0,-0.41c-0,-0.22 -0.18,-0.4 -0.4,-0.4l-0.18,0c-0.22,0 -0.4,-0.18 -0.4,-0.39l-0,-3.03c-0,-0.22 0.18,-0.4 0.4,-0.4l0.18,0c0.22,0 0.4,-0.18 0.4,-0.4l-0,-7.22c-0,-0.22 0.18,-0.4 0.4,-0.4l26.47,0l3.2,-10.58c0.05,-0.17 0.2,-0.28 0.38,-0.28l17.2,0c1.02,0.43 2.06,1.96 2.06,1.96l15.17,8.9l15.67,3.62c1.85,0.43 3.24,1.67 3.87,3.45l0.31,0.88Zm13.4,0.99c-0,-0.52 0.43,-0.95 0.95,-0.95l0.58,-0c0.22,-0 0.4,-0.15 0.4,-0.37l-0,-7.22c-0,-0.22 0.18,-0.4 0.4,-0.4l26.47,-0l3.2,-10.58c0.05,-0.17 0.2,-0.28 0.38,-0.28l17.21,-0c1.01,0.43 2.05,1.96 2.05,1.96l15.17,8.9l15.67,3.62c1.85,0.43 3.24,1.67 3.87,3.45l0.32,0.88c0.46,0.27 1.86,0.81 1.86,2.83l0,0.4c0.64,0.18 1.11,0.77 1.11,1.46l0,4.73c0,1.11 -0.91,2.01 -2.01,2.01l-9.35,0c-1.04,1.76 -2.95,2.93 -5.13,2.93c-2.19,0 -4.1,-1.17 -5.14,-2.93l-44.67,0c-1.04,1.76 -2.95,2.93 -5.14,2.93c-2.18,0 -4.1,-1.17 -5.14,-2.93l-9.67,0c-1.87,0 -3.39,-1.52 -3.39,-3.4l0,-7.04Zm-90.53,83.13l5.95,-0c-0.24,-0.01 -0.42,-0.21 -0.42,-0.44l-0,-4.13c-0,-0.25 0.2,-0.45 0.44,-0.45l13.54,-0c0.24,-0 0.44,0.2 0.44,0.45l-0,4.13c-0,0.23 -0.19,0.43 -0.42,0.44l0.8,-0c0.29,-0 0.53,0.24 0.53,0.53l-0,1.86l0.55,-0l-0,-3.66c-0,-0.35 0.29,-0.64 0.64,-0.64l0.27,-0c0.35,-0 0.64,0.29 0.64,0.64l-0,11.61l-30.42,-0.87c-0.08,-0 -0.14,-0.06 -0.14,-0.14l-0,-1.32c-0,-0.08 0.06,-0.14 0.14,-0.14l4.95,-0l-0,-1.6c-0,-0.17 0.14,-0.31 0.32,-0.31l2.19,-0c-0.29,-0 -0.53,-0.24 -0.53,-0.53l-0,-4.9c-0,-0.29 0.24,-0.53 0.53,-0.53Zm19.95,8.53l-0,-2.57l-1.27,-0c0.17,0.01 0.3,0.14 0.3,0.31l-0,2.26l0.97,-0Zm-10.58,-8.53c0.29,-0 0.52,0.24 0.52,0.53l-0,4.9c-0,0.29 -0.23,0.53 -0.52,0.53l1.59,-0c-0.29,-0 -0.53,-0.24 -0.53,-0.53l-0,-4.9c-0,-0.29 0.24,-0.53 0.53,-0.53l-1.59,-0Z'/%3E%3C/svg%3E\") no-repeat 0px -100px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car6.car-tuning1_2{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-81.36,2.379l0,-1.232c-0,-0.103 -0.084,-0.187 -0.187,-0.187l-0.346,0c-0.103,0 -0.187,0.084 -0.187,0.187l-0,1.013l-0.24,0l-0,0.201l-0.72,-0.012l-0,-0.429l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.007l-5.04,-0.09l-0,-0.557l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.136l-2.916,-0.052c-0.124,-0.003 -0.237,0.069 -0.289,0.181c-0.136,0.305 -0.416,0.954 -0.684,1.707c-0.069,-0.126 -0.203,-0.212 -0.357,-0.212l-0.628,-0c-0.224,0 -0.406,0.182 -0.406,0.406l0,3.508c0,0.224 0.182,0.406 0.406,0.406l0.074,0l-0,0.24c-0,0 0.369,0.96 2.88,0.96c-0,1.192 0.968,2.16 2.16,2.16c1.111,0 2.027,-0.841 2.147,-1.92l10.333,0l0.013,-0.001c0.119,1.08 1.036,1.921 2.147,1.921c1.192,0 2.16,-0.968 2.16,-2.16l0.24,0c-0,0 0.609,-0.018 0.96,-0.48l-0,-2.64c0,-0.064 -0.025,-0.125 -0.07,-0.17c-0.045,-0.045 -0.106,-0.07 -0.17,-0.07c0,-0 -1.176,-0.894 -6.24,-1.2c0,0 -0.659,-1.139 -1.275,-2.136c-0.103,-0.165 -0.282,-0.266 -0.475,-0.27l-0.89,-0.015Zm17.157,7.701l1.083,0l0,0.24l8.16,0l0,-0.24l1.323,0c0.297,0.839 1.097,1.44 2.037,1.44c0.847,0 1.581,-0.489 1.935,-1.2l0.856,0c0.58,-0 1.049,-0.469 1.049,-1.049l-0,-1.351c0,-0.128 -0.051,-0.25 -0.14,-0.34c-0.09,-0.089 -0.212,-0.14 -0.34,-0.14l-0,-0l-0,-1.2c0,-0.064 -0.025,-0.125 -0.07,-0.17c-0.045,-0.045 -0.106,-0.07 -0.17,-0.07c0,-0 -1.176,-0.894 -6.24,-1.2c-0,0 -0.659,-1.139 -1.275,-2.136c-0.103,-0.165 -0.282,-0.266 -0.475,-0.27l-0.89,-0.015l-0,-1.232c-0,-0.103 -0.084,-0.187 -0.187,-0.187l-0.346,0c-0.103,0 -0.187,0.084 -0.187,0.187l-0,1.013l-0.24,0l-0,0.201l-0.72,-0.012l-0,-0.429l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.007l-5.04,-0.09l-0,-0.557l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.136l-2.916,-0.052c-0.124,-0.003 -0.237,0.069 -0.289,0.181c-0.136,0.305 -0.416,0.954 -0.684,1.707c-0.069,-0.126 -0.203,-0.212 -0.357,-0.212l-0.628,-0c-0.224,0 -0.406,0.182 -0.406,0.406l0,3.508c0,0.224 0.182,0.406 0.406,0.406l0.554,0l-0,1.461c0,0.254 0.205,0.459 0.459,0.459l2.064,-0c0.297,0.839 1.097,1.44 2.037,1.44c0.94,0 1.74,-0.601 2.037,-1.44Zm-39.477,4.56l-13.44,-0l-0,2.16l13.44,0l-0,-2.16Zm-12.72,-5.28c-0,1.192 0.968,2.16 2.16,2.16c1.111,0 2.027,-0.841 2.147,-1.92l10.333,0l0.013,-0.001c0.119,1.08 1.036,1.921 2.147,1.921c1.192,0 2.16,-0.968 2.16,-2.16l0.24,0c-0,0 0.609,-0.018 0.96,-0.48l-0,-2.64c0,-0.064 -0.025,-0.125 -0.07,-0.17c-0.045,-0.045 -0.106,-0.07 -0.17,-0.07c0,-0 -1.176,-0.894 -6.24,-1.2c-0,0 -0.659,-1.139 -1.275,-2.136c-0.103,-0.165 -0.282,-0.266 -0.475,-0.27l-2.57,-0.045l-0,-0.429l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.007l-5.04,-0.09l-0,-0.557l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.136l-2.916,-0.052c-0.124,-0.003 -0.237,0.069 -0.289,0.181c-0.136,0.305 -0.416,0.954 -0.684,1.707c-0.069,-0.126 -0.203,-0.212 -0.357,-0.212l-0.628,-0c-0.224,0 -0.406,0.182 -0.406,0.406l0,3.508c0,0.224 0.182,0.406 0.406,0.406l0.074,0l-0,0.24c-0,0 0.369,0.96 2.88,0.96Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car6.car-tuning1_3{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-81.36,2.379l0,-1.232c-0,-0.103 -0.084,-0.187 -0.187,-0.187l-0.346,0c-0.103,0 -0.187,0.084 -0.187,0.187l-0,1.013l-0.24,0l-0,0.201l-0.72,-0.012l-0,-0.429l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.007l-5.04,-0.09l-0,-0.557l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.136l-2.916,-0.052c-0.124,-0.003 -0.237,0.069 -0.289,0.181c-0.136,0.305 -0.416,0.954 -0.684,1.707c-0.069,-0.126 -0.203,-0.212 -0.357,-0.212l-0.628,-0c-0.224,0 -0.406,0.182 -0.406,0.406l0,3.508c0,0.224 0.182,0.406 0.406,0.406l0.074,0l-0,0.24c-0,0 0.369,0.96 2.88,0.96c-0,1.192 0.968,2.16 2.16,2.16c1.111,0 2.027,-0.841 2.147,-1.92l10.333,0l0.013,-0.001c0.119,1.08 1.036,1.921 2.147,1.921c1.192,0 2.16,-0.968 2.16,-2.16l0.24,0c-0,0 0.609,-0.018 0.96,-0.48l-0,-2.64c0,-0.064 -0.025,-0.125 -0.07,-0.17c-0.045,-0.045 -0.106,-0.07 -0.17,-0.07c0,-0 -1.176,-0.894 -6.24,-1.2c0,0 -0.659,-1.139 -1.275,-2.136c-0.103,-0.165 -0.282,-0.266 -0.475,-0.27l-0.89,-0.015Zm17.157,7.701l1.083,0l0,0.24l8.16,0l0,-0.24l1.323,0c0.297,0.839 1.097,1.44 2.037,1.44c0.847,0 1.581,-0.489 1.935,-1.2l0.856,0c0.58,-0 1.049,-0.469 1.049,-1.049l-0,-1.351c0,-0.128 -0.051,-0.25 -0.14,-0.34c-0.09,-0.089 -0.212,-0.14 -0.34,-0.14l-0,-0l-0,-1.2c0,-0.064 -0.025,-0.125 -0.07,-0.17c-0.045,-0.045 -0.106,-0.07 -0.17,-0.07c0,-0 -1.176,-0.894 -6.24,-1.2c-0,0 -0.659,-1.139 -1.275,-2.136c-0.103,-0.165 -0.282,-0.266 -0.475,-0.27l-0.89,-0.015l-0,-1.232c-0,-0.103 -0.084,-0.187 -0.187,-0.187l-0.346,0c-0.103,0 -0.187,0.084 -0.187,0.187l-0,1.013l-0.24,0l-0,0.201l-0.72,-0.012l-0,-0.429l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.007l-5.04,-0.09l-0,-0.557l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.136l-2.916,-0.052c-0.124,-0.003 -0.237,0.069 -0.289,0.181c-0.136,0.305 -0.416,0.954 -0.684,1.707c-0.069,-0.126 -0.203,-0.212 -0.357,-0.212l-0.628,-0c-0.224,0 -0.406,0.182 -0.406,0.406l0,3.508c0,0.224 0.182,0.406 0.406,0.406l0.554,0l-0,1.461c0,0.254 0.205,0.459 0.459,0.459l2.064,-0c0.297,0.839 1.097,1.44 2.037,1.44c0.94,0 1.74,-0.601 2.037,-1.44Zm-39.477,4.56l-13.44,-0l-0,2.16l13.44,0l-0,-2.16Zm-12.72,-5.28c-0,1.192 0.968,2.16 2.16,2.16c1.111,0 2.027,-0.841 2.147,-1.92l10.333,0l0.013,-0.001c0.119,1.08 1.036,1.921 2.147,1.921c1.192,0 2.16,-0.968 2.16,-2.16l0.24,0c-0,0 0.609,-0.018 0.96,-0.48l-0,-2.64c0,-0.064 -0.025,-0.125 -0.07,-0.17c-0.045,-0.045 -0.106,-0.07 -0.17,-0.07c0,-0 -1.176,-0.894 -6.24,-1.2c-0,0 -0.659,-1.139 -1.275,-2.136c-0.103,-0.165 -0.282,-0.266 -0.475,-0.27l-2.57,-0.045l-0,-0.429l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.007l-5.04,-0.09l-0,-0.557l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.136l-2.916,-0.052c-0.124,-0.003 -0.237,0.069 -0.289,0.181c-0.136,0.305 -0.416,0.954 -0.684,1.707c-0.069,-0.126 -0.203,-0.212 -0.357,-0.212l-0.628,-0c-0.224,0 -0.406,0.182 -0.406,0.406l0,3.508c0,0.224 0.182,0.406 0.406,0.406l0.074,0l-0,0.24c-0,0 0.369,0.96 2.88,0.96Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car8.car-tuning1_1{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-52.08,6.502l0,-0.262l-1.92,0l0,0.012c-0.299,-0.014 -0.48,-0.012 -0.48,-0.012c0,0 -3.862,-2.152 -4.8,-2.4c-0.158,-0.042 -0.318,-0.077 -0.48,-0.105l0,-0.375l-2.4,-0l0,0.24l-0.24,-0c-2.924,-0 -3.6,0.48 -3.6,0.48l-1.68,0l0,0.48c-0.263,0.096 -0.502,0.189 -0.72,0.279l0,-0.039l-0.48,-0l0,-0.24l-0.24,-0l0,-0.24l-0.24,0l0,-0.24l-0.72,0l0,0.24l-0.48,0l0,0.24l0.24,-0l0,1.378c-0.203,0.192 -0.24,0.302 -0.24,0.302l0,1.92l-0.72,0l-0,0.48c0,1.193 0.967,2.16 2.16,2.16l1.036,-0c0.283,0.296 0.682,0.48 1.124,0.48c0.305,-0 0.59,-0.088 0.831,-0.24l12.258,-0c0.241,0.152 0.526,0.24 0.831,0.24c0.305,-0 0.59,-0.088 0.831,-0.24l3.969,-0l-0,-0.299c0,-0.048 -0.019,-0.094 -0.053,-0.128c-0.034,-0.034 -0.08,-0.053 -0.128,-0.053l-0.059,-0l-0,-1.143c-0,-0.429 -0.348,-0.777 -0.777,-0.777l-0.183,0l0,-0.96c-0.713,-0.624 -1.716,-0.978 -2.64,-1.178Zm-64.318,3.819c0.234,0.563 0.79,0.959 1.438,0.959c0.565,-0 1.06,-0.301 1.333,-0.751l11.173,-0.153c0.247,0.533 0.788,0.904 1.414,0.904c0.642,-0 1.193,-0.389 1.432,-0.943l1.208,-0.017c0.628,-0 0.96,-0.48 0.96,-0.48l-0,-2.16c-1.698,-1.485 -5.04,-1.44 -5.04,-1.44c-0,-0 -3.862,-2.152 -4.8,-2.4c-0.938,-0.248 -1.92,-0.24 -3.12,-0.24c-2.924,-0 -3.6,0.48 -3.6,0.48l-1.68,-0l-0,0.48c-2.64,0.96 -2.88,1.68 -2.88,1.68l-0,1.68l-0.24,-0l0,0.96c-0,0.681 0.516,1.252 1.194,1.319l1.206,0.121l0.002,0.001Zm40.318,-3.819l-0,-0.228l-1.58,0c-0.497,-0.038 -0.82,-0.034 -0.82,-0.034c0,-0 -3.862,-2.152 -4.8,-2.4c-0.158,-0.042 -0.318,-0.077 -0.48,-0.105l-0,-0.375l-2.4,-0l-0,0.24l-0.24,-0c-2.924,-0 -3.6,0.48 -3.6,0.48l-1.68,-0l0,0.48c-0.263,0.096 -0.502,0.189 -0.72,0.279l-0,-0.039l-0.48,-0l-0,-0.24l-0.24,-0l-0,-0.24l-0.24,-0l-0,-0.24l-0.72,-0l-0,0.24l-0.48,-0l-0,0.24l0.24,-0l-0,1.378c-0.203,0.192 -0.24,0.302 -0.24,0.302l0,1.68l-0.24,-0l0,0.96c-0,0.681 0.516,1.252 1.194,1.319l1.206,0.121l0.002,0.001c0.234,0.563 0.79,0.959 1.438,0.959c0.565,-0 1.06,-0.301 1.333,-0.751l11.173,-0.153c0.247,0.533 0.788,0.904 1.414,0.904c0.642,-0 1.193,-0.389 1.432,-0.943l1.208,-0.017c0.628,-0 0.96,-0.48 0.96,-0.48l0,-2.16c-0.713,-0.624 -1.716,-0.978 -2.64,-1.178Zm-39.84,11.738c4.8,1.2 14.16,0.96 14.16,0.96c-2.566,-2.612 -5.52,-3.36 -5.52,-3.36c-0,-0 -3.784,-0.231 -5.52,-0c-1.736,0.231 -3.12,1.2 -3.12,1.2l-0,1.2Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car8.car-tuning1_2{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-52.08,6.502l0,-0.262l-1.92,0l0,0.012c-0.299,-0.014 -0.48,-0.012 -0.48,-0.012c0,0 -3.862,-2.152 -4.8,-2.4c-0.158,-0.042 -0.318,-0.077 -0.48,-0.105l0,-0.375l-2.4,-0l0,0.24l-0.24,-0c-2.924,-0 -3.6,0.48 -3.6,0.48l-1.68,0l0,0.48c-0.263,0.096 -0.502,0.189 -0.72,0.279l0,-0.039l-0.48,-0l0,-0.24l-0.24,-0l0,-0.24l-0.24,0l0,-0.24l-0.72,0l0,0.24l-0.48,0l0,0.24l0.24,-0l0,1.378c-0.203,0.192 -0.24,0.302 -0.24,0.302l0,1.92l-0.72,0l-0,0.48c0,1.193 0.967,2.16 2.16,2.16l1.036,-0c0.283,0.296 0.682,0.48 1.124,0.48c0.305,-0 0.59,-0.088 0.831,-0.24l12.258,-0c0.241,0.152 0.526,0.24 0.831,0.24c0.305,-0 0.59,-0.088 0.831,-0.24l3.969,-0l-0,-0.299c0,-0.048 -0.019,-0.094 -0.053,-0.128c-0.034,-0.034 -0.08,-0.053 -0.128,-0.053l-0.059,-0l-0,-1.143c-0,-0.429 -0.348,-0.777 -0.777,-0.777l-0.183,0l0,-0.96c-0.713,-0.624 -1.716,-0.978 -2.64,-1.178Zm-64.318,3.819c0.234,0.563 0.79,0.959 1.438,0.959c0.565,-0 1.06,-0.301 1.333,-0.751l11.173,-0.153c0.247,0.533 0.788,0.904 1.414,0.904c0.642,-0 1.193,-0.389 1.432,-0.943l1.208,-0.017c0.628,-0 0.96,-0.48 0.96,-0.48l-0,-2.16c-1.698,-1.485 -5.04,-1.44 -5.04,-1.44c-0,-0 -3.862,-2.152 -4.8,-2.4c-0.938,-0.248 -1.92,-0.24 -3.12,-0.24c-2.924,-0 -3.6,0.48 -3.6,0.48l-1.68,-0l-0,0.48c-2.64,0.96 -2.88,1.68 -2.88,1.68l-0,1.68l-0.24,-0l0,0.96c-0,0.681 0.516,1.252 1.194,1.319l1.206,0.121l0.002,0.001Zm40.318,-3.819l-0,-0.228l-1.58,0c-0.497,-0.038 -0.82,-0.034 -0.82,-0.034c0,-0 -3.862,-2.152 -4.8,-2.4c-0.158,-0.042 -0.318,-0.077 -0.48,-0.105l-0,-0.375l-2.4,-0l-0,0.24l-0.24,-0c-2.924,-0 -3.6,0.48 -3.6,0.48l-1.68,-0l0,0.48c-0.263,0.096 -0.502,0.189 -0.72,0.279l-0,-0.039l-0.48,-0l-0,-0.24l-0.24,-0l-0,-0.24l-0.24,-0l-0,-0.24l-0.72,-0l-0,0.24l-0.48,-0l-0,0.24l0.24,-0l-0,1.378c-0.203,0.192 -0.24,0.302 -0.24,0.302l0,1.68l-0.24,-0l0,0.96c-0,0.681 0.516,1.252 1.194,1.319l1.206,0.121l0.002,0.001c0.234,0.563 0.79,0.959 1.438,0.959c0.565,-0 1.06,-0.301 1.333,-0.751l11.173,-0.153c0.247,0.533 0.788,0.904 1.414,0.904c0.642,-0 1.193,-0.389 1.432,-0.943l1.208,-0.017c0.628,-0 0.96,-0.48 0.96,-0.48l0,-2.16c-0.713,-0.624 -1.716,-0.978 -2.64,-1.178Zm-39.84,11.738c4.8,1.2 14.16,0.96 14.16,0.96c-2.566,-2.612 -5.52,-3.36 -5.52,-3.36c-0,-0 -3.784,-0.231 -5.52,-0c-1.736,0.231 -3.12,1.2 -3.12,1.2l-0,1.2Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car8.car-tuning1_3{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-52.08,6.502l0,-0.262l-1.92,0l0,0.012c-0.299,-0.014 -0.48,-0.012 -0.48,-0.012c0,0 -3.862,-2.152 -4.8,-2.4c-0.158,-0.042 -0.318,-0.077 -0.48,-0.105l0,-0.375l-2.4,-0l0,0.24l-0.24,-0c-2.924,-0 -3.6,0.48 -3.6,0.48l-1.68,0l0,0.48c-0.263,0.096 -0.502,0.189 -0.72,0.279l0,-0.039l-0.48,-0l0,-0.24l-0.24,-0l0,-0.24l-0.24,0l0,-0.24l-0.72,0l0,0.24l-0.48,0l0,0.24l0.24,-0l0,1.378c-0.203,0.192 -0.24,0.302 -0.24,0.302l0,1.92l-0.72,0l-0,0.48c0,1.193 0.967,2.16 2.16,2.16l1.036,-0c0.283,0.296 0.682,0.48 1.124,0.48c0.305,-0 0.59,-0.088 0.831,-0.24l12.258,-0c0.241,0.152 0.526,0.24 0.831,0.24c0.305,-0 0.59,-0.088 0.831,-0.24l3.969,-0l-0,-0.299c0,-0.048 -0.019,-0.094 -0.053,-0.128c-0.034,-0.034 -0.08,-0.053 -0.128,-0.053l-0.059,-0l-0,-1.143c-0,-0.429 -0.348,-0.777 -0.777,-0.777l-0.183,0l0,-0.96c-0.713,-0.624 -1.716,-0.978 -2.64,-1.178Zm-64.318,3.819c0.234,0.563 0.79,0.959 1.438,0.959c0.565,-0 1.06,-0.301 1.333,-0.751l11.173,-0.153c0.247,0.533 0.788,0.904 1.414,0.904c0.642,-0 1.193,-0.389 1.432,-0.943l1.208,-0.017c0.628,-0 0.96,-0.48 0.96,-0.48l-0,-2.16c-1.698,-1.485 -5.04,-1.44 -5.04,-1.44c-0,-0 -3.862,-2.152 -4.8,-2.4c-0.938,-0.248 -1.92,-0.24 -3.12,-0.24c-2.924,-0 -3.6,0.48 -3.6,0.48l-1.68,-0l-0,0.48c-2.64,0.96 -2.88,1.68 -2.88,1.68l-0,1.68l-0.24,-0l0,0.96c-0,0.681 0.516,1.252 1.194,1.319l1.206,0.121l0.002,0.001Zm40.318,-3.819l-0,-0.228l-1.58,0c-0.497,-0.038 -0.82,-0.034 -0.82,-0.034c0,-0 -3.862,-2.152 -4.8,-2.4c-0.158,-0.042 -0.318,-0.077 -0.48,-0.105l-0,-0.375l-2.4,-0l-0,0.24l-0.24,-0c-2.924,-0 -3.6,0.48 -3.6,0.48l-1.68,-0l0,0.48c-0.263,0.096 -0.502,0.189 -0.72,0.279l-0,-0.039l-0.48,-0l-0,-0.24l-0.24,-0l-0,-0.24l-0.24,-0l-0,-0.24l-0.72,-0l-0,0.24l-0.48,-0l-0,0.24l0.24,-0l-0,1.378c-0.203,0.192 -0.24,0.302 -0.24,0.302l0,1.68l-0.24,-0l0,0.96c-0,0.681 0.516,1.252 1.194,1.319l1.206,0.121l0.002,0.001c0.234,0.563 0.79,0.959 1.438,0.959c0.565,-0 1.06,-0.301 1.333,-0.751l11.173,-0.153c0.247,0.533 0.788,0.904 1.414,0.904c0.642,-0 1.193,-0.389 1.432,-0.943l1.208,-0.017c0.628,-0 0.96,-0.48 0.96,-0.48l0,-2.16c-0.713,-0.624 -1.716,-0.978 -2.64,-1.178Zm-39.84,11.738c4.8,1.2 14.16,0.96 14.16,0.96c-2.566,-2.612 -5.52,-3.36 -5.52,-3.36c-0,-0 -3.784,-0.231 -5.52,-0c-1.736,0.231 -3.12,1.2 -3.12,1.2l-0,1.2Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car11.car-tuning2_0{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l-0,48l-120,0l0,-48l120,0Zm-77.28,6.67l0,-0.19l-1.68,0c0,0 -1.882,-1.459 -4.164,-2.213c-0.361,-0.116 -0.737,-0.176 -1.116,-0.18l0,-0.247l-0.24,0l0,-0.18c0,-0.033 -0.027,-0.06 -0.06,-0.06l-0.12,0c-0.033,0 -0.06,0.027 -0.06,0.06l0,0.18l-2.88,0l0,0.24l-0.135,0c-0.419,-0 -0.836,0.07 -1.232,0.208c-0.823,0.286 -2.277,0.864 -3.433,1.712l-0.48,0l0,-0.24l0.12,0c0.066,0 0.12,-0.054 0.12,-0.12l0,-0.24c0,-0.066 -0.054,-0.12 -0.12,-0.12l-1.44,0c-0.066,0 -0.12,0.054 -0.12,0.12l0,0.24c0,0.066 0.054,0.12 0.12,0.12l0.36,0l0,0.24l-0.301,0c-0.047,-0 -0.093,0.019 -0.127,0.052c-0.033,0.034 -0.052,0.08 -0.052,0.127l0,1.741l-0.076,0c-0.107,-0 -0.21,0.043 -0.286,0.118c-0.075,0.076 -0.118,0.179 -0.118,0.286c0,0 0,0.769 0.001,1.113c-0,0.099 0.055,0.189 0.142,0.235c0.284,0.135 0.975,0.428 1.949,0.608c0.148,0.027 0.298,0.04 0.448,0.04l0.346,0c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l10.332,0c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l2.046,0c0.095,0 0.187,-0.038 0.254,-0.106c0.068,-0.067 0.106,-0.159 0.106,-0.254l0,-0.656c-0,-0.049 0.019,-0.096 0.054,-0.13c0.034,-0.035 0.081,-0.054 0.13,-0.054l0.056,0l0,-0.999c0,-0.144 -0.063,-0.282 -0.173,-0.376c-0.349,-0.244 -1.316,-0.718 -3.907,-1.075Zm-38.634,3.65c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l10.332,0c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l2.046,0c0.095,0 0.187,-0.038 0.254,-0.106c0.068,-0.067 0.106,-0.159 0.106,-0.254l-0,-0.656c-0,-0.049 0.019,-0.096 0.054,-0.13c0.034,-0.035 0.081,-0.054 0.13,-0.054l0.056,0l-0,-0.999c0,-0.144 -0.063,-0.282 -0.173,-0.376c-0.416,-0.29 -1.71,-0.909 -5.587,-1.265c-0,0 -1.882,-1.459 -4.164,-2.213c-0.371,-0.119 -0.759,-0.18 -1.149,-0.18c-0.854,-0.007 -2.562,-0.007 -3.462,-0.007c-0.419,-0 -0.836,0.07 -1.232,0.208c-0.823,0.286 -2.277,0.864 -3.433,1.712l-1.741,0c-0.047,-0 -0.093,0.019 -0.127,0.052c-0.033,0.034 -0.052,0.08 -0.052,0.127l-0,1.741l-0.076,0c-0.107,-0 -0.21,0.043 -0.286,0.118c-0.075,0.076 -0.118,0.179 -0.118,0.286c-0,0 -0,0.769 0.001,1.113c-0,0.099 0.055,0.189 0.142,0.235c0.284,0.135 0.975,0.428 1.949,0.608c0.148,0.027 0.298,0.04 0.448,0.04l0.346,0Zm67.194,0.72c0.199,0 0.36,-0.161 0.36,-0.36c-0,-0.199 -0.161,-0.36 -0.36,-0.36l0,-0.72c-0,-0.265 -0.215,-0.48 -0.48,-0.48l-0,-0.999c0,-0.144 -0.063,-0.282 -0.173,-0.376c-0.289,-0.202 -1.001,-0.561 -2.707,-0.882l-0,-0.383l-2.4,0l0,0.047c-0.155,-0.016 -0.315,-0.032 -0.48,-0.047c-0,0 -1.882,-1.459 -4.164,-2.213c-0.361,-0.116 -0.737,-0.176 -1.116,-0.18l-0,-0.247l-0.24,0l-0,-0.18c-0,-0.033 -0.027,-0.06 -0.06,-0.06l-0.12,0c-0.033,0 -0.06,0.027 -0.06,0.06l-0,0.18l-2.88,0l-0,0.24l-0.135,0c-0.419,-0 -0.836,0.07 -1.232,0.208c-0.823,0.286 -2.277,0.864 -3.433,1.712l-0.48,0l-0,-0.24l0.12,0c0.066,0 0.12,-0.054 0.12,-0.12l-0,-0.24c-0,-0.066 -0.054,-0.12 -0.12,-0.12l-1.44,0c-0.066,0 -0.12,0.054 -0.12,0.12l-0,0.24c-0,0.066 0.054,0.12 0.12,0.12l0.36,0l-0,0.24l-0.301,0c-0.047,-0 -0.093,0.019 -0.127,0.052c-0.033,0.034 -0.052,0.08 -0.052,0.127l-0,1.741l-0.125,-0c-0.461,0 -0.835,0.374 -0.835,0.835c-0,0 -0,0.841 0.001,1.29c0,0.162 0.102,0.308 0.256,0.362c0.342,0.105 1.02,0.28 2.002,0.383c0.06,0.007 0.12,0.01 0.181,0.01l1.239,0c0.282,0.296 0.68,0.48 1.121,0.48c0.647,0 1.202,-0.397 1.434,-0.96l10.332,0c0.232,0.563 0.787,0.96 1.434,0.96c0.305,0 0.589,-0.088 0.829,-0.24l3.731,0Zm-49.92,23.76l-18.48,0c-0.17,0 -0.48,0.138 -0.48,0.307l0,0.106c0,0.169 0.31,0.307 0.48,0.307l18.48,0c0.17,-0 0.48,-0.138 0.48,-0.307l-0,-0.106c-0,-0.169 -0.31,-0.307 -0.48,-0.307Z'/%3E%3C/svg%3E\") no-repeat 0px -100px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car11.car-tuning2_1{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l-0,48l-120,0l0,-48l120,0Zm-77.28,6.67l0,-0.19l-1.68,0c0,0 -1.882,-1.459 -4.164,-2.213c-0.361,-0.116 -0.737,-0.176 -1.116,-0.18l0,-0.247l-0.24,0l0,-0.18c0,-0.033 -0.027,-0.06 -0.06,-0.06l-0.12,0c-0.033,0 -0.06,0.027 -0.06,0.06l0,0.18l-2.88,0l0,0.24l-0.135,0c-0.419,-0 -0.836,0.07 -1.232,0.208c-0.823,0.286 -2.277,0.864 -3.433,1.712l-0.48,0l0,-0.24l0.12,0c0.066,0 0.12,-0.054 0.12,-0.12l0,-0.24c0,-0.066 -0.054,-0.12 -0.12,-0.12l-1.44,0c-0.066,0 -0.12,0.054 -0.12,0.12l0,0.24c0,0.066 0.054,0.12 0.12,0.12l0.36,0l0,0.24l-0.301,0c-0.047,-0 -0.093,0.019 -0.127,0.052c-0.033,0.034 -0.052,0.08 -0.052,0.127l0,1.741l-0.076,0c-0.107,-0 -0.21,0.043 -0.286,0.118c-0.075,0.076 -0.118,0.179 -0.118,0.286c0,0 0,0.769 0.001,1.113c-0,0.099 0.055,0.189 0.142,0.235c0.284,0.135 0.975,0.428 1.949,0.608c0.148,0.027 0.298,0.04 0.448,0.04l0.346,0c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l10.332,0c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l2.046,0c0.095,0 0.187,-0.038 0.254,-0.106c0.068,-0.067 0.106,-0.159 0.106,-0.254l0,-0.656c-0,-0.049 0.019,-0.096 0.054,-0.13c0.034,-0.035 0.081,-0.054 0.13,-0.054l0.056,0l0,-0.999c0,-0.144 -0.063,-0.282 -0.173,-0.376c-0.349,-0.244 -1.316,-0.718 -3.907,-1.075Zm-38.634,3.65c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l10.332,0c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l2.046,0c0.095,0 0.187,-0.038 0.254,-0.106c0.068,-0.067 0.106,-0.159 0.106,-0.254l-0,-0.656c-0,-0.049 0.019,-0.096 0.054,-0.13c0.034,-0.035 0.081,-0.054 0.13,-0.054l0.056,0l-0,-0.999c0,-0.144 -0.063,-0.282 -0.173,-0.376c-0.416,-0.29 -1.71,-0.909 -5.587,-1.265c-0,0 -1.882,-1.459 -4.164,-2.213c-0.371,-0.119 -0.759,-0.18 -1.149,-0.18c-0.854,-0.007 -2.562,-0.007 -3.462,-0.007c-0.419,-0 -0.836,0.07 -1.232,0.208c-0.823,0.286 -2.277,0.864 -3.433,1.712l-1.741,0c-0.047,-0 -0.093,0.019 -0.127,0.052c-0.033,0.034 -0.052,0.08 -0.052,0.127l-0,1.741l-0.076,0c-0.107,-0 -0.21,0.043 -0.286,0.118c-0.075,0.076 -0.118,0.179 -0.118,0.286c-0,0 -0,0.769 0.001,1.113c-0,0.099 0.055,0.189 0.142,0.235c0.284,0.135 0.975,0.428 1.949,0.608c0.148,0.027 0.298,0.04 0.448,0.04l0.346,0Zm67.194,0.72c0.199,0 0.36,-0.161 0.36,-0.36c-0,-0.199 -0.161,-0.36 -0.36,-0.36l0,-0.72c-0,-0.265 -0.215,-0.48 -0.48,-0.48l-0,-0.999c0,-0.144 -0.063,-0.282 -0.173,-0.376c-0.289,-0.202 -1.001,-0.561 -2.707,-0.882l-0,-0.383l-2.4,0l0,0.047c-0.155,-0.016 -0.315,-0.032 -0.48,-0.047c-0,0 -1.882,-1.459 -4.164,-2.213c-0.361,-0.116 -0.737,-0.176 -1.116,-0.18l-0,-0.247l-0.24,0l-0,-0.18c-0,-0.033 -0.027,-0.06 -0.06,-0.06l-0.12,0c-0.033,0 -0.06,0.027 -0.06,0.06l-0,0.18l-2.88,0l-0,0.24l-0.135,0c-0.419,-0 -0.836,0.07 -1.232,0.208c-0.823,0.286 -2.277,0.864 -3.433,1.712l-0.48,0l-0,-0.24l0.12,0c0.066,0 0.12,-0.054 0.12,-0.12l-0,-0.24c-0,-0.066 -0.054,-0.12 -0.12,-0.12l-1.44,0c-0.066,0 -0.12,0.054 -0.12,0.12l-0,0.24c-0,0.066 0.054,0.12 0.12,0.12l0.36,0l-0,0.24l-0.301,0c-0.047,-0 -0.093,0.019 -0.127,0.052c-0.033,0.034 -0.052,0.08 -0.052,0.127l-0,1.741l-0.125,-0c-0.461,0 -0.835,0.374 -0.835,0.835c-0,0 -0,0.841 0.001,1.29c0,0.162 0.102,0.308 0.256,0.362c0.342,0.105 1.02,0.28 2.002,0.383c0.06,0.007 0.12,0.01 0.181,0.01l1.239,0c0.282,0.296 0.68,0.48 1.121,0.48c0.647,0 1.202,-0.397 1.434,-0.96l10.332,0c0.232,0.563 0.787,0.96 1.434,0.96c0.305,0 0.589,-0.088 0.829,-0.24l3.731,0Zm-49.92,23.76l-18.48,0c-0.17,0 -0.48,0.138 -0.48,0.307l0,0.106c0,0.169 0.31,0.307 0.48,0.307l18.48,0c0.17,-0 0.48,-0.138 0.48,-0.307l-0,-0.106c-0,-0.169 -0.31,-0.307 -0.48,-0.307Z'/%3E%3C/svg%3E\") no-repeat 0px -100px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car11.car-tuning2_2{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l-0,48l-120,0l0,-48l120,0Zm-77.28,6.67l0,-0.19l-1.68,0c0,0 -1.882,-1.459 -4.164,-2.213c-0.361,-0.116 -0.737,-0.176 -1.116,-0.18l0,-0.247l-0.24,0l0,-0.18c0,-0.033 -0.027,-0.06 -0.06,-0.06l-0.12,0c-0.033,0 -0.06,0.027 -0.06,0.06l0,0.18l-2.88,0l0,0.24l-0.135,0c-0.419,-0 -0.836,0.07 -1.232,0.208c-0.823,0.286 -2.277,0.864 -3.433,1.712l-0.48,0l0,-0.24l0.12,0c0.066,0 0.12,-0.054 0.12,-0.12l0,-0.24c0,-0.066 -0.054,-0.12 -0.12,-0.12l-1.44,0c-0.066,0 -0.12,0.054 -0.12,0.12l0,0.24c0,0.066 0.054,0.12 0.12,0.12l0.36,0l0,0.24l-0.301,0c-0.047,-0 -0.093,0.019 -0.127,0.052c-0.033,0.034 -0.052,0.08 -0.052,0.127l0,1.741l-0.076,0c-0.107,-0 -0.21,0.043 -0.286,0.118c-0.075,0.076 -0.118,0.179 -0.118,0.286c0,0 0,0.769 0.001,1.113c-0,0.099 0.055,0.189 0.142,0.235c0.284,0.135 0.975,0.428 1.949,0.608c0.148,0.027 0.298,0.04 0.448,0.04l0.346,0c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l10.332,0c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l2.046,0c0.095,0 0.187,-0.038 0.254,-0.106c0.068,-0.067 0.106,-0.159 0.106,-0.254l0,-0.656c-0,-0.049 0.019,-0.096 0.054,-0.13c0.034,-0.035 0.081,-0.054 0.13,-0.054l0.056,0l0,-0.999c0,-0.144 -0.063,-0.282 -0.173,-0.376c-0.349,-0.244 -1.316,-0.718 -3.907,-1.075Zm-38.634,3.65c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l10.332,0c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l2.046,0c0.095,0 0.187,-0.038 0.254,-0.106c0.068,-0.067 0.106,-0.159 0.106,-0.254l-0,-0.656c-0,-0.049 0.019,-0.096 0.054,-0.13c0.034,-0.035 0.081,-0.054 0.13,-0.054l0.056,0l-0,-0.999c0,-0.144 -0.063,-0.282 -0.173,-0.376c-0.416,-0.29 -1.71,-0.909 -5.587,-1.265c-0,0 -1.882,-1.459 -4.164,-2.213c-0.371,-0.119 -0.759,-0.18 -1.149,-0.18c-0.854,-0.007 -2.562,-0.007 -3.462,-0.007c-0.419,-0 -0.836,0.07 -1.232,0.208c-0.823,0.286 -2.277,0.864 -3.433,1.712l-1.741,0c-0.047,-0 -0.093,0.019 -0.127,0.052c-0.033,0.034 -0.052,0.08 -0.052,0.127l-0,1.741l-0.076,0c-0.107,-0 -0.21,0.043 -0.286,0.118c-0.075,0.076 -0.118,0.179 -0.118,0.286c-0,0 -0,0.769 0.001,1.113c-0,0.099 0.055,0.189 0.142,0.235c0.284,0.135 0.975,0.428 1.949,0.608c0.148,0.027 0.298,0.04 0.448,0.04l0.346,0Zm67.194,0.72c0.199,0 0.36,-0.161 0.36,-0.36c-0,-0.199 -0.161,-0.36 -0.36,-0.36l0,-0.72c-0,-0.265 -0.215,-0.48 -0.48,-0.48l-0,-0.999c0,-0.144 -0.063,-0.282 -0.173,-0.376c-0.289,-0.202 -1.001,-0.561 -2.707,-0.882l-0,-0.383l-2.4,0l0,0.047c-0.155,-0.016 -0.315,-0.032 -0.48,-0.047c-0,0 -1.882,-1.459 -4.164,-2.213c-0.361,-0.116 -0.737,-0.176 -1.116,-0.18l-0,-0.247l-0.24,0l-0,-0.18c-0,-0.033 -0.027,-0.06 -0.06,-0.06l-0.12,0c-0.033,0 -0.06,0.027 -0.06,0.06l-0,0.18l-2.88,0l-0,0.24l-0.135,0c-0.419,-0 -0.836,0.07 -1.232,0.208c-0.823,0.286 -2.277,0.864 -3.433,1.712l-0.48,0l-0,-0.24l0.12,0c0.066,0 0.12,-0.054 0.12,-0.12l-0,-0.24c-0,-0.066 -0.054,-0.12 -0.12,-0.12l-1.44,0c-0.066,0 -0.12,0.054 -0.12,0.12l-0,0.24c-0,0.066 0.054,0.12 0.12,0.12l0.36,0l-0,0.24l-0.301,0c-0.047,-0 -0.093,0.019 -0.127,0.052c-0.033,0.034 -0.052,0.08 -0.052,0.127l-0,1.741l-0.125,-0c-0.461,0 -0.835,0.374 -0.835,0.835c-0,0 -0,0.841 0.001,1.29c0,0.162 0.102,0.308 0.256,0.362c0.342,0.105 1.02,0.28 2.002,0.383c0.06,0.007 0.12,0.01 0.181,0.01l1.239,0c0.282,0.296 0.68,0.48 1.121,0.48c0.647,0 1.202,-0.397 1.434,-0.96l10.332,0c0.232,0.563 0.787,0.96 1.434,0.96c0.305,0 0.589,-0.088 0.829,-0.24l3.731,0Zm-49.92,23.76l-18.48,0c-0.17,0 -0.48,0.138 -0.48,0.307l0,0.106c0,0.169 0.31,0.307 0.48,0.307l18.48,0c0.17,-0 0.48,-0.138 0.48,-0.307l-0,-0.106c-0,-0.169 -0.31,-0.307 -0.48,-0.307Z'/%3E%3C/svg%3E\") no-repeat 0px -100px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car16.car-tuning1_2{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-102.768,10.8c0.284,0.296 0.684,0.48 1.127,0.48c0.442,-0 0.842,-0.184 1.126,-0.48l2.929,-0c0.038,0 0.076,-0.015 0.103,-0.043c0.028,-0.027 0.043,-0.065 0.043,-0.103l0,-1.294c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0.262,-0.262c-0.14,-0.14 -0.329,-0.218 -0.526,-0.218l-0.412,0c-0.807,-0.52 -1.805,-0.955 -2.212,-1.125c-0.123,-0.05 -0.254,-0.075 -0.385,-0.075l-0.763,-0c-2.092,-0.995 -4.197,-1.332 -4.841,-1.417c-0.125,-0.016 -0.251,-0.023 -0.377,-0.023l-2.702,-0l0,-0.24c0,-0 -0.098,-0 -0.222,0.001c-0.348,0 -0.695,0.023 -1.039,0.068c-3.586,0.466 -5.818,0.903 -6.592,1.065c-0.18,0.04 -0.307,0.199 -0.307,0.382l-0,0.404l-0.002,0c-0.132,0 -0.238,0.106 -0.238,0.238l-0,0.484c0,0.132 0.106,0.238 0.238,0.238l0.242,0l-0,0.24l-0.72,0c0,0.795 0.645,1.44 1.44,1.44l1.2,0l0.137,0.025c0.242,0.547 0.789,0.928 1.424,0.928c0.439,0 0.835,-0.181 1.118,-0.473l10.713,-0Zm54.768,0.24l0,-0.137c-0,-0.057 -0.046,-0.103 -0.103,-0.103l-0.137,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0,-0.394c0,-0.15 -0.06,-0.294 -0.166,-0.4c-0.106,-0.106 -0.25,-0.166 -0.4,-0.166l-0.154,0c-0.132,0 -0.24,-0.108 -0.24,-0.24c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0.262,-0.262c-0.14,-0.14 -0.329,-0.218 -0.526,-0.218l-0.412,0c-0.807,-0.52 -1.805,-0.955 -2.212,-1.125c-0.123,-0.05 -0.254,-0.075 -0.385,-0.075l-0.763,0c-2.092,-0.995 -4.197,-1.332 -4.841,-1.417c-0.125,-0.016 -0.251,-0.023 -0.377,-0.023l-2.702,0l-0,-0.24c-0,0 -0.098,0 -0.222,0.001c-0.348,0 -0.695,0.023 -1.039,0.068c-2.311,0.301 -4.06,0.589 -5.219,0.799l-0,-0.294c-0,-0.184 -0.15,-0.334 -0.334,-0.334l-1.586,0l-0,0.48l0.72,-0l-0,0.378l-0.173,0.036c-0.18,0.04 -0.307,0.199 -0.307,0.382l-0,0.404l-0.002,0c-0.132,0 -0.238,0.106 -0.238,0.238l-0,0.484c0,0.132 0.106,0.238 0.238,0.238l0.242,0l-0,0.24l-0.679,0c-0.023,0 -0.041,0.018 -0.041,0.041c0,0.498 0.198,0.976 0.55,1.329c0.353,0.352 0.831,0.55 1.329,0.55l1.205,-0c0.283,0.292 0.679,0.473 1.117,0.473c0.301,0 0.582,-0.085 0.82,-0.233l11.305,-0c0.241,0.152 0.527,0.24 0.833,0.24c0.305,-0 0.591,-0.088 0.832,-0.24l4.809,-0Zm-64.56,8.88l9.12,0.96c1.92,-0.24 2.88,-1.44 2.88,-1.44c-3.36,-2.16 -7.92,-2.16 -9.84,-1.92c-1.506,0.188 -2.16,2.4 -2.16,2.4Zm19.92,-13.292l-0,-0.294c-0,-0.184 -0.15,-0.334 -0.334,-0.334l-1.586,-0l0,0.48l0.72,-0l0,0.378l-0.173,0.036c-0.18,0.04 -0.307,0.199 -0.307,0.382l-0,0.404l-0.002,0c-0.132,0 -0.238,0.106 -0.238,0.238l-0,0.484c0,0.132 0.106,0.238 0.238,0.238l0.242,0l-0,0.24l-0.72,0c0,0.795 0.645,1.44 1.44,1.44l1.2,0l0.137,0.025c0.242,0.547 0.789,0.928 1.424,0.928c0.439,0 0.835,-0.181 1.118,-0.473l10.713,-0c0.284,0.296 0.684,0.48 1.127,0.48c0.442,-0 0.842,-0.184 1.126,-0.48l2.929,-0c0.038,0 0.076,-0.015 0.103,-0.043c0.028,-0.027 0.043,-0.065 0.043,-0.103l0,-1.294c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0.262,-0.262c-0.14,-0.14 -0.329,-0.218 -0.526,-0.218l-0.412,0c-0.807,-0.52 -1.805,-0.955 -2.212,-1.125c-0.123,-0.05 -0.254,-0.075 -0.385,-0.075l-0.763,-0c-2.092,-0.995 -4.197,-1.332 -4.841,-1.417c-0.125,-0.016 -0.251,-0.023 -0.377,-0.023l-2.702,-0l-0,-0.24c-0,-0 -0.098,-0 -0.222,0.001c-0.348,0 -0.695,0.023 -1.039,0.068c-2.311,0.301 -4.06,0.589 -5.219,0.799Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car16.car-tuning1_3{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-102.768,10.8c0.284,0.296 0.684,0.48 1.127,0.48c0.442,-0 0.842,-0.184 1.126,-0.48l2.929,-0c0.038,0 0.076,-0.015 0.103,-0.043c0.028,-0.027 0.043,-0.065 0.043,-0.103l0,-1.294c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0.262,-0.262c-0.14,-0.14 -0.329,-0.218 -0.526,-0.218l-0.412,0c-0.807,-0.52 -1.805,-0.955 -2.212,-1.125c-0.123,-0.05 -0.254,-0.075 -0.385,-0.075l-0.763,-0c-2.092,-0.995 -4.197,-1.332 -4.841,-1.417c-0.125,-0.016 -0.251,-0.023 -0.377,-0.023l-2.702,-0l0,-0.24c0,-0 -0.098,-0 -0.222,0.001c-0.348,0 -0.695,0.023 -1.039,0.068c-3.586,0.466 -5.818,0.903 -6.592,1.065c-0.18,0.04 -0.307,0.199 -0.307,0.382l-0,0.404l-0.002,0c-0.132,0 -0.238,0.106 -0.238,0.238l-0,0.484c0,0.132 0.106,0.238 0.238,0.238l0.242,0l-0,0.24l-0.72,0c0,0.795 0.645,1.44 1.44,1.44l1.2,0l0.137,0.025c0.242,0.547 0.789,0.928 1.424,0.928c0.439,0 0.835,-0.181 1.118,-0.473l10.713,-0Zm54.768,0.24l0,-0.137c-0,-0.057 -0.046,-0.103 -0.103,-0.103l-0.137,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0,-0.394c0,-0.15 -0.06,-0.294 -0.166,-0.4c-0.106,-0.106 -0.25,-0.166 -0.4,-0.166l-0.154,0c-0.132,0 -0.24,-0.108 -0.24,-0.24c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0.262,-0.262c-0.14,-0.14 -0.329,-0.218 -0.526,-0.218l-0.412,0c-0.807,-0.52 -1.805,-0.955 -2.212,-1.125c-0.123,-0.05 -0.254,-0.075 -0.385,-0.075l-0.763,0c-2.092,-0.995 -4.197,-1.332 -4.841,-1.417c-0.125,-0.016 -0.251,-0.023 -0.377,-0.023l-2.702,0l-0,-0.24c-0,0 -0.098,0 -0.222,0.001c-0.348,0 -0.695,0.023 -1.039,0.068c-2.311,0.301 -4.06,0.589 -5.219,0.799l-0,-0.294c-0,-0.184 -0.15,-0.334 -0.334,-0.334l-1.586,0l-0,0.48l0.72,-0l-0,0.378l-0.173,0.036c-0.18,0.04 -0.307,0.199 -0.307,0.382l-0,0.404l-0.002,0c-0.132,0 -0.238,0.106 -0.238,0.238l-0,0.484c0,0.132 0.106,0.238 0.238,0.238l0.242,0l-0,0.24l-0.679,0c-0.023,0 -0.041,0.018 -0.041,0.041c0,0.498 0.198,0.976 0.55,1.329c0.353,0.352 0.831,0.55 1.329,0.55l1.205,-0c0.283,0.292 0.679,0.473 1.117,0.473c0.301,0 0.582,-0.085 0.82,-0.233l11.305,-0c0.241,0.152 0.527,0.24 0.833,0.24c0.305,-0 0.591,-0.088 0.832,-0.24l4.809,-0Zm-64.56,8.88l9.12,0.96c1.92,-0.24 2.88,-1.44 2.88,-1.44c-3.36,-2.16 -7.92,-2.16 -9.84,-1.92c-1.506,0.188 -2.16,2.4 -2.16,2.4Zm19.92,-13.292l-0,-0.294c-0,-0.184 -0.15,-0.334 -0.334,-0.334l-1.586,-0l0,0.48l0.72,-0l0,0.378l-0.173,0.036c-0.18,0.04 -0.307,0.199 -0.307,0.382l-0,0.404l-0.002,0c-0.132,0 -0.238,0.106 -0.238,0.238l-0,0.484c0,0.132 0.106,0.238 0.238,0.238l0.242,0l-0,0.24l-0.72,0c0,0.795 0.645,1.44 1.44,1.44l1.2,0l0.137,0.025c0.242,0.547 0.789,0.928 1.424,0.928c0.439,0 0.835,-0.181 1.118,-0.473l10.713,-0c0.284,0.296 0.684,0.48 1.127,0.48c0.442,-0 0.842,-0.184 1.126,-0.48l2.929,-0c0.038,0 0.076,-0.015 0.103,-0.043c0.028,-0.027 0.043,-0.065 0.043,-0.103l0,-1.294c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0.262,-0.262c-0.14,-0.14 -0.329,-0.218 -0.526,-0.218l-0.412,0c-0.807,-0.52 -1.805,-0.955 -2.212,-1.125c-0.123,-0.05 -0.254,-0.075 -0.385,-0.075l-0.763,-0c-2.092,-0.995 -4.197,-1.332 -4.841,-1.417c-0.125,-0.016 -0.251,-0.023 -0.377,-0.023l-2.702,-0l-0,-0.24c-0,-0 -0.098,-0 -0.222,0.001c-0.348,0 -0.695,0.023 -1.039,0.068c-2.311,0.301 -4.06,0.589 -5.219,0.799Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car17.car-tuning1_0{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,6.346l0,-6.346l120,0l0,48l-120,0l0,-41.626c-0,0.028 0.011,0.055 0.031,0.075c0.02,0.02 0.047,0.031 0.075,0.031l0.134,0l-0,0.508c-0,0.056 0.022,0.11 0.062,0.15c0.04,0.04 0.094,0.062 0.15,0.062l0.028,-0l-0,0.515c0,0.054 0.022,0.106 0.06,0.145c0.039,0.038 0.091,0.06 0.145,0.06l0.275,-0l0,0.24l-0.24,-0l0,0.24c0.265,0.045 0.427,0.203 0.48,0.48l-0.96,0.96l0,0.48c0,-0 0.691,0.24 1.622,0.24c0.932,-0 0.949,-0.011 0.949,-0.011l-0.015,0.011l0.646,-0c0.198,0.559 0.732,0.96 1.358,0.96c0.426,0 0.809,-0.185 1.073,-0.48l12.014,-0c0.264,0.295 0.647,0.48 1.073,0.48c0.426,0 0.809,-0.185 1.073,-0.48l1.807,-0c0,-0.31 1.016,-0.428 1.467,-0.465c0.12,-0.01 0.213,-0.11 0.213,-0.23c0,-0.294 0,-0.814 -0,-1.072c-0,-0.098 -0.045,-0.191 -0.122,-0.252c-0.913,-0.726 -1.798,-1.101 -1.798,-1.101l-0.48,-0c0.194,-0.401 0.48,-0.48 0.48,-0.48l0,-0.24l-1.2,-0l0,-0.24l-3.36,-0c-1.32,-0 -3.12,0.72 -3.12,0.72l-0.48,-0c0,-0.541 -1.346,-1.44 -2.16,-1.44l-2.64,-0l0,-0.381c-0,-0.026 -0.01,-0.051 -0.029,-0.07c-0.019,-0.019 -0.044,-0.029 -0.07,-0.029c-0.247,0 -0.892,0 -1.188,0.001c-0.105,0 -0.208,0.025 -0.301,0.072c-0.726,0.375 -1.292,0.887 -1.292,0.887c-0.879,-0.491 -2.16,-0.72 -2.16,-0.72l-3.12,0c-0.133,0 -0.24,0.107 -0.24,0.24l-0.134,0c-0.028,-0 -0.055,0.011 -0.075,0.031c-0.02,0.02 -0.031,0.047 -0.031,0.075Zm4.137,9.26c1.921,0.643 2.538,2.489 2.538,2.489c0.053,0.157 0.223,0.242 0.38,0.19c0.157,-0.053 0.242,-0.223 0.19,-0.38c-0,0 -0.712,-2.14 -2.937,-2.875c-0.072,-0.117 -0.201,-0.196 -0.348,-0.196c-0.224,0 -0.406,0.182 -0.406,0.406c0,0.224 0.182,0.406 0.406,0.406c0.063,-0 0.123,-0.015 0.177,-0.04Zm23.305,-5.046c0.198,0.559 0.732,0.96 1.358,0.96c0.294,-0 0.568,-0.088 0.796,-0.24l12.568,-0c0.228,0.152 0.502,0.24 0.796,0.24c0.294,-0 0.568,-0.088 0.796,-0.24l4.244,-0l0,-0.48c0,-0.285 -0.216,-0.403 -0.361,-0.44c-0.071,-0.022 -0.119,-0.088 -0.119,-0.162l0,-0.407c-0,-0.106 -0.085,-0.191 -0.191,-0.191l-0.289,0c-0.576,-0.924 -1.44,-1.68 -1.44,-1.68l-0.48,-0c0.194,-0.401 0.48,-0.48 0.48,-0.48l0,-0.24l-1.2,-0l0,-0.24l-3.36,-0c-0.539,-0 -1.158,0.12 -1.702,0.262c-1.87,-0.925 -3.372,-1.311 -3.876,-1.426c-0.122,-0.024 -0.246,-0.036 -0.37,-0.036c-0.762,0 -3.584,0.001 -3.739,0.001c-0.105,0 -0.208,0.025 -0.301,0.072c-0.726,0.375 -1.292,0.887 -1.292,0.887c-0.879,-0.491 -2.16,-0.72 -2.16,-0.72l-3.12,0c-0.133,0 -0.24,0.107 -0.24,0.24l-0.134,0c-0.028,-0 -0.055,0.011 -0.075,0.031c-0.02,0.02 -0.031,0.047 -0.031,0.075l0,0.028c-0,0.028 0.011,0.055 0.031,0.075c0.02,0.02 0.047,0.031 0.075,0.031l0.134,-0l-0,0.508c-0,0.056 0.022,0.11 0.062,0.15c0.04,0.04 0.094,0.062 0.15,0.062l0.028,-0l-0,0.515c0,0.054 0.022,0.106 0.06,0.145c0.039,0.038 0.091,0.06 0.145,0.06l0.275,-0l0,0.24l-0.24,-0l0,0.24c0.265,0.045 0.427,0.203 0.48,0.48l-0.96,0.96l0,0.48c0,-0 0.691,0.24 1.622,0.24c0.932,-0 0.949,-0.011 0.949,-0.011l-0.015,0.011l0.646,-0Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car23.car-tuning1_0{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,0l500,0l0,200l-500,0l0,-200Zm133.46,46l32.19,0c1.22,1.35 2.98,2.19 4.94,2.19c1.96,0 3.73,-0.84 4.94,-2.19l7.34,0c0.23,0 0.4,-0.18 0.4,-0.4c-0.11,-7.05 -3.16,-10.02 -4.04,-10.74c-0.15,-0.12 -0.32,-0.18 -0.51,-0.18l-0.49,0l-0,-2.1c-0,-0.46 -0.14,-0.85 -0.41,-1.21c-2.97,-3.91 -7.39,-6.38 -8.32,-6.87c-0.12,-0.07 -0.24,-0.09 -0.38,-0.09l-0.73,0c-0.21,0 -0.38,-0.07 -0.53,-0.2c-10.18,-8.88 -15.89,-10.07 -15.89,-10.07l0,-0.4c0,0 -2.19,-0.81 -8.71,-0.81c-6.51,0 -9.67,0.81 -9.67,0.81l-10.37,0c-0.22,0 -0.4,0.17 -0.4,0.39l0,0.5c0,0.17 0.11,0.33 0.28,0.38l3.64,1.09c0,0.18 0.01,0.31 -0.1,0.47c-2.87,3.91 -4.11,7.95 -4.11,7.95c-0.63,0 -0.81,0.45 -0.81,0.45l0,5.98c-2.73,0.47 -4.82,2.86 -4.82,5.72l-0,4.53c-0,2.65 2.15,4.8 4.8,4.8l1.88,0c1.22,1.35 2.98,2.19 4.94,2.19c1.96,0 3.73,-0.84 4.94,-2.19Zm-99.4,-0.83l30.91,0c1.19,1.82 3.25,3.02 5.58,3.02c2.78,0 5.15,-1.69 6.16,-4.1l1.54,0c0.49,0 0.91,-0.34 1,-0.83c0.1,-0.61 0.21,-1.65 0.21,-3.39c-0,-3.68 -0.47,-4.52 -0.47,-4.52l-0.8,0l-0,-2.77c-0,-0.46 -0.14,-0.85 -0.41,-1.21c-3.34,-4.4 -8.5,-6.96 -8.5,-6.96l-1.24,0c-10.31,-9.06 -16.11,-10.27 -16.11,-10.27l-0,-0.4c-0,0 -2.19,-0.81 -8.71,-0.81c-6.51,0 -9.68,0.81 -9.68,0.81l-6.34,0c-0.28,0 -0.5,0.22 -0.5,0.49l-0,2.04c-0,0.11 -0.04,0.21 -0.1,0.3c-2.87,3.91 -4.11,7.95 -4.11,7.95c-0.63,0 -0.81,0.45 -0.81,0.45l-0,6.59l-0.74,0c-0,0 -1.15,0.61 -1.15,3.5l-0,7.02c-0,1.11 0.9,2.01 2.01,2.01l0.53,0c1,2.41 3.38,4.1 6.15,4.1c2.34,0 4.39,-1.2 5.58,-3.02Zm31.94,31.83l-0,-3c-0,0 -6.263,-6.845 -13,-10l-17,0c-0,0 -3.796,3.761 -5,11c-0,0 1,2 35,2Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car33.car-tuning1_0{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,48l0,-48l120,0l0,48l-120,0Zm-0,-41.301c-0,0.518 -0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278c0.741,0.707 1.875,0.993 2.195,1.063c0.056,0.011 0.113,0.017 0.171,0.017l0.494,0c0.249,0.699 0.916,1.2 1.7,1.2c0.589,0 1.113,-0.283 1.442,-0.72l12.723,0c0.33,0.437 0.853,0.72 1.442,0.72c0.685,0 1.282,-0.383 1.587,-0.947l0.855,-0.012c0.048,-0.001 0.095,-0.012 0.138,-0.033l0.72,-0.36c0.107,-0.054 0.175,-0.164 0.175,-0.284l-0,-2.204c-0,-1.44 -7.44,-1.68 -7.44,-1.68c0,0 -2.46,-2.029 -6.96,-1.92c-5.008,0 -8.383,1.814 -9.18,2.287c-0.112,0.073 -0.18,0.198 -0.18,0.332Zm48.24,2.762l0,1.246c-0,0.152 0.06,0.298 0.168,0.405c0.107,0.108 0.253,0.168 0.405,0.168l2.966,0c0.265,0.153 0.572,0.24 0.899,0.24c0.328,0 0.635,-0.087 0.899,-0.24l13.562,0c0.264,0.153 0.572,0.24 0.899,0.24c0.327,0 0.899,-0.24 0.899,-0.24l3.063,0l-0,-0.176c-0,-0.168 -0.136,-0.304 -0.304,-0.304l-0.001,0l0,-0.24l0.126,-0c0.048,0 0.093,-0.019 0.127,-0.052c0.033,-0.034 0.052,-0.079 0.052,-0.127l0,-1.322c-0,-0.048 -0.019,-0.093 -0.052,-0.127c-0.034,-0.033 -0.079,-0.052 -0.127,-0.052l-0.126,0l0,-0.48c0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.568c0,-0.673 -1.562,-0.996 -3.295,-1.243l-0,-0.201c0,-0.039 -0.016,-0.077 -0.043,-0.105c-0.028,-0.027 -0.066,-0.043 -0.105,-0.043l-3.932,0c0,0 -1.593,-1.314 -4.56,-1.77l-0,-0.246c-0,-0.08 -0.064,-0.144 -0.144,-0.144l-0.912,0c-0.08,0 -0.144,0.064 -0.144,0.144l0,0.105c-0.309,-0.013 -0.629,-0.017 -0.96,-0.009c-2.88,0 -5.22,0.6 -6.841,1.2l-0.599,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-1.375,-0c-0.169,-0 -0.305,0.136 -0.305,0.305l0,0.175l0.24,0l0,0.087c0,0.085 0.068,0.153 0.153,0.153l0.327,0l-0,0.155c-0,0.094 -0.052,0.181 -0.135,0.225c-0.172,0.092 -0.307,0.169 -0.405,0.227c-0.112,0.073 -0.18,0.198 -0.18,0.332c0,0.518 0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278l0.042,0.04c0.051,0.046 0.08,0.112 0.08,0.181Zm-18.12,1.339l12.723,0c0.33,0.437 0.853,0.72 1.442,0.72c0.685,0 1.282,-0.383 1.587,-0.947l0.855,-0.012c0.048,-0.001 0.095,-0.012 0.138,-0.033l0.72,-0.36c0.107,-0.054 0.175,-0.164 0.175,-0.284l0,-2.204c0,-0.673 -1.627,-1.084 -3.36,-1.331l-0,-0.201c0,-0.039 -0.016,-0.077 -0.043,-0.105c-0.028,-0.027 -0.066,-0.043 -0.105,-0.043l-3.932,0c0,0 -1.593,-1.314 -4.56,-1.77l0,-0.246c-0,-0.08 -0.064,-0.144 -0.144,-0.144l-1.152,0c-0.08,0 -0.144,0.064 -0.144,0.144l0,0.105c-0.309,-0.013 -0.629,-0.017 -0.96,-0.009c-2.88,0 -5.22,0.6 -6.841,1.2l-0.599,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-1.375,-0c-0.169,-0 -0.305,0.136 -0.305,0.305l0,0.175l0.24,0l0,0.087c0,0.085 0.068,0.153 0.153,0.153l0.327,0l-0,0.155c-0,0.094 -0.052,0.181 -0.135,0.225c-0.172,0.092 -0.307,0.169 -0.405,0.227c-0.112,0.073 -0.18,0.198 -0.18,0.332c0,0.518 0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278c0.741,0.707 1.875,0.993 2.195,1.063c0.056,0.011 0.113,0.017 0.171,0.017l0.494,0c0.249,0.699 0.916,1.2 1.7,1.2c0.589,0 1.113,-0.283 1.442,-0.72Zm-28.2,6.96l0.96,0.24l1.68,-0.48l0.48,-0.48l0,-0.351c-2.16,0.111 -3.12,1.071 -3.12,1.071Zm5.04,-1.2c0,0 -1.242,0.008 -1.68,0.96l0,1.2l11.52,0l0,-0.24c0,0 -1.44,-1.44 -3.36,-1.68l-0.24,-0.24l-6.24,0Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car33.car-tuning1_1{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,48l0,-48l120,0l0,48l-120,0Zm-0,-41.301c-0,0.518 -0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278c0.741,0.707 1.875,0.993 2.195,1.063c0.056,0.011 0.113,0.017 0.171,0.017l0.494,0c0.249,0.699 0.916,1.2 1.7,1.2c0.589,0 1.113,-0.283 1.442,-0.72l12.723,0c0.33,0.437 0.853,0.72 1.442,0.72c0.685,0 1.282,-0.383 1.587,-0.947l0.855,-0.012c0.048,-0.001 0.095,-0.012 0.138,-0.033l0.72,-0.36c0.107,-0.054 0.175,-0.164 0.175,-0.284l-0,-2.204c-0,-1.44 -7.44,-1.68 -7.44,-1.68c0,0 -2.46,-2.029 -6.96,-1.92c-5.008,0 -8.383,1.814 -9.18,2.287c-0.112,0.073 -0.18,0.198 -0.18,0.332Zm48.24,2.762l0,1.246c-0,0.152 0.06,0.298 0.168,0.405c0.107,0.108 0.253,0.168 0.405,0.168l2.966,0c0.265,0.153 0.572,0.24 0.899,0.24c0.328,0 0.635,-0.087 0.899,-0.24l13.562,0c0.264,0.153 0.572,0.24 0.899,0.24c0.327,0 0.899,-0.24 0.899,-0.24l3.063,0l-0,-0.176c-0,-0.168 -0.136,-0.304 -0.304,-0.304l-0.001,0l0,-0.24l0.126,-0c0.048,0 0.093,-0.019 0.127,-0.052c0.033,-0.034 0.052,-0.079 0.052,-0.127l0,-1.322c-0,-0.048 -0.019,-0.093 -0.052,-0.127c-0.034,-0.033 -0.079,-0.052 -0.127,-0.052l-0.126,0l0,-0.48c0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.568c0,-0.673 -1.562,-0.996 -3.295,-1.243l-0,-0.201c0,-0.039 -0.016,-0.077 -0.043,-0.105c-0.028,-0.027 -0.066,-0.043 -0.105,-0.043l-3.932,0c0,0 -1.593,-1.314 -4.56,-1.77l-0,-0.246c-0,-0.08 -0.064,-0.144 -0.144,-0.144l-0.912,0c-0.08,0 -0.144,0.064 -0.144,0.144l0,0.105c-0.309,-0.013 -0.629,-0.017 -0.96,-0.009c-2.88,0 -5.22,0.6 -6.841,1.2l-0.599,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-1.375,-0c-0.169,-0 -0.305,0.136 -0.305,0.305l0,0.175l0.24,0l0,0.087c0,0.085 0.068,0.153 0.153,0.153l0.327,0l-0,0.155c-0,0.094 -0.052,0.181 -0.135,0.225c-0.172,0.092 -0.307,0.169 -0.405,0.227c-0.112,0.073 -0.18,0.198 -0.18,0.332c0,0.518 0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278l0.042,0.04c0.051,0.046 0.08,0.112 0.08,0.181Zm-18.12,1.339l12.723,0c0.33,0.437 0.853,0.72 1.442,0.72c0.685,0 1.282,-0.383 1.587,-0.947l0.855,-0.012c0.048,-0.001 0.095,-0.012 0.138,-0.033l0.72,-0.36c0.107,-0.054 0.175,-0.164 0.175,-0.284l0,-2.204c0,-0.673 -1.627,-1.084 -3.36,-1.331l-0,-0.201c0,-0.039 -0.016,-0.077 -0.043,-0.105c-0.028,-0.027 -0.066,-0.043 -0.105,-0.043l-3.932,0c0,0 -1.593,-1.314 -4.56,-1.77l0,-0.246c-0,-0.08 -0.064,-0.144 -0.144,-0.144l-1.152,0c-0.08,0 -0.144,0.064 -0.144,0.144l0,0.105c-0.309,-0.013 -0.629,-0.017 -0.96,-0.009c-2.88,0 -5.22,0.6 -6.841,1.2l-0.599,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-1.375,-0c-0.169,-0 -0.305,0.136 -0.305,0.305l0,0.175l0.24,0l0,0.087c0,0.085 0.068,0.153 0.153,0.153l0.327,0l-0,0.155c-0,0.094 -0.052,0.181 -0.135,0.225c-0.172,0.092 -0.307,0.169 -0.405,0.227c-0.112,0.073 -0.18,0.198 -0.18,0.332c0,0.518 0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278c0.741,0.707 1.875,0.993 2.195,1.063c0.056,0.011 0.113,0.017 0.171,0.017l0.494,0c0.249,0.699 0.916,1.2 1.7,1.2c0.589,0 1.113,-0.283 1.442,-0.72Zm-28.2,6.96l0.96,0.24l1.68,-0.48l0.48,-0.48l0,-0.351c-2.16,0.111 -3.12,1.071 -3.12,1.071Zm5.04,-1.2c0,0 -1.242,0.008 -1.68,0.96l0,1.2l11.52,0l0,-0.24c0,0 -1.44,-1.44 -3.36,-1.68l-0.24,-0.24l-6.24,0Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car33.car-tuning1_2{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,48l0,-48l120,0l0,48l-120,0Zm-0,-41.301c-0,0.518 -0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278c0.741,0.707 1.875,0.993 2.195,1.063c0.056,0.011 0.113,0.017 0.171,0.017l0.494,0c0.249,0.699 0.916,1.2 1.7,1.2c0.589,0 1.113,-0.283 1.442,-0.72l12.723,0c0.33,0.437 0.853,0.72 1.442,0.72c0.685,0 1.282,-0.383 1.587,-0.947l0.855,-0.012c0.048,-0.001 0.095,-0.012 0.138,-0.033l0.72,-0.36c0.107,-0.054 0.175,-0.164 0.175,-0.284l-0,-2.204c-0,-1.44 -7.44,-1.68 -7.44,-1.68c0,0 -2.46,-2.029 -6.96,-1.92c-5.008,0 -8.383,1.814 -9.18,2.287c-0.112,0.073 -0.18,0.198 -0.18,0.332Zm48.24,2.762l0,1.246c-0,0.152 0.06,0.298 0.168,0.405c0.107,0.108 0.253,0.168 0.405,0.168l2.966,0c0.265,0.153 0.572,0.24 0.899,0.24c0.328,0 0.635,-0.087 0.899,-0.24l13.562,0c0.264,0.153 0.572,0.24 0.899,0.24c0.327,0 0.899,-0.24 0.899,-0.24l3.063,0l-0,-0.176c-0,-0.168 -0.136,-0.304 -0.304,-0.304l-0.001,0l0,-0.24l0.126,-0c0.048,0 0.093,-0.019 0.127,-0.052c0.033,-0.034 0.052,-0.079 0.052,-0.127l0,-1.322c-0,-0.048 -0.019,-0.093 -0.052,-0.127c-0.034,-0.033 -0.079,-0.052 -0.127,-0.052l-0.126,0l0,-0.48c0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.568c0,-0.673 -1.562,-0.996 -3.295,-1.243l-0,-0.201c0,-0.039 -0.016,-0.077 -0.043,-0.105c-0.028,-0.027 -0.066,-0.043 -0.105,-0.043l-3.932,0c0,0 -1.593,-1.314 -4.56,-1.77l-0,-0.246c-0,-0.08 -0.064,-0.144 -0.144,-0.144l-0.912,0c-0.08,0 -0.144,0.064 -0.144,0.144l0,0.105c-0.309,-0.013 -0.629,-0.017 -0.96,-0.009c-2.88,0 -5.22,0.6 -6.841,1.2l-0.599,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-1.375,-0c-0.169,-0 -0.305,0.136 -0.305,0.305l0,0.175l0.24,0l0,0.087c0,0.085 0.068,0.153 0.153,0.153l0.327,0l-0,0.155c-0,0.094 -0.052,0.181 -0.135,0.225c-0.172,0.092 -0.307,0.169 -0.405,0.227c-0.112,0.073 -0.18,0.198 -0.18,0.332c0,0.518 0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278l0.042,0.04c0.051,0.046 0.08,0.112 0.08,0.181Zm-18.12,1.339l12.723,0c0.33,0.437 0.853,0.72 1.442,0.72c0.685,0 1.282,-0.383 1.587,-0.947l0.855,-0.012c0.048,-0.001 0.095,-0.012 0.138,-0.033l0.72,-0.36c0.107,-0.054 0.175,-0.164 0.175,-0.284l0,-2.204c0,-0.673 -1.627,-1.084 -3.36,-1.331l-0,-0.201c0,-0.039 -0.016,-0.077 -0.043,-0.105c-0.028,-0.027 -0.066,-0.043 -0.105,-0.043l-3.932,0c0,0 -1.593,-1.314 -4.56,-1.77l0,-0.246c-0,-0.08 -0.064,-0.144 -0.144,-0.144l-1.152,0c-0.08,0 -0.144,0.064 -0.144,0.144l0,0.105c-0.309,-0.013 -0.629,-0.017 -0.96,-0.009c-2.88,0 -5.22,0.6 -6.841,1.2l-0.599,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-1.375,-0c-0.169,-0 -0.305,0.136 -0.305,0.305l0,0.175l0.24,0l0,0.087c0,0.085 0.068,0.153 0.153,0.153l0.327,0l-0,0.155c-0,0.094 -0.052,0.181 -0.135,0.225c-0.172,0.092 -0.307,0.169 -0.405,0.227c-0.112,0.073 -0.18,0.198 -0.18,0.332c0,0.518 0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278c0.741,0.707 1.875,0.993 2.195,1.063c0.056,0.011 0.113,0.017 0.171,0.017l0.494,0c0.249,0.699 0.916,1.2 1.7,1.2c0.589,0 1.113,-0.283 1.442,-0.72Zm-28.2,6.96l0.96,0.24l1.68,-0.48l0.48,-0.48l0,-0.351c-2.16,0.111 -3.12,1.071 -3.12,1.071Zm5.04,-1.2c0,0 -1.242,0.008 -1.68,0.96l0,1.2l11.52,0l0,-0.24c0,0 -1.44,-1.44 -3.36,-1.68l-0.24,-0.24l-6.24,0Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car33.car-tuning1_3{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,48l0,-48l120,0l0,48l-120,0Zm-0,-41.301c-0,0.518 -0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278c0.741,0.707 1.875,0.993 2.195,1.063c0.056,0.011 0.113,0.017 0.171,0.017l0.494,0c0.249,0.699 0.916,1.2 1.7,1.2c0.589,0 1.113,-0.283 1.442,-0.72l12.723,0c0.33,0.437 0.853,0.72 1.442,0.72c0.685,0 1.282,-0.383 1.587,-0.947l0.855,-0.012c0.048,-0.001 0.095,-0.012 0.138,-0.033l0.72,-0.36c0.107,-0.054 0.175,-0.164 0.175,-0.284l-0,-2.204c-0,-1.44 -7.44,-1.68 -7.44,-1.68c0,0 -2.46,-2.029 -6.96,-1.92c-5.008,0 -8.383,1.814 -9.18,2.287c-0.112,0.073 -0.18,0.198 -0.18,0.332Zm48.24,2.762l0,1.246c-0,0.152 0.06,0.298 0.168,0.405c0.107,0.108 0.253,0.168 0.405,0.168l2.966,0c0.265,0.153 0.572,0.24 0.899,0.24c0.328,0 0.635,-0.087 0.899,-0.24l13.562,0c0.264,0.153 0.572,0.24 0.899,0.24c0.327,0 0.899,-0.24 0.899,-0.24l3.063,0l-0,-0.176c-0,-0.168 -0.136,-0.304 -0.304,-0.304l-0.001,0l0,-0.24l0.126,-0c0.048,0 0.093,-0.019 0.127,-0.052c0.033,-0.034 0.052,-0.079 0.052,-0.127l0,-1.322c-0,-0.048 -0.019,-0.093 -0.052,-0.127c-0.034,-0.033 -0.079,-0.052 -0.127,-0.052l-0.126,0l0,-0.48c0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.568c0,-0.673 -1.562,-0.996 -3.295,-1.243l-0,-0.201c0,-0.039 -0.016,-0.077 -0.043,-0.105c-0.028,-0.027 -0.066,-0.043 -0.105,-0.043l-3.932,0c0,0 -1.593,-1.314 -4.56,-1.77l-0,-0.246c-0,-0.08 -0.064,-0.144 -0.144,-0.144l-0.912,0c-0.08,0 -0.144,0.064 -0.144,0.144l0,0.105c-0.309,-0.013 -0.629,-0.017 -0.96,-0.009c-2.88,0 -5.22,0.6 -6.841,1.2l-0.599,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-1.375,-0c-0.169,-0 -0.305,0.136 -0.305,0.305l0,0.175l0.24,0l0,0.087c0,0.085 0.068,0.153 0.153,0.153l0.327,0l-0,0.155c-0,0.094 -0.052,0.181 -0.135,0.225c-0.172,0.092 -0.307,0.169 -0.405,0.227c-0.112,0.073 -0.18,0.198 -0.18,0.332c0,0.518 0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278l0.042,0.04c0.051,0.046 0.08,0.112 0.08,0.181Zm-18.12,1.339l12.723,0c0.33,0.437 0.853,0.72 1.442,0.72c0.685,0 1.282,-0.383 1.587,-0.947l0.855,-0.012c0.048,-0.001 0.095,-0.012 0.138,-0.033l0.72,-0.36c0.107,-0.054 0.175,-0.164 0.175,-0.284l0,-2.204c0,-0.673 -1.627,-1.084 -3.36,-1.331l-0,-0.201c0,-0.039 -0.016,-0.077 -0.043,-0.105c-0.028,-0.027 -0.066,-0.043 -0.105,-0.043l-3.932,0c0,0 -1.593,-1.314 -4.56,-1.77l0,-0.246c-0,-0.08 -0.064,-0.144 -0.144,-0.144l-1.152,0c-0.08,0 -0.144,0.064 -0.144,0.144l0,0.105c-0.309,-0.013 -0.629,-0.017 -0.96,-0.009c-2.88,0 -5.22,0.6 -6.841,1.2l-0.599,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-1.375,-0c-0.169,-0 -0.305,0.136 -0.305,0.305l0,0.175l0.24,0l0,0.087c0,0.085 0.068,0.153 0.153,0.153l0.327,0l-0,0.155c-0,0.094 -0.052,0.181 -0.135,0.225c-0.172,0.092 -0.307,0.169 -0.405,0.227c-0.112,0.073 -0.18,0.198 -0.18,0.332c0,0.518 0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278c0.741,0.707 1.875,0.993 2.195,1.063c0.056,0.011 0.113,0.017 0.171,0.017l0.494,0c0.249,0.699 0.916,1.2 1.7,1.2c0.589,0 1.113,-0.283 1.442,-0.72Zm-28.2,6.96l0.96,0.24l1.68,-0.48l0.48,-0.48l0,-0.351c-2.16,0.111 -3.12,1.071 -3.12,1.071Zm5.04,-1.2c0,0 -1.242,0.008 -1.68,0.96l0,1.2l11.52,0l0,-0.24c0,0 -1.44,-1.44 -3.36,-1.68l-0.24,-0.24l-6.24,0Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car33.car-tuning1_4{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,48l0,-48l120,0l0,48l-120,0Zm-0,-41.301c-0,0.518 -0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278c0.741,0.707 1.875,0.993 2.195,1.063c0.056,0.011 0.113,0.017 0.171,0.017l0.494,0c0.249,0.699 0.916,1.2 1.7,1.2c0.589,0 1.113,-0.283 1.442,-0.72l12.723,0c0.33,0.437 0.853,0.72 1.442,0.72c0.685,0 1.282,-0.383 1.587,-0.947l0.855,-0.012c0.048,-0.001 0.095,-0.012 0.138,-0.033l0.72,-0.36c0.107,-0.054 0.175,-0.164 0.175,-0.284l-0,-2.204c-0,-1.44 -7.44,-1.68 -7.44,-1.68c0,0 -2.46,-2.029 -6.96,-1.92c-5.008,0 -8.383,1.814 -9.18,2.287c-0.112,0.073 -0.18,0.198 -0.18,0.332Zm48.24,2.762l0,1.246c-0,0.152 0.06,0.298 0.168,0.405c0.107,0.108 0.253,0.168 0.405,0.168l2.966,0c0.265,0.153 0.572,0.24 0.899,0.24c0.328,0 0.635,-0.087 0.899,-0.24l13.562,0c0.264,0.153 0.572,0.24 0.899,0.24c0.327,0 0.899,-0.24 0.899,-0.24l3.063,0l-0,-0.176c-0,-0.168 -0.136,-0.304 -0.304,-0.304l-0.001,0l0,-0.24l0.126,-0c0.048,0 0.093,-0.019 0.127,-0.052c0.033,-0.034 0.052,-0.079 0.052,-0.127l0,-1.322c-0,-0.048 -0.019,-0.093 -0.052,-0.127c-0.034,-0.033 -0.079,-0.052 -0.127,-0.052l-0.126,0l0,-0.48c0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.568c0,-0.673 -1.562,-0.996 -3.295,-1.243l-0,-0.201c0,-0.039 -0.016,-0.077 -0.043,-0.105c-0.028,-0.027 -0.066,-0.043 -0.105,-0.043l-3.932,0c0,0 -1.593,-1.314 -4.56,-1.77l-0,-0.246c-0,-0.08 -0.064,-0.144 -0.144,-0.144l-0.912,0c-0.08,0 -0.144,0.064 -0.144,0.144l0,0.105c-0.309,-0.013 -0.629,-0.017 -0.96,-0.009c-2.88,0 -5.22,0.6 -6.841,1.2l-0.599,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-1.375,-0c-0.169,-0 -0.305,0.136 -0.305,0.305l0,0.175l0.24,0l0,0.087c0,0.085 0.068,0.153 0.153,0.153l0.327,0l-0,0.155c-0,0.094 -0.052,0.181 -0.135,0.225c-0.172,0.092 -0.307,0.169 -0.405,0.227c-0.112,0.073 -0.18,0.198 -0.18,0.332c0,0.518 0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278l0.042,0.04c0.051,0.046 0.08,0.112 0.08,0.181Zm-18.12,1.339l12.723,0c0.33,0.437 0.853,0.72 1.442,0.72c0.685,0 1.282,-0.383 1.587,-0.947l0.855,-0.012c0.048,-0.001 0.095,-0.012 0.138,-0.033l0.72,-0.36c0.107,-0.054 0.175,-0.164 0.175,-0.284l0,-2.204c0,-0.673 -1.627,-1.084 -3.36,-1.331l-0,-0.201c0,-0.039 -0.016,-0.077 -0.043,-0.105c-0.028,-0.027 -0.066,-0.043 -0.105,-0.043l-3.932,0c0,0 -1.593,-1.314 -4.56,-1.77l0,-0.246c-0,-0.08 -0.064,-0.144 -0.144,-0.144l-1.152,0c-0.08,0 -0.144,0.064 -0.144,0.144l0,0.105c-0.309,-0.013 -0.629,-0.017 -0.96,-0.009c-2.88,0 -5.22,0.6 -6.841,1.2l-0.599,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-1.375,-0c-0.169,-0 -0.305,0.136 -0.305,0.305l0,0.175l0.24,0l0,0.087c0,0.085 0.068,0.153 0.153,0.153l0.327,0l-0,0.155c-0,0.094 -0.052,0.181 -0.135,0.225c-0.172,0.092 -0.307,0.169 -0.405,0.227c-0.112,0.073 -0.18,0.198 -0.18,0.332c0,0.518 0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278c0.741,0.707 1.875,0.993 2.195,1.063c0.056,0.011 0.113,0.017 0.171,0.017l0.494,0c0.249,0.699 0.916,1.2 1.7,1.2c0.589,0 1.113,-0.283 1.442,-0.72Zm-28.2,6.96l0.96,0.24l1.68,-0.48l0.48,-0.48l0,-0.351c-2.16,0.111 -3.12,1.071 -3.12,1.071Zm5.04,-1.2c0,0 -1.242,0.008 -1.68,0.96l0,1.2l11.52,0l0,-0.24c0,0 -1.44,-1.44 -3.36,-1.68l-0.24,-0.24l-6.24,0Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car42.car-tuning2_0{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M60.24,0l59.76,0l0,48l-120,0l0,-48l10.791,-0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,-0 -0.375,0.24 -0.96,0.24l-0,0.24c-0,-0 0.309,0.249 0.885,0.454c-0.38,0.157 -0.795,0.363 -1.198,0.631c-0.092,0.062 -0.117,0.187 -0.055,0.279c0.349,0.493 1.502,1.989 3.248,2.956c0,0 2.41,1.657 5.323,3.028c0.12,0.056 0.197,0.177 0.197,0.31l0,0.022l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,0 -0.375,0.24 -0.96,0.24l0,0.24c0,0 0.309,0.249 0.885,0.454c-0.377,0.156 -0.789,0.36 -1.189,0.625c-0.047,0.031 -0.079,0.08 -0.09,0.135c-0.011,0.055 0.001,0.113 0.033,0.159c0.204,0.288 0.668,0.898 1.354,1.546c-1.31,-0.026 -2.389,0.289 -2.958,0.5c-0.073,0.03 -0.12,0.101 -0.12,0.179c0,0.079 0.047,0.15 0.12,0.18c0.582,0.209 1.71,0.522 3.165,0.481l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.303,0.05 0.588,0.175 0.83,0.363c0.418,0.322 1.154,0.874 2.005,1.454c0.172,0.117 0.375,0.179 0.582,0.179l1.364,0l0,0.24l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l-0,0.195c-0.245,0.155 -0.575,0.225 -0.96,0.24c-1.486,0.071 -2.64,0.586 -2.64,1.2c0,0.649 1.292,1.179 2.903,1.199l0,0.001l0.937,0l0,0.72c-1.479,0 -2.62,0.337 -3.193,0.55c-0.067,0.029 -0.111,0.096 -0.111,0.169c-0,0.074 0.044,0.141 0.112,0.169c0.573,0.209 1.714,0.533 3.192,0.491l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.066,0.011 0.131,0.025 0.195,0.043l-1.894,1.473l1.2,0c0,0.133 0.107,0.24 0.24,0.24l0.48,0c-0,0 -1.205,0.904 -1.2,0.96c0.004,0.043 3.029,0.02 4.39,0.007c0.027,0.033 0.06,0.06 0.1,0.08c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l-0,-0.72Zm-48,12.72l-0,1.68l1.68,0.96l0.96,0l1.2,0.96l-0,1.2c-0,0 0.308,0.24 1.2,0.24l0,-0.96c0.133,-0 0.24,-0.107 0.24,-0.24l0,-0.481c0,-0.152 -0.065,-0.297 -0.18,-0.398c-0.57,-0.492 -2.398,-2.018 -4.124,-2.844c-0.165,-0.076 -0.344,-0.115 -0.526,-0.115c-0.204,-0.002 -0.45,-0.002 -0.45,-0.002Zm-5.766,18.24l1.206,0l0.24,0.96l1.732,0c0.501,-0 0.908,-0.407 0.908,-0.908l0,-1.563c0,-0.112 -0.021,-0.222 -0.061,-0.326l-0.915,-2.381c-0.135,-0.351 -0.472,-0.582 -0.848,-0.582l-3.216,0c-1.226,0 -1.92,0.96 -1.92,0.96c0.276,0.41 0.597,0.792 0.789,1.011c-0.056,0.091 -0.151,0.152 -0.259,0.166c-0.114,0.014 -0.228,-0.029 -0.305,-0.114c-0.198,-0.216 -0.442,-0.343 -0.705,-0.343c-0.357,0 -0.678,0.235 -0.918,0.594c-0.05,0.082 -0.132,0.139 -0.227,0.155c-0.094,0.017 -0.191,-0.008 -0.266,-0.068c-0.147,-0.127 -0.322,-0.201 -0.509,-0.201c-0.53,0 -0.96,0.591 -0.96,1.32c0,0.729 0.43,1.32 0.96,1.32c0.187,0 0.362,-0.074 0.495,-0.219c0.08,-0.065 0.183,-0.091 0.284,-0.073c0.101,0.017 0.19,0.078 0.243,0.166c0.22,0.371 0.541,0.606 0.898,0.606c0.263,0 0.507,-0.127 0.704,-0.344c0.078,-0.085 0.192,-0.128 0.307,-0.114c0.114,0.014 0.215,0.083 0.27,0.185c0.244,0.462 0.596,0.753 0.988,0.753c0.448,0 0.844,-0.379 1.085,-0.96Z'/%3E%3C/svg%3E\") no-repeat 0px -100px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car42.car-tuning2_1{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M60.24,0l59.76,0l0,48l-120,0l0,-48l10.791,-0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,-0 -0.375,0.24 -0.96,0.24l-0,0.24c-0,-0 0.309,0.249 0.885,0.454c-0.38,0.157 -0.795,0.363 -1.198,0.631c-0.092,0.062 -0.117,0.187 -0.055,0.279c0.349,0.493 1.502,1.989 3.248,2.956c0,0 2.41,1.657 5.323,3.028c0.12,0.056 0.197,0.177 0.197,0.31l0,0.022l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,0 -0.375,0.24 -0.96,0.24l0,0.24c0,0 0.309,0.249 0.885,0.454c-0.377,0.156 -0.789,0.36 -1.189,0.625c-0.047,0.031 -0.079,0.08 -0.09,0.135c-0.011,0.055 0.001,0.113 0.033,0.159c0.204,0.288 0.668,0.898 1.354,1.546c-1.31,-0.026 -2.389,0.289 -2.958,0.5c-0.073,0.03 -0.12,0.101 -0.12,0.179c0,0.079 0.047,0.15 0.12,0.18c0.582,0.209 1.71,0.522 3.165,0.481l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.303,0.05 0.588,0.175 0.83,0.363c0.418,0.322 1.154,0.874 2.005,1.454c0.172,0.117 0.375,0.179 0.582,0.179l1.364,0l0,0.24l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l-0,0.195c-0.245,0.155 -0.575,0.225 -0.96,0.24c-1.486,0.071 -2.64,0.586 -2.64,1.2c0,0.649 1.292,1.179 2.903,1.199l0,0.001l0.937,0l0,0.72c-1.479,0 -2.62,0.337 -3.193,0.55c-0.067,0.029 -0.111,0.096 -0.111,0.169c-0,0.074 0.044,0.141 0.112,0.169c0.573,0.209 1.714,0.533 3.192,0.491l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.066,0.011 0.131,0.025 0.195,0.043l-1.894,1.473l1.2,0c0,0.133 0.107,0.24 0.24,0.24l0.48,0c-0,0 -1.205,0.904 -1.2,0.96c0.004,0.043 3.029,0.02 4.39,0.007c0.027,0.033 0.06,0.06 0.1,0.08c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l-0,-0.72Zm-48,12.72l-0,1.68l1.68,0.96l0.96,0l1.2,0.96l-0,1.2c-0,0 0.308,0.24 1.2,0.24l0,-0.96c0.133,-0 0.24,-0.107 0.24,-0.24l0,-0.481c0,-0.152 -0.065,-0.297 -0.18,-0.398c-0.57,-0.492 -2.398,-2.018 -4.124,-2.844c-0.165,-0.076 -0.344,-0.115 -0.526,-0.115c-0.204,-0.002 -0.45,-0.002 -0.45,-0.002Zm-5.766,18.24l1.206,0l0.24,0.96l1.732,0c0.501,-0 0.908,-0.407 0.908,-0.908l0,-1.563c0,-0.112 -0.021,-0.222 -0.061,-0.326l-0.915,-2.381c-0.135,-0.351 -0.472,-0.582 -0.848,-0.582l-3.216,0c-1.226,0 -1.92,0.96 -1.92,0.96c0.276,0.41 0.597,0.792 0.789,1.011c-0.056,0.091 -0.151,0.152 -0.259,0.166c-0.114,0.014 -0.228,-0.029 -0.305,-0.114c-0.198,-0.216 -0.442,-0.343 -0.705,-0.343c-0.357,0 -0.678,0.235 -0.918,0.594c-0.05,0.082 -0.132,0.139 -0.227,0.155c-0.094,0.017 -0.191,-0.008 -0.266,-0.068c-0.147,-0.127 -0.322,-0.201 -0.509,-0.201c-0.53,0 -0.96,0.591 -0.96,1.32c0,0.729 0.43,1.32 0.96,1.32c0.187,0 0.362,-0.074 0.495,-0.219c0.08,-0.065 0.183,-0.091 0.284,-0.073c0.101,0.017 0.19,0.078 0.243,0.166c0.22,0.371 0.541,0.606 0.898,0.606c0.263,0 0.507,-0.127 0.704,-0.344c0.078,-0.085 0.192,-0.128 0.307,-0.114c0.114,0.014 0.215,0.083 0.27,0.185c0.244,0.462 0.596,0.753 0.988,0.753c0.448,0 0.844,-0.379 1.085,-0.96Z'/%3E%3C/svg%3E\") no-repeat 0px -100px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car42.car-tuning2_2{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M60.24,0l59.76,0l0,48l-120,0l0,-48l10.791,-0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,-0 -0.375,0.24 -0.96,0.24l-0,0.24c-0,-0 0.309,0.249 0.885,0.454c-0.38,0.157 -0.795,0.363 -1.198,0.631c-0.092,0.062 -0.117,0.187 -0.055,0.279c0.349,0.493 1.502,1.989 3.248,2.956c0,0 2.41,1.657 5.323,3.028c0.12,0.056 0.197,0.177 0.197,0.31l0,0.022l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,0 -0.375,0.24 -0.96,0.24l0,0.24c0,0 0.309,0.249 0.885,0.454c-0.377,0.156 -0.789,0.36 -1.189,0.625c-0.047,0.031 -0.079,0.08 -0.09,0.135c-0.011,0.055 0.001,0.113 0.033,0.159c0.204,0.288 0.668,0.898 1.354,1.546c-1.31,-0.026 -2.389,0.289 -2.958,0.5c-0.073,0.03 -0.12,0.101 -0.12,0.179c0,0.079 0.047,0.15 0.12,0.18c0.582,0.209 1.71,0.522 3.165,0.481l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.303,0.05 0.588,0.175 0.83,0.363c0.418,0.322 1.154,0.874 2.005,1.454c0.172,0.117 0.375,0.179 0.582,0.179l1.364,0l0,0.24l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l-0,0.195c-0.245,0.155 -0.575,0.225 -0.96,0.24c-1.486,0.071 -2.64,0.586 -2.64,1.2c0,0.649 1.292,1.179 2.903,1.199l0,0.001l0.937,0l0,0.72c-1.479,0 -2.62,0.337 -3.193,0.55c-0.067,0.029 -0.111,0.096 -0.111,0.169c-0,0.074 0.044,0.141 0.112,0.169c0.573,0.209 1.714,0.533 3.192,0.491l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.066,0.011 0.131,0.025 0.195,0.043l-1.894,1.473l1.2,0c0,0.133 0.107,0.24 0.24,0.24l0.48,0c-0,0 -1.205,0.904 -1.2,0.96c0.004,0.043 3.029,0.02 4.39,0.007c0.027,0.033 0.06,0.06 0.1,0.08c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l-0,-0.72Zm-48,12.72l-0,1.68l1.68,0.96l0.96,0l1.2,0.96l-0,1.2c-0,0 0.308,0.24 1.2,0.24l0,-0.96c0.133,-0 0.24,-0.107 0.24,-0.24l0,-0.481c0,-0.152 -0.065,-0.297 -0.18,-0.398c-0.57,-0.492 -2.398,-2.018 -4.124,-2.844c-0.165,-0.076 -0.344,-0.115 -0.526,-0.115c-0.204,-0.002 -0.45,-0.002 -0.45,-0.002Zm-5.766,18.24l1.206,0l0.24,0.96l1.732,0c0.501,-0 0.908,-0.407 0.908,-0.908l0,-1.563c0,-0.112 -0.021,-0.222 -0.061,-0.326l-0.915,-2.381c-0.135,-0.351 -0.472,-0.582 -0.848,-0.582l-3.216,0c-1.226,0 -1.92,0.96 -1.92,0.96c0.276,0.41 0.597,0.792 0.789,1.011c-0.056,0.091 -0.151,0.152 -0.259,0.166c-0.114,0.014 -0.228,-0.029 -0.305,-0.114c-0.198,-0.216 -0.442,-0.343 -0.705,-0.343c-0.357,0 -0.678,0.235 -0.918,0.594c-0.05,0.082 -0.132,0.139 -0.227,0.155c-0.094,0.017 -0.191,-0.008 -0.266,-0.068c-0.147,-0.127 -0.322,-0.201 -0.509,-0.201c-0.53,0 -0.96,0.591 -0.96,1.32c0,0.729 0.43,1.32 0.96,1.32c0.187,0 0.362,-0.074 0.495,-0.219c0.08,-0.065 0.183,-0.091 0.284,-0.073c0.101,0.017 0.19,0.078 0.243,0.166c0.22,0.371 0.541,0.606 0.898,0.606c0.263,0 0.507,-0.127 0.704,-0.344c0.078,-0.085 0.192,-0.128 0.307,-0.114c0.114,0.014 0.215,0.083 0.27,0.185c0.244,0.462 0.596,0.753 0.988,0.753c0.448,0 0.844,-0.379 1.085,-0.96Z'/%3E%3C/svg%3E\") no-repeat 0px -100px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car42.car-tuning2_3{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M60.24,0l59.76,0l0,48l-120,0l0,-48l10.791,-0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,-0 -0.375,0.24 -0.96,0.24l-0,0.24c-0,-0 0.309,0.249 0.885,0.454c-0.38,0.157 -0.795,0.363 -1.198,0.631c-0.092,0.062 -0.117,0.187 -0.055,0.279c0.349,0.493 1.502,1.989 3.248,2.956c0,0 2.41,1.657 5.323,3.028c0.12,0.056 0.197,0.177 0.197,0.31l0,0.022l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,0 -0.375,0.24 -0.96,0.24l0,0.24c0,0 0.309,0.249 0.885,0.454c-0.377,0.156 -0.789,0.36 -1.189,0.625c-0.047,0.031 -0.079,0.08 -0.09,0.135c-0.011,0.055 0.001,0.113 0.033,0.159c0.204,0.288 0.668,0.898 1.354,1.546c-1.31,-0.026 -2.389,0.289 -2.958,0.5c-0.073,0.03 -0.12,0.101 -0.12,0.179c0,0.079 0.047,0.15 0.12,0.18c0.582,0.209 1.71,0.522 3.165,0.481l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.303,0.05 0.588,0.175 0.83,0.363c0.418,0.322 1.154,0.874 2.005,1.454c0.172,0.117 0.375,0.179 0.582,0.179l1.364,0l0,0.24l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l-0,0.195c-0.245,0.155 -0.575,0.225 -0.96,0.24c-1.486,0.071 -2.64,0.586 -2.64,1.2c0,0.649 1.292,1.179 2.903,1.199l0,0.001l0.937,0l0,0.72c-1.479,0 -2.62,0.337 -3.193,0.55c-0.067,0.029 -0.111,0.096 -0.111,0.169c-0,0.074 0.044,0.141 0.112,0.169c0.573,0.209 1.714,0.533 3.192,0.491l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.066,0.011 0.131,0.025 0.195,0.043l-1.894,1.473l1.2,0c0,0.133 0.107,0.24 0.24,0.24l0.48,0c-0,0 -1.205,0.904 -1.2,0.96c0.004,0.043 3.029,0.02 4.39,0.007c0.027,0.033 0.06,0.06 0.1,0.08c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l-0,-0.72Zm-48,12.72l-0,1.68l1.68,0.96l0.96,0l1.2,0.96l-0,1.2c-0,0 0.308,0.24 1.2,0.24l0,-0.96c0.133,-0 0.24,-0.107 0.24,-0.24l0,-0.481c0,-0.152 -0.065,-0.297 -0.18,-0.398c-0.57,-0.492 -2.398,-2.018 -4.124,-2.844c-0.165,-0.076 -0.344,-0.115 -0.526,-0.115c-0.204,-0.002 -0.45,-0.002 -0.45,-0.002Zm-5.766,18.24l1.206,0l0.24,0.96l1.732,0c0.501,-0 0.908,-0.407 0.908,-0.908l0,-1.563c0,-0.112 -0.021,-0.222 -0.061,-0.326l-0.915,-2.381c-0.135,-0.351 -0.472,-0.582 -0.848,-0.582l-3.216,0c-1.226,0 -1.92,0.96 -1.92,0.96c0.276,0.41 0.597,0.792 0.789,1.011c-0.056,0.091 -0.151,0.152 -0.259,0.166c-0.114,0.014 -0.228,-0.029 -0.305,-0.114c-0.198,-0.216 -0.442,-0.343 -0.705,-0.343c-0.357,0 -0.678,0.235 -0.918,0.594c-0.05,0.082 -0.132,0.139 -0.227,0.155c-0.094,0.017 -0.191,-0.008 -0.266,-0.068c-0.147,-0.127 -0.322,-0.201 -0.509,-0.201c-0.53,0 -0.96,0.591 -0.96,1.32c0,0.729 0.43,1.32 0.96,1.32c0.187,0 0.362,-0.074 0.495,-0.219c0.08,-0.065 0.183,-0.091 0.284,-0.073c0.101,0.017 0.19,0.078 0.243,0.166c0.22,0.371 0.541,0.606 0.898,0.606c0.263,0 0.507,-0.127 0.704,-0.344c0.078,-0.085 0.192,-0.128 0.307,-0.114c0.114,0.014 0.215,0.083 0.27,0.185c0.244,0.462 0.596,0.753 0.988,0.753c0.448,0 0.844,-0.379 1.085,-0.96Z'/%3E%3C/svg%3E\") no-repeat 0px -100px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car42.car-tuning2_4{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M60.24,0l59.76,0l0,48l-120,0l0,-48l10.791,-0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,-0 -0.375,0.24 -0.96,0.24l-0,0.24c-0,-0 0.309,0.249 0.885,0.454c-0.38,0.157 -0.795,0.363 -1.198,0.631c-0.092,0.062 -0.117,0.187 -0.055,0.279c0.349,0.493 1.502,1.989 3.248,2.956c0,0 2.41,1.657 5.323,3.028c0.12,0.056 0.197,0.177 0.197,0.31l0,0.022l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,0 -0.375,0.24 -0.96,0.24l0,0.24c0,0 0.309,0.249 0.885,0.454c-0.377,0.156 -0.789,0.36 -1.189,0.625c-0.047,0.031 -0.079,0.08 -0.09,0.135c-0.011,0.055 0.001,0.113 0.033,0.159c0.204,0.288 0.668,0.898 1.354,1.546c-1.31,-0.026 -2.389,0.289 -2.958,0.5c-0.073,0.03 -0.12,0.101 -0.12,0.179c0,0.079 0.047,0.15 0.12,0.18c0.582,0.209 1.71,0.522 3.165,0.481l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.303,0.05 0.588,0.175 0.83,0.363c0.418,0.322 1.154,0.874 2.005,1.454c0.172,0.117 0.375,0.179 0.582,0.179l1.364,0l0,0.24l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l-0,0.195c-0.245,0.155 -0.575,0.225 -0.96,0.24c-1.486,0.071 -2.64,0.586 -2.64,1.2c0,0.649 1.292,1.179 2.903,1.199l0,0.001l0.937,0l0,0.72c-1.479,0 -2.62,0.337 -3.193,0.55c-0.067,0.029 -0.111,0.096 -0.111,0.169c-0,0.074 0.044,0.141 0.112,0.169c0.573,0.209 1.714,0.533 3.192,0.491l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.066,0.011 0.131,0.025 0.195,0.043l-1.894,1.473l1.2,0c0,0.133 0.107,0.24 0.24,0.24l0.48,0c-0,0 -1.205,0.904 -1.2,0.96c0.004,0.043 3.029,0.02 4.39,0.007c0.027,0.033 0.06,0.06 0.1,0.08c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l-0,-0.72Zm-48,12.72l-0,1.68l1.68,0.96l0.96,0l1.2,0.96l-0,1.2c-0,0 0.308,0.24 1.2,0.24l0,-0.96c0.133,-0 0.24,-0.107 0.24,-0.24l0,-0.481c0,-0.152 -0.065,-0.297 -0.18,-0.398c-0.57,-0.492 -2.398,-2.018 -4.124,-2.844c-0.165,-0.076 -0.344,-0.115 -0.526,-0.115c-0.204,-0.002 -0.45,-0.002 -0.45,-0.002Zm-5.766,18.24l1.206,0l0.24,0.96l1.732,0c0.501,-0 0.908,-0.407 0.908,-0.908l0,-1.563c0,-0.112 -0.021,-0.222 -0.061,-0.326l-0.915,-2.381c-0.135,-0.351 -0.472,-0.582 -0.848,-0.582l-3.216,0c-1.226,0 -1.92,0.96 -1.92,0.96c0.276,0.41 0.597,0.792 0.789,1.011c-0.056,0.091 -0.151,0.152 -0.259,0.166c-0.114,0.014 -0.228,-0.029 -0.305,-0.114c-0.198,-0.216 -0.442,-0.343 -0.705,-0.343c-0.357,0 -0.678,0.235 -0.918,0.594c-0.05,0.082 -0.132,0.139 -0.227,0.155c-0.094,0.017 -0.191,-0.008 -0.266,-0.068c-0.147,-0.127 -0.322,-0.201 -0.509,-0.201c-0.53,0 -0.96,0.591 -0.96,1.32c0,0.729 0.43,1.32 0.96,1.32c0.187,0 0.362,-0.074 0.495,-0.219c0.08,-0.065 0.183,-0.091 0.284,-0.073c0.101,0.017 0.19,0.078 0.243,0.166c0.22,0.371 0.541,0.606 0.898,0.606c0.263,0 0.507,-0.127 0.704,-0.344c0.078,-0.085 0.192,-0.128 0.307,-0.114c0.114,0.014 0.215,0.083 0.27,0.185c0.244,0.462 0.596,0.753 0.988,0.753c0.448,0 0.844,-0.379 1.085,-0.96Z'/%3E%3C/svg%3E\") no-repeat 0px -100px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car42.car-tuning1_0{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M60.24,0l59.76,0l0,48l-120,0l0,-48l10.791,-0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,-0 -0.375,0.24 -0.96,0.24l-0,0.24c-0,-0 0.309,0.249 0.885,0.454c-0.38,0.157 -0.795,0.363 -1.198,0.631c-0.092,0.062 -0.117,0.187 -0.055,0.279c0.349,0.493 1.502,1.989 3.248,2.956c0,0 2.41,1.657 5.323,3.028c0.12,0.056 0.197,0.177 0.197,0.31l0,0.022l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,0 -0.375,0.24 -0.96,0.24l0,0.24c0,0 0.309,0.249 0.885,0.454c-0.377,0.156 -0.789,0.36 -1.189,0.625c-0.047,0.031 -0.079,0.08 -0.09,0.135c-0.011,0.055 0.001,0.113 0.033,0.159c0.204,0.288 0.668,0.898 1.354,1.546c-1.31,-0.026 -2.389,0.289 -2.958,0.5c-0.073,0.03 -0.12,0.101 -0.12,0.179c0,0.079 0.047,0.15 0.12,0.18c0.582,0.209 1.71,0.522 3.165,0.481l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.303,0.05 0.588,0.175 0.83,0.363c0.418,0.322 1.154,0.874 2.005,1.454c0.172,0.117 0.375,0.179 0.582,0.179l1.364,0l0,0.24l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l-0,0.195c-0.245,0.155 -0.575,0.225 -0.96,0.24c-1.486,0.071 -2.64,0.586 -2.64,1.2c0,0.649 1.292,1.179 2.903,1.199l0,0.001l0.937,0l0,0.72c-1.479,0 -2.62,0.337 -3.193,0.55c-0.067,0.029 -0.111,0.096 -0.111,0.169c-0,0.074 0.044,0.141 0.112,0.169c0.573,0.209 1.714,0.533 3.192,0.491l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.066,0.011 0.131,0.025 0.195,0.043l-1.894,1.473l1.2,0c0,0.133 0.107,0.24 0.24,0.24l0.48,0c-0,0 -1.205,0.904 -1.2,0.96c0.004,0.043 3.029,0.02 4.39,0.007c0.027,0.033 0.06,0.06 0.1,0.08c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l-0,-0.72Zm-48,12.72l-0,1.68l1.68,0.96l0.96,0l1.2,0.96l-0,1.2c-0,0 0.308,0.24 1.2,0.24l0,-0.96c0.133,-0 0.24,-0.107 0.24,-0.24l0,-0.481c0,-0.152 -0.065,-0.297 -0.18,-0.398c-0.57,-0.492 -2.398,-2.018 -4.124,-2.844c-0.165,-0.076 -0.344,-0.115 -0.526,-0.115c-0.204,-0.002 -0.45,-0.002 -0.45,-0.002Zm-5.766,18.24l1.206,0l0.24,0.96l1.732,0c0.501,-0 0.908,-0.407 0.908,-0.908l0,-1.563c0,-0.112 -0.021,-0.222 -0.061,-0.326l-0.915,-2.381c-0.135,-0.351 -0.472,-0.582 -0.848,-0.582l-3.216,0c-1.226,0 -1.92,0.96 -1.92,0.96c0.276,0.41 0.597,0.792 0.789,1.011c-0.056,0.091 -0.151,0.152 -0.259,0.166c-0.114,0.014 -0.228,-0.029 -0.305,-0.114c-0.198,-0.216 -0.442,-0.343 -0.705,-0.343c-0.357,0 -0.678,0.235 -0.918,0.594c-0.05,0.082 -0.132,0.139 -0.227,0.155c-0.094,0.017 -0.191,-0.008 -0.266,-0.068c-0.147,-0.127 -0.322,-0.201 -0.509,-0.201c-0.53,0 -0.96,0.591 -0.96,1.32c0,0.729 0.43,1.32 0.96,1.32c0.187,0 0.362,-0.074 0.495,-0.219c0.08,-0.065 0.183,-0.091 0.284,-0.073c0.101,0.017 0.19,0.078 0.243,0.166c0.22,0.371 0.541,0.606 0.898,0.606c0.263,0 0.507,-0.127 0.704,-0.344c0.078,-0.085 0.192,-0.128 0.307,-0.114c0.114,0.014 0.215,0.083 0.27,0.185c0.244,0.462 0.596,0.753 0.988,0.753c0.448,0 0.844,-0.379 1.085,-0.96Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car42.car-tuning1_1{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M60.24,0l59.76,0l0,48l-120,0l0,-48l10.791,-0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,-0 -0.375,0.24 -0.96,0.24l-0,0.24c-0,-0 0.309,0.249 0.885,0.454c-0.38,0.157 -0.795,0.363 -1.198,0.631c-0.092,0.062 -0.117,0.187 -0.055,0.279c0.349,0.493 1.502,1.989 3.248,2.956c0,0 2.41,1.657 5.323,3.028c0.12,0.056 0.197,0.177 0.197,0.31l0,0.022l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,0 -0.375,0.24 -0.96,0.24l0,0.24c0,0 0.309,0.249 0.885,0.454c-0.377,0.156 -0.789,0.36 -1.189,0.625c-0.047,0.031 -0.079,0.08 -0.09,0.135c-0.011,0.055 0.001,0.113 0.033,0.159c0.204,0.288 0.668,0.898 1.354,1.546c-1.31,-0.026 -2.389,0.289 -2.958,0.5c-0.073,0.03 -0.12,0.101 -0.12,0.179c0,0.079 0.047,0.15 0.12,0.18c0.582,0.209 1.71,0.522 3.165,0.481l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.303,0.05 0.588,0.175 0.83,0.363c0.418,0.322 1.154,0.874 2.005,1.454c0.172,0.117 0.375,0.179 0.582,0.179l1.364,0l0,0.24l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l-0,0.195c-0.245,0.155 -0.575,0.225 -0.96,0.24c-1.486,0.071 -2.64,0.586 -2.64,1.2c0,0.649 1.292,1.179 2.903,1.199l0,0.001l0.937,0l0,0.72c-1.479,0 -2.62,0.337 -3.193,0.55c-0.067,0.029 -0.111,0.096 -0.111,0.169c-0,0.074 0.044,0.141 0.112,0.169c0.573,0.209 1.714,0.533 3.192,0.491l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.066,0.011 0.131,0.025 0.195,0.043l-1.894,1.473l1.2,0c0,0.133 0.107,0.24 0.24,0.24l0.48,0c-0,0 -1.205,0.904 -1.2,0.96c0.004,0.043 3.029,0.02 4.39,0.007c0.027,0.033 0.06,0.06 0.1,0.08c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l-0,-0.72Zm-48,12.72l-0,1.68l1.68,0.96l0.96,0l1.2,0.96l-0,1.2c-0,0 0.308,0.24 1.2,0.24l0,-0.96c0.133,-0 0.24,-0.107 0.24,-0.24l0,-0.481c0,-0.152 -0.065,-0.297 -0.18,-0.398c-0.57,-0.492 -2.398,-2.018 -4.124,-2.844c-0.165,-0.076 -0.344,-0.115 -0.526,-0.115c-0.204,-0.002 -0.45,-0.002 -0.45,-0.002Zm-5.766,18.24l1.206,0l0.24,0.96l1.732,0c0.501,-0 0.908,-0.407 0.908,-0.908l0,-1.563c0,-0.112 -0.021,-0.222 -0.061,-0.326l-0.915,-2.381c-0.135,-0.351 -0.472,-0.582 -0.848,-0.582l-3.216,0c-1.226,0 -1.92,0.96 -1.92,0.96c0.276,0.41 0.597,0.792 0.789,1.011c-0.056,0.091 -0.151,0.152 -0.259,0.166c-0.114,0.014 -0.228,-0.029 -0.305,-0.114c-0.198,-0.216 -0.442,-0.343 -0.705,-0.343c-0.357,0 -0.678,0.235 -0.918,0.594c-0.05,0.082 -0.132,0.139 -0.227,0.155c-0.094,0.017 -0.191,-0.008 -0.266,-0.068c-0.147,-0.127 -0.322,-0.201 -0.509,-0.201c-0.53,0 -0.96,0.591 -0.96,1.32c0,0.729 0.43,1.32 0.96,1.32c0.187,0 0.362,-0.074 0.495,-0.219c0.08,-0.065 0.183,-0.091 0.284,-0.073c0.101,0.017 0.19,0.078 0.243,0.166c0.22,0.371 0.541,0.606 0.898,0.606c0.263,0 0.507,-0.127 0.704,-0.344c0.078,-0.085 0.192,-0.128 0.307,-0.114c0.114,0.014 0.215,0.083 0.27,0.185c0.244,0.462 0.596,0.753 0.988,0.753c0.448,0 0.844,-0.379 1.085,-0.96Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car42.car-tuning1_2{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M60.24,0l59.76,0l0,48l-120,0l0,-48l10.791,-0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,-0 -0.375,0.24 -0.96,0.24l-0,0.24c-0,-0 0.309,0.249 0.885,0.454c-0.38,0.157 -0.795,0.363 -1.198,0.631c-0.092,0.062 -0.117,0.187 -0.055,0.279c0.349,0.493 1.502,1.989 3.248,2.956c0,0 2.41,1.657 5.323,3.028c0.12,0.056 0.197,0.177 0.197,0.31l0,0.022l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,0 -0.375,0.24 -0.96,0.24l0,0.24c0,0 0.309,0.249 0.885,0.454c-0.377,0.156 -0.789,0.36 -1.189,0.625c-0.047,0.031 -0.079,0.08 -0.09,0.135c-0.011,0.055 0.001,0.113 0.033,0.159c0.204,0.288 0.668,0.898 1.354,1.546c-1.31,-0.026 -2.389,0.289 -2.958,0.5c-0.073,0.03 -0.12,0.101 -0.12,0.179c0,0.079 0.047,0.15 0.12,0.18c0.582,0.209 1.71,0.522 3.165,0.481l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.303,0.05 0.588,0.175 0.83,0.363c0.418,0.322 1.154,0.874 2.005,1.454c0.172,0.117 0.375,0.179 0.582,0.179l1.364,0l0,0.24l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l-0,0.195c-0.245,0.155 -0.575,0.225 -0.96,0.24c-1.486,0.071 -2.64,0.586 -2.64,1.2c0,0.649 1.292,1.179 2.903,1.199l0,0.001l0.937,0l0,0.72c-1.479,0 -2.62,0.337 -3.193,0.55c-0.067,0.029 -0.111,0.096 -0.111,0.169c-0,0.074 0.044,0.141 0.112,0.169c0.573,0.209 1.714,0.533 3.192,0.491l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.066,0.011 0.131,0.025 0.195,0.043l-1.894,1.473l1.2,0c0,0.133 0.107,0.24 0.24,0.24l0.48,0c-0,0 -1.205,0.904 -1.2,0.96c0.004,0.043 3.029,0.02 4.39,0.007c0.027,0.033 0.06,0.06 0.1,0.08c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l-0,-0.72Zm-48,12.72l-0,1.68l1.68,0.96l0.96,0l1.2,0.96l-0,1.2c-0,0 0.308,0.24 1.2,0.24l0,-0.96c0.133,-0 0.24,-0.107 0.24,-0.24l0,-0.481c0,-0.152 -0.065,-0.297 -0.18,-0.398c-0.57,-0.492 -2.398,-2.018 -4.124,-2.844c-0.165,-0.076 -0.344,-0.115 -0.526,-0.115c-0.204,-0.002 -0.45,-0.002 -0.45,-0.002Zm-5.766,18.24l1.206,0l0.24,0.96l1.732,0c0.501,-0 0.908,-0.407 0.908,-0.908l0,-1.563c0,-0.112 -0.021,-0.222 -0.061,-0.326l-0.915,-2.381c-0.135,-0.351 -0.472,-0.582 -0.848,-0.582l-3.216,0c-1.226,0 -1.92,0.96 -1.92,0.96c0.276,0.41 0.597,0.792 0.789,1.011c-0.056,0.091 -0.151,0.152 -0.259,0.166c-0.114,0.014 -0.228,-0.029 -0.305,-0.114c-0.198,-0.216 -0.442,-0.343 -0.705,-0.343c-0.357,0 -0.678,0.235 -0.918,0.594c-0.05,0.082 -0.132,0.139 -0.227,0.155c-0.094,0.017 -0.191,-0.008 -0.266,-0.068c-0.147,-0.127 -0.322,-0.201 -0.509,-0.201c-0.53,0 -0.96,0.591 -0.96,1.32c0,0.729 0.43,1.32 0.96,1.32c0.187,0 0.362,-0.074 0.495,-0.219c0.08,-0.065 0.183,-0.091 0.284,-0.073c0.101,0.017 0.19,0.078 0.243,0.166c0.22,0.371 0.541,0.606 0.898,0.606c0.263,0 0.507,-0.127 0.704,-0.344c0.078,-0.085 0.192,-0.128 0.307,-0.114c0.114,0.014 0.215,0.083 0.27,0.185c0.244,0.462 0.596,0.753 0.988,0.753c0.448,0 0.844,-0.379 1.085,-0.96Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car42.car-tuning1_3{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M60.24,0l59.76,0l0,48l-120,0l0,-48l10.791,-0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,-0 -0.375,0.24 -0.96,0.24l-0,0.24c-0,-0 0.309,0.249 0.885,0.454c-0.38,0.157 -0.795,0.363 -1.198,0.631c-0.092,0.062 -0.117,0.187 -0.055,0.279c0.349,0.493 1.502,1.989 3.248,2.956c0,0 2.41,1.657 5.323,3.028c0.12,0.056 0.197,0.177 0.197,0.31l0,0.022l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,0 -0.375,0.24 -0.96,0.24l0,0.24c0,0 0.309,0.249 0.885,0.454c-0.377,0.156 -0.789,0.36 -1.189,0.625c-0.047,0.031 -0.079,0.08 -0.09,0.135c-0.011,0.055 0.001,0.113 0.033,0.159c0.204,0.288 0.668,0.898 1.354,1.546c-1.31,-0.026 -2.389,0.289 -2.958,0.5c-0.073,0.03 -0.12,0.101 -0.12,0.179c0,0.079 0.047,0.15 0.12,0.18c0.582,0.209 1.71,0.522 3.165,0.481l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.303,0.05 0.588,0.175 0.83,0.363c0.418,0.322 1.154,0.874 2.005,1.454c0.172,0.117 0.375,0.179 0.582,0.179l1.364,0l0,0.24l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l-0,0.195c-0.245,0.155 -0.575,0.225 -0.96,0.24c-1.486,0.071 -2.64,0.586 -2.64,1.2c0,0.649 1.292,1.179 2.903,1.199l0,0.001l0.937,0l0,0.72c-1.479,0 -2.62,0.337 -3.193,0.55c-0.067,0.029 -0.111,0.096 -0.111,0.169c-0,0.074 0.044,0.141 0.112,0.169c0.573,0.209 1.714,0.533 3.192,0.491l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.066,0.011 0.131,0.025 0.195,0.043l-1.894,1.473l1.2,0c0,0.133 0.107,0.24 0.24,0.24l0.48,0c-0,0 -1.205,0.904 -1.2,0.96c0.004,0.043 3.029,0.02 4.39,0.007c0.027,0.033 0.06,0.06 0.1,0.08c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l-0,-0.72Zm-48,12.72l-0,1.68l1.68,0.96l0.96,0l1.2,0.96l-0,1.2c-0,0 0.308,0.24 1.2,0.24l0,-0.96c0.133,-0 0.24,-0.107 0.24,-0.24l0,-0.481c0,-0.152 -0.065,-0.297 -0.18,-0.398c-0.57,-0.492 -2.398,-2.018 -4.124,-2.844c-0.165,-0.076 -0.344,-0.115 -0.526,-0.115c-0.204,-0.002 -0.45,-0.002 -0.45,-0.002Zm-5.766,18.24l1.206,0l0.24,0.96l1.732,0c0.501,-0 0.908,-0.407 0.908,-0.908l0,-1.563c0,-0.112 -0.021,-0.222 -0.061,-0.326l-0.915,-2.381c-0.135,-0.351 -0.472,-0.582 -0.848,-0.582l-3.216,0c-1.226,0 -1.92,0.96 -1.92,0.96c0.276,0.41 0.597,0.792 0.789,1.011c-0.056,0.091 -0.151,0.152 -0.259,0.166c-0.114,0.014 -0.228,-0.029 -0.305,-0.114c-0.198,-0.216 -0.442,-0.343 -0.705,-0.343c-0.357,0 -0.678,0.235 -0.918,0.594c-0.05,0.082 -0.132,0.139 -0.227,0.155c-0.094,0.017 -0.191,-0.008 -0.266,-0.068c-0.147,-0.127 -0.322,-0.201 -0.509,-0.201c-0.53,0 -0.96,0.591 -0.96,1.32c0,0.729 0.43,1.32 0.96,1.32c0.187,0 0.362,-0.074 0.495,-0.219c0.08,-0.065 0.183,-0.091 0.284,-0.073c0.101,0.017 0.19,0.078 0.243,0.166c0.22,0.371 0.541,0.606 0.898,0.606c0.263,0 0.507,-0.127 0.704,-0.344c0.078,-0.085 0.192,-0.128 0.307,-0.114c0.114,0.014 0.215,0.083 0.27,0.185c0.244,0.462 0.596,0.753 0.988,0.753c0.448,0 0.844,-0.379 1.085,-0.96Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.car .car42.car-tuning1_4{mask:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M60.24,0l59.76,0l0,48l-120,0l0,-48l10.791,-0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,-0 -0.375,0.24 -0.96,0.24l-0,0.24c-0,-0 0.309,0.249 0.885,0.454c-0.38,0.157 -0.795,0.363 -1.198,0.631c-0.092,0.062 -0.117,0.187 -0.055,0.279c0.349,0.493 1.502,1.989 3.248,2.956c0,0 2.41,1.657 5.323,3.028c0.12,0.056 0.197,0.177 0.197,0.31l0,0.022l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,0 -0.375,0.24 -0.96,0.24l0,0.24c0,0 0.309,0.249 0.885,0.454c-0.377,0.156 -0.789,0.36 -1.189,0.625c-0.047,0.031 -0.079,0.08 -0.09,0.135c-0.011,0.055 0.001,0.113 0.033,0.159c0.204,0.288 0.668,0.898 1.354,1.546c-1.31,-0.026 -2.389,0.289 -2.958,0.5c-0.073,0.03 -0.12,0.101 -0.12,0.179c0,0.079 0.047,0.15 0.12,0.18c0.582,0.209 1.71,0.522 3.165,0.481l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.303,0.05 0.588,0.175 0.83,0.363c0.418,0.322 1.154,0.874 2.005,1.454c0.172,0.117 0.375,0.179 0.582,0.179l1.364,0l0,0.24l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l-0,0.195c-0.245,0.155 -0.575,0.225 -0.96,0.24c-1.486,0.071 -2.64,0.586 -2.64,1.2c0,0.649 1.292,1.179 2.903,1.199l0,0.001l0.937,0l0,0.72c-1.479,0 -2.62,0.337 -3.193,0.55c-0.067,0.029 -0.111,0.096 -0.111,0.169c-0,0.074 0.044,0.141 0.112,0.169c0.573,0.209 1.714,0.533 3.192,0.491l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.066,0.011 0.131,0.025 0.195,0.043l-1.894,1.473l1.2,0c0,0.133 0.107,0.24 0.24,0.24l0.48,0c-0,0 -1.205,0.904 -1.2,0.96c0.004,0.043 3.029,0.02 4.39,0.007c0.027,0.033 0.06,0.06 0.1,0.08c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l-0,-0.72Zm-48,12.72l-0,1.68l1.68,0.96l0.96,0l1.2,0.96l-0,1.2c-0,0 0.308,0.24 1.2,0.24l0,-0.96c0.133,-0 0.24,-0.107 0.24,-0.24l0,-0.481c0,-0.152 -0.065,-0.297 -0.18,-0.398c-0.57,-0.492 -2.398,-2.018 -4.124,-2.844c-0.165,-0.076 -0.344,-0.115 -0.526,-0.115c-0.204,-0.002 -0.45,-0.002 -0.45,-0.002Zm-5.766,18.24l1.206,0l0.24,0.96l1.732,0c0.501,-0 0.908,-0.407 0.908,-0.908l0,-1.563c0,-0.112 -0.021,-0.222 -0.061,-0.326l-0.915,-2.381c-0.135,-0.351 -0.472,-0.582 -0.848,-0.582l-3.216,0c-1.226,0 -1.92,0.96 -1.92,0.96c0.276,0.41 0.597,0.792 0.789,1.011c-0.056,0.091 -0.151,0.152 -0.259,0.166c-0.114,0.014 -0.228,-0.029 -0.305,-0.114c-0.198,-0.216 -0.442,-0.343 -0.705,-0.343c-0.357,0 -0.678,0.235 -0.918,0.594c-0.05,0.082 -0.132,0.139 -0.227,0.155c-0.094,0.017 -0.191,-0.008 -0.266,-0.068c-0.147,-0.127 -0.322,-0.201 -0.509,-0.201c-0.53,0 -0.96,0.591 -0.96,1.32c0,0.729 0.43,1.32 0.96,1.32c0.187,0 0.362,-0.074 0.495,-0.219c0.08,-0.065 0.183,-0.091 0.284,-0.073c0.101,0.017 0.19,0.078 0.243,0.166c0.22,0.371 0.541,0.606 0.898,0.606c0.263,0 0.507,-0.127 0.704,-0.344c0.078,-0.085 0.192,-0.128 0.307,-0.114c0.114,0.014 0.215,0.083 0.27,0.185c0.244,0.462 0.596,0.753 0.988,0.753c0.448,0 0.844,-0.379 1.085,-0.96Z'/%3E%3C/svg%3E\") no-repeat 0px -50px/500px 200px,linear-gradient(#000 0 0) !important;mask-composite:exclude !important}.profile-car .shop.tuning .car .imgcont{background:hsl(0,0%,15%) !important}.car .car-tuning{z-index:10 !important}.car .car1:not(.car-tuning){position:relative}.car .car1:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M500,0l0,200l-500,0l0,-200l500,0Zm-419,149l-63,0l0,1l63,0l0,-1Zm-58,-69l41,0l-4,-7l-30.492,0c-3,2 -6.508,7 -6.508,7Zm158.619,-42c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 -0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.283,0 -0.619,0 -0.619,0c0,0 -0.184,-0.552 -0.394,-1.182c-0.371,-1.114 -1.34,-1.923 -2.503,-2.089c-3.825,-0.546 -12.103,-1.729 -12.103,-1.729l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8c-6,3 -8,6 -8,9c0,2 0,3.654 0,3.654c0,3.026 2.311,5.55 5.325,5.817l5.978,0.529c0.939,1.315 2.477,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.214,-2.173l31.592,0c0.938,1.315 2.476,2.173 4.213,2.173c1.737,-0 3.275,-0.858 4.213,-2.173c3.252,0 4.252,-3 4.252,-9l0.619,0Zm-100.641,-5c0,-0 -0.154,-0.475 -0.341,-1.047c-0.39,-1.196 -1.426,-2.066 -2.671,-2.244c-3.882,-0.554 -11.966,-1.709 -11.966,-1.709l-3.751,-4.287c-2.065,-2.36 -5.047,-3.713 -8.182,-3.713l-17.067,0c-6,0 -12,8 -12,8l-7.12,2.67c-0.529,0.199 -0.88,0.704 -0.88,1.27l-0,9.795c0,0.718 0.544,1.319 1.258,1.391l8.742,0.874l0.344,0.031c0.017,2.841 2.328,5.142 5.172,5.142c2.526,-0 4.631,-1.814 5.083,-4.209l0.401,0.036l29,0l0.413,-0.275c0.353,2.512 2.513,4.448 5.122,4.448c2.855,-0 5.173,-2.318 5.173,-5.173c-0,-0.342 -0.034,-0.676 -0.097,-1l2.556,-0c0.221,0 0.433,-0.088 0.589,-0.244c0.156,-0.156 0.244,-0.368 0.244,-0.589l-0,-4.167l0.619,0c0.21,-0 0.381,-0.171 0.381,-0.381c0,-0.931 0,-3.307 0,-4.238c0,-0.21 -0.171,-0.381 -0.381,-0.381c-0.291,-0 -0.641,-0 -0.641,-0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car1:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:2px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 70%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 70%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 70%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 70%) / 2) + calc((70% - 30%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 70%) / 2) + calc((70% - 30%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 70%) / 2) - calc((70% - 30%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 70%) / 2) - calc((70% - 30%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 70%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 70%) / 2) - 10%), transparent calc(100% - calc((100% - 70%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car2:not(.car-tuning){position:relative}.car .car2:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,0l500,0l0,200l-500,0l0,-200Zm110.17,35.44l-0.69,0.21c-0.11,0.03 -0.19,0.12 -0.21,0.23c-0.08,0.45 -0.25,1.94 -0.26,6.4c0,0.25 0.06,0.46 0.18,0.67c0.29,0.48 0.93,1.34 2.08,1.74c1.64,0.58 7.15,1.11 11.69,1.11l2.19,0c1.05,1.64 2.89,2.73 4.99,2.73c1.8,0 3.42,-0.81 4.51,-2.09l1.22,0.11l38.65,0c1.08,1.21 2.66,1.98 4.41,1.98c2.14,0 4,-1.13 5.05,-2.82l0.65,0l0.22,0.84l9.93,0c0.17,0 0.3,-0.13 0.3,-0.3l0,-1.05c0,-0.13 -0.09,-0.25 -0.22,-0.28l-0.55,-0.15l0,-3.59c0,-1.1 -0.23,-2.59 -0.99,-2.59c-1.64,0 0,-3.45 -1.99,-3.45l0,-2.99c0,-0.56 -0.46,-1.01 -1.02,-1.01l-0.57,0c-0.08,-0.12 -0.18,-0.21 -0.3,-0.29c-2.73,-1.77 -19.65,-2.62 -19.65,-2.62c-2.53,-3.44 -6.72,-7.14 -6.72,-7.14l0,-0.4c0,-0.56 -0.45,-1.02 -1.01,-1.02l-36.65,0c-1.77,0 -3.3,0.69 -4.48,2.01c-3.73,4.17 -6.9,8.78 -6.9,8.78l-1.72,0.4c-0.21,0.05 -0.35,0.2 -0.47,0.37c-0.59,0.84 -1,1.74 -1.26,2.46c-0.23,0.6 -0.36,1.15 -0.41,1.75Zm-96.17,45.56l57,0l0,-3l-7,-7l-42,0l-8,10Zm10.09,-39.44c-0.06,0.34 -0.09,0.68 -0.09,1.04c-0,3.27 2.65,5.93 5.93,5.93c3.27,0 5.92,-2.66 5.92,-5.93l36.81,0l0.46,-0.49c-0.02,0.16 -0.02,0.32 -0.02,0.49c-0,3.27 2.65,5.93 5.92,5.93c3.28,0 5.93,-2.66 5.93,-5.93c0,-0.27 -0.02,-0.53 -0.05,-0.79l2.05,0.04c0.48,0.01 0.81,-0.25 0.95,-0.64l1.59,0c0.45,0 0.84,-0.28 0.97,-0.72l0.71,-2.42c0.03,-0.09 0.01,-0.19 -0.04,-0.26c-0.06,-0.08 -0.15,-0.12 -0.24,-0.12l-0.85,0l0,-1.7l0.16,0c0.15,0 0.28,-0.13 0.28,-0.28l0,-4.29c0,-0.16 -0.13,-0.28 -0.28,-0.28l-0.3,0c-0.08,-0.12 -0.18,-0.21 -0.3,-0.29c-2.73,-1.77 -19.65,-2.62 -19.65,-2.62c-2.53,-3.44 -6.72,-7.14 -6.72,-7.14l0,-0.4c0,-0.56 -0.46,-1.01 -1.01,-1.02l-36.74,-0.15c-1.77,-0.01 -3.3,0.68 -4.48,2c-3.73,4.18 -6.9,8.79 -6.9,8.79l-1.63,0.55c-0.21,0.07 -0.35,0.2 -0.47,0.37c-0.59,0.84 -1,1.74 -1.27,2.46c-0.3,0.82 -0.44,1.56 -0.44,2.44l0,1.39l-1.18,0l0.79,3.21l4.54,0l0.28,0.83l9.37,0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car2:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:3.5px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 80%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 80%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 80%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 80%) / 2) + calc((80% - 45%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 80%) / 2) + calc((80% - 45%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 80%) / 2) - calc((80% - 45%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 80%) / 2) - calc((80% - 45%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 80%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 80%) / 2) - 10%), transparent calc(100% - calc((100% - 80%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car3:not(.car-tuning){position:relative}.car .car3:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 1000 500' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,0l1000,0l0,500l-1000,0l0,-500Zm352.56,0.1l-35.27,0l0,1.7l1.16,0l-0.1,1.64l-2.66,-0l0,-1.24l-1.26,0l0,4.42l1.26,0l0,-1.04l1.04,0l0,-1.09l1.56,0l-0.81,13.49c-0.96,0 -3.1,-0.1 -5.16,1.08c-0.64,0.36 -1.01,1 -1.01,1.73l0,0.14l-1.29,0l0,-17.23l-1.03,0l0,-3.6l-3,0l0,15.04l-0.79,-0l0,3.08l-1.06,-0l0,2.14l-0.81,-0l0,4.87l-1.49,-0l0,2.05l1.49,-0l0,9.1l-1.02,-0l0,1.35l1.02,-0l0,0.9l3.18,-0l0,2.83l-1.29,-0l0,0.79l4.9,-0l0,0.01l0.72,-0l0.15,1.36l0.72,-0.08l0.29,1.34l0.71,-0.16l0.44,1.3l0.68,-0.23l0.58,1.24l0.66,-0.31l0.71,1.17l0.62,-0.37l0.83,1.08l0.57,-0.44l0.45,0.41c2.94,-0 7.03,-0.01 9.98,-0.01l0.15,-0.46l1.36,0.06l0.04,-0.72l1.36,-0.09l-0.05,-0.72l1.35,-0.24l-0.12,-0.71l1.31,-0.38l-0.2,-0.7l1.26,-0.52l-0.27,-0.67l1.2,-0.66l-0.35,-0.63l1.12,-0.78l-0.41,-0.6l1.02,-0.9l-0.47,-0.54l0.92,-1.01l-0.53,-0.49l0.05,-0.07l3.71,-0l0,6.54l1.66,-0l0,-1.97l8.37,-0l0,1.97l1.67,-0l0,-6.54l12.3,-0l0,4.98l1.66,-0l0,-4.98l1.02,-0l-0.12,0.17l0.43,0.3l-0.48,0.88l0.47,0.25l-0.38,0.92l0.48,0.2l-0.28,0.96l0.51,0.15l-0.19,0.98l0.47,0.08l-0.07,0.88l0.4,0.03l0,0.74l0.52,-0l0.11,0.99l0.53,-0.06l0.21,0.97l0.52,-0.11l0.32,0.94l0.5,-0.17l0.42,0.91l0.48,-0.22l0.51,0.85l0.45,-0.27l0.37,0.46c2.54,0.01 6.81,0.01 9.36,0.01l0.02,-0.53l1,-0.07l-0.04,-0.52l0.99,-0.17l-0.09,-0.53l0.95,-0.27l-0.14,-0.5l0.92,-0.39l-0.2,-0.49l0.87,-0.48l-0.25,-0.46l0.81,-0.57l-0.3,-0.43l0.75,-0.66l-0.35,-0.39l0.68,-0.74l-0.39,-0.36l0.59,-0.8l-0.42,-0.31l0.5,-0.86l-0.46,-0.27l0.4,-0.91l-0.48,-0.21l0.29,-0.92l2.6,-0l-0,-5.15c-0.63,-1.97 -3.83,-4.97 -3.83,-4.97l-0,-7.59l-1.51,-0.36l-0,1.19c-0.6,-0.47 -1.56,-0.95 -3.06,-1.13c-7.65,-0.92 -15.71,-1.3 -23.57,-1.67l-0,-1.31l-5.14,-0.23l-1.26,-6.63l1.5,-0l-0,0.85l1.88,-0l-0,-7.93l-1.25,-0l-0,1.43l-0.63,-0l-0,0.82l-2.39,-0l-0,0.13l-0.45,-2.38l1.12,-0l-0,-1.7Zm-100,0l-35.26,0l-0,1.7l1.15,0l-0.96,16.18c-0.96,0 -3.1,-0.1 -5.16,1.08c-0.65,0.36 -1.01,1 -1.01,1.73l-0,0.14l-1.29,0l-0,-17.23l-1.04,0l-0,-3.6l-2.99,0l-0,15.04l-0.79,0l-0,3.08l-1.06,0l-0,2.14l-0.81,0l-0,4.87l-1.49,0l-0,2.05l1.49,0l-0,9.1l-1.02,0l-0,1.35l1.02,0l-0,0.9l3.17,0l-0,2.83l-1.29,0l-0,0.79l4.91,0l-0,0.01l0.72,0l0.15,1.36l0.72,-0.08l0.29,1.34l0.71,-0.16l0.44,1.3l0.68,-0.23l0.58,1.24l0.65,-0.31l0.72,1.17l0.61,-0.37l0.84,1.08l0.57,-0.44l0.44,0.41c2.95,0 7.03,-0.01 9.99,-0.01l0.15,-0.46l1.36,0.06l0.03,-0.72l1.37,-0.09l-0.05,-0.72l1.35,-0.24l-0.12,-0.71l1.31,-0.38l-0.2,-0.7l1.26,-0.52l-0.27,-0.67l1.2,-0.66l-0.35,-0.63l1.12,-0.78l-0.42,-0.6l1.03,-0.9l-0.48,-0.54l0.93,-1.01l-0.53,-0.49l0.05,-0.07l3.71,0l-0,6.54l1.66,0l-0,-1.97l8.37,0l-0,1.97l1.67,0l-0,-6.54l14.98,0l-0.12,0.17l0.43,0.3l-0.48,0.88l0.46,0.25l-0.38,0.92l0.49,0.2l-0.28,0.96l0.5,0.15l-0.18,0.98l0.47,0.08l-0.07,0.88l0.4,0.03l-0,0.74l0.52,0l0.11,0.99l0.53,-0.06l0.21,0.97l0.51,-0.11l0.33,0.94l0.5,-0.17l0.41,0.91l0.48,-0.22l0.52,0.85l0.45,-0.27l0.37,0.46c2.54,0.01 6.81,0.01 9.36,0.01l0.02,-0.53l1,-0.07l-0.04,-0.52l0.98,-0.17l-0.08,-0.53l0.95,-0.27l-0.14,-0.5l0.92,-0.39l-0.21,-0.49l0.88,-0.48l-0.25,-0.46l0.81,-0.57l-0.3,-0.43l0.75,-0.66l-0.35,-0.39l0.68,-0.74l-0.39,-0.36l0.59,-0.8l-0.43,-0.31l0.51,-0.86l-0.46,-0.27l0.4,-0.91l-0.48,-0.21l0.29,-0.92l2.27,0l-0,-3.28c-0,0 -1.41,-1.36 -4.82,-1.36l-0.16,-0.54l-0,-2.33c-0,0 -0.03,-1.47 0.83,-1.47l-0,-6.84c-0,-0.13 -0.79,-1.81 -3.93,-2.19c-9.23,-1.11 -19.07,-1.43 -28.45,-1.9l-1.51,-7.94l1.5,0l-0,0.85l1.88,0l-0,-7.93l-1.25,0l-0,1.43l-0.63,0l-0,0.82l-2.39,0l-0,0.13l-0.45,-2.38l1.11,0l-0,-1.7Zm-99.99,0l-35.26,0l-0,1.7l1.15,0l-0.96,16.18c-0.96,0 -3.1,-0.1 -5.16,1.08c-0.65,0.36 -1.02,1 -1.02,1.73l-0,5.22l-0.16,0.07l0.16,0.37l-0,0.36l-1.05,0.61l0.36,0.63l-1.11,0.81l0.43,0.58l-0.64,0.58l-0,-2.27l-1.55,0l-0,5.47l0.73,0l-0.21,0.3l0.59,0.42l-0.66,1.2l0.63,0.34l-0.52,1.27l0.66,0.28l-0.38,1.31l0.69,0.2l-0.24,1.35l0.64,0.11l-0.1,1.21l0.54,0.04l-0,1.01l0.73,0l0.15,1.36l0.72,-0.08l0.29,1.34l0.71,-0.16l0.43,1.3l0.69,-0.23l0.58,1.24l0.65,-0.31l0.71,1.17l0.62,-0.37l0.83,1.08l0.58,-0.44l0.44,0.41c2.95,0 7.03,-0.01 9.99,-0.01l0.14,-0.46l1.37,0.06l0.03,-0.72l1.37,-0.09l-0.05,-0.72l1.35,-0.24l-0.13,-0.71l1.32,-0.38l-0.2,-0.7l1.26,-0.52l-0.28,-0.67l1.2,-0.66l-0.34,-0.63l1.12,-0.78l-0.42,-0.6l1.03,-0.9l-0.48,-0.54l0.93,-1.01l-0.53,-0.49l0.05,-0.07l3.7,0l-0,6.54l1.67,0l-0,-1.97l8.37,0l-0,1.97l1.67,0l-0,-6.54l14.97,0l-0.11,0.17l0.43,0.3l-0.48,0.88l0.46,0.25l-0.38,0.92l0.48,0.2l-0.27,0.96l0.5,0.15l-0.18,0.98l0.47,0.08l-0.07,0.88l0.39,0.03l-0,0.74l0.53,0l0.11,0.99l0.53,-0.06l0.21,0.97l0.51,-0.11l0.32,0.94l0.5,-0.17l0.42,0.91l0.48,-0.22l0.52,0.85l0.45,-0.27l0.37,0.46c2.53,0.01 6.81,0.01 9.36,0.01l0.02,-0.53l1,-0.07l-0.04,-0.52l0.98,-0.17l-0.09,-0.53l0.96,-0.27l-0.14,-0.5l0.92,-0.39l-0.21,-0.49l0.88,-0.48l-0.25,-0.46l0.81,-0.57l-0.3,-0.43l0.74,-0.66l-0.34,-0.39l0.68,-0.74l-0.39,-0.36l0.59,-0.8l-0.43,-0.31l0.5,-0.86l-0.45,-0.27l0.4,-0.91l-0.48,-0.21l0.29,-0.92l2.27,0l-0,-3.28c-0,0 -1.41,-1.36 -4.83,-1.36l-0.16,-0.54l-0,-2.33c-0,0 -0.02,-1.47 0.84,-1.47l-0,-6.84c-0,-0.13 -0.79,-1.81 -3.93,-2.19c-9.23,-1.11 -19.08,-1.43 -28.46,-1.9l-1.5,-7.94l1.5,0l-0,0.85l1.88,0l-0,-7.93l-1.25,0l-0,1.43l-0.63,0l-0,0.82l-2.4,0l-0,0.13l-0.45,-2.38l1.12,0l-0,-1.7Zm-89.41,0l-2.92,0l-0,1.7l-0.61,0l-0,9.75l-1.02,0l-0,5.53l-4.3,-0.26l-1.5,-7.94l1.5,0l-0,0.85l1.88,0l-0,-7.93l-1.26,0l-0,1.43l-0.62,0l-0,0.82l-2.4,0l-0,0.13l-0.45,-2.38l1.12,0l-0,-1.7l-35.26,0l-0,1.7l1.15,0l-0.96,16.18c-0.96,0 -3.1,-0.1 -5.17,1.08c-0.64,0.36 -1.01,1 -1.01,1.73l-0,5.22l-0.16,0.07l0.16,0.37l-0,0.36l-1.06,0.61l0.36,0.63l-1.1,0.81l0.43,0.58l-1.02,0.92l0.49,0.54l-0.9,1.03l0.54,0.47l-0.78,1.12l0.59,0.42l-0.66,1.2l0.63,0.34l-0.52,1.27l0.66,0.28l-0.38,1.31l0.69,0.2l-0.24,1.35l0.64,0.11l-0.1,1.21l0.54,0.04l-0,1.01l0.72,0l0.15,1.36l0.72,-0.08l0.3,1.34l0.7,-0.16l0.44,1.3l0.69,-0.23l0.58,1.24l0.65,-0.31l0.71,1.17l0.62,-0.37l0.83,1.08l0.58,-0.44l0.44,0.41c2.95,0 7.03,-0.01 9.99,-0.01l0.14,-0.46l1.37,0.06l0.03,-0.72l1.37,-0.09l-0.05,-0.72l1.35,-0.24l-0.13,-0.71l1.32,-0.38l-0.21,-0.7l1.27,-0.52l-0.28,-0.67l1.2,-0.66l-0.35,-0.63l1.12,-0.78l-0.41,-0.6l1.03,-0.9l-0.48,-0.54l0.93,-1.01l-0.53,-0.49l0.05,-0.07l3.7,0l-0,6.54l1.67,0l-0,-1.97l8.37,0l-0,1.97l1.66,0l-0,-6.54l14.98,0l-0.11,0.17l0.43,0.3l-0.48,0.88l0.46,0.25l-0.38,0.92l0.48,0.2l-0.28,0.96l0.51,0.15l-0.18,0.98l0.47,0.08l-0.07,0.88l0.39,0.03l-0,0.74l0.53,0l0.11,0.99l0.53,-0.06l0.21,0.97l0.51,-0.11l0.32,0.94l0.5,-0.17l0.42,0.91l0.48,-0.22l0.52,0.85l0.45,-0.27l0.37,0.46c2.53,0.01 6.81,0.01 9.36,0.01l0.02,-0.53l0.99,-0.07l-0.03,-0.52l0.98,-0.17l-0.09,-0.53l0.96,-0.27l-0.15,-0.5l0.93,-0.39l-0.21,-0.49l0.87,-0.48l-0.25,-0.46l0.82,-0.57l-0.3,-0.43l0.74,-0.66l-0.34,-0.39l0.67,-0.74l-0.38,-0.36l0.59,-0.8l-0.43,-0.31l0.5,-0.86l-0.46,-0.27l0.41,-0.91l-0.49,-0.21l0.3,-0.92l2.27,0l-0,-3.28c-0,0 -1.41,-1.36 -4.83,-1.36l-0.16,-0.54l-0,-2.33c-0,0 -0.02,-1.47 0.83,-1.47l-0,-6.84c-0,0 -0.78,-1.78 -3.92,-2.19c-1.87,-0.24 -11.62,-0.87 -19.19,-1.34l-0,-5.83l-1.02,0l-0,-9.75l0.6,0l-0,-1.7Zm287.55,37.63l-8.37,0l-0,2.9l8.37,0l-0,-2.9Zm1.31,-32.84l0.61,3.2l-0,-0.05l1.65,0l-0,-3.15l-2.26,0Zm-101.3,32.84l-8.37,0l-0,2.9l8.37,0l-0,-2.9Zm1.31,-32.84l0.61,3.2l-0,-0.05l1.65,0l-0,-3.15l-2.26,0Zm-101.3,32.84l-8.37,0l-0,2.9l8.37,0l-0,-2.9Zm1.31,-32.84l0.61,3.2l-0,-0.05l1.65,0l-0,-3.15l-2.26,0Zm-101.3,32.84l-8.37,0l-0,2.9l8.37,0l-0,-2.9Zm1.31,-32.84l0.6,3.2l-0,-0.05l1.66,0l-0,-3.15l-2.26,0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:1000px 500px !important;pointer-events:none;z-index:1}.car .car3:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 90%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 90%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 90%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 90%) / 2) + calc((90% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 90%) / 2) + calc((90% - 40%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 90%) / 2) - calc((90% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - calc((90% - 40%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 90%) / 2) - 10%), transparent calc(100% - calc((100% - 90%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car4:not(.car-tuning){position:relative}.car .car4:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-89.979,10.8l12.428,-0c0.301,0.571 0.9,0.96 1.59,0.96c0.689,-0 1.288,-0.389 1.589,-0.96l2.612,-0c0.064,0 0.125,-0.025 0.17,-0.07c0.045,-0.045 0.07,-0.106 0.07,-0.17l0.24,-0l-0,-0.72l-0.24,0l-0,-1.2c-0,-0.053 -0.018,-0.104 -0.05,-0.146c-0.713,-0.924 -1.613,-1.472 -1.613,-1.472c-0.046,-0.043 -0.073,-0.103 -0.075,-0.166c-0.025,-0.244 -0.193,-0.544 -0.468,-0.794c-0.273,-0.247 -0.584,-0.386 -0.828,-0.386c-0.063,0.003 -0.125,-0.019 -0.173,-0.062c-3.667,-3.315 -5.315,-4.495 -5.773,-4.804c-0.097,-0.059 -0.208,-0.091 -0.322,-0.093c-1.559,-0.027 -12.641,-0.214 -13.868,-0.234c-0.071,-0.001 -0.138,0.029 -0.184,0.083c-0.864,1.047 -0.886,3.034 -0.886,3.034l0,4.32l-0.059,-0c-0.048,0 -0.094,0.019 -0.128,0.053c-0.034,0.034 -0.053,0.08 -0.053,0.128l-0,1.634c0,0.219 0.087,0.429 0.242,0.583c0.154,0.155 0.364,0.242 0.583,0.242l1.912,0c0.246,0.699 0.912,1.2 1.694,1.2c0.69,0 1.289,-0.389 1.59,-0.96Zm-27.382,-0.72c0.06,0.937 0.84,1.68 1.792,1.68c0.87,0 1.596,-0.619 1.761,-1.44l12.086,0c0.165,0.821 0.891,1.44 1.761,1.44c0.869,0 1.595,-0.619 1.76,-1.44l1.481,0c0.133,0 0.24,-0.107 0.24,-0.24l0,-2.296c0,-0.066 -0.028,-0.13 -0.076,-0.175c-0.215,-0.2 -0.425,-0.395 -0.627,-0.587c-0.046,-0.043 -0.073,-0.103 -0.075,-0.166c-0.025,-0.244 -0.193,-0.544 -0.468,-0.794c-0.273,-0.247 -0.584,-0.386 -0.828,-0.386c-0.063,0.003 -0.125,-0.019 -0.173,-0.062c-3.667,-3.315 -5.315,-4.495 -5.773,-4.804c-0.097,-0.059 -0.208,-0.091 -0.322,-0.093c-1.559,-0.027 -12.641,-0.214 -13.868,-0.234c-0.071,-0.001 -0.138,0.029 -0.184,0.083c-0.864,1.047 -0.886,3.034 -0.886,3.034l-0,6.24c0,0.133 0.107,0.24 0.24,0.24l2.159,0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car4:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 100%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 100%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 100%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 100%) / 2) + calc((100% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 100%) / 2) + calc((100% - 40%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 100%) / 2) - calc((100% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 100%) / 2) - calc((100% - 40%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 100%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 100%) / 2) - 10%), transparent calc(100% - calc((100% - 100%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car5:not(.car-tuning){position:relative}.car .car5:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,0l500,0l0,200l-500,0l0,-200Zm92.46,33.62l0.99,0c0.44,0 0.8,0.36 0.8,0.8l-0,3.55c-0,0.43 -0.34,0.79 -0.76,0.8c-0.22,0.01 -0.38,0.19 -0.38,0.4l-0,1.6c-0,0.22 -0.18,0.4 -0.4,0.4l-0.55,0l-0,0.45c-0,0.22 -0.18,0.4 -0.4,0.4l-6.85,0c-0,3.29 -2.67,5.96 -5.97,5.96c-2.9,0 -5.31,-2.07 -5.85,-4.81l-3.85,0c-0.22,0 -0.4,-0.18 -0.4,-0.4l-0,-0.35c-0,-0.22 -0.18,-0.4 -0.4,-0.4l-33.83,0c-0.22,0 -0.4,0.18 -0.4,0.4l-0,0.35c-0,0.22 -0.18,0.4 -0.4,0.4l-3.96,0c-0.53,2.74 -2.95,4.81 -5.85,4.81c-2.9,0 -5.32,-2.07 -5.85,-4.81l-1.54,0c-0.82,0 -1.5,-0.67 -1.5,-1.5l-0,-0.5l-7.82,0c-0.82,0 -1.5,-0.67 -1.5,-1.5l-0,-0.55c-0,-0.22 0.18,-0.4 0.4,-0.4l1.14,0c0.22,0 0.4,-0.18 0.4,-0.4l-0,-0.41c-0,-0.22 -0.18,-0.4 -0.4,-0.4l-0.18,0c-0.22,0 -0.4,-0.18 -0.4,-0.39l-0,-3.03c-0,-0.22 0.18,-0.4 0.4,-0.4l0.18,0c0.22,0 0.4,-0.18 0.4,-0.4l-0,-7.22c-0,-0.22 0.18,-0.4 0.4,-0.4l26.47,0l3.2,-10.58c0.05,-0.17 0.2,-0.28 0.38,-0.28l17.2,0c1.02,0.43 2.06,1.96 2.06,1.96l15.17,8.9l15.67,3.62c1.85,0.43 3.24,1.67 3.87,3.45l0.31,0.88Zm13.4,0.99c-0,-0.52 0.43,-0.95 0.95,-0.95l0.58,-0c0.22,-0 0.4,-0.15 0.4,-0.37l-0,-7.22c-0,-0.22 0.18,-0.4 0.4,-0.4l26.47,-0l3.2,-10.58c0.05,-0.17 0.2,-0.28 0.38,-0.28l17.21,-0c1.01,0.43 2.05,1.96 2.05,1.96l15.17,8.9l15.67,3.62c1.85,0.43 3.24,1.67 3.87,3.45l0.32,0.88c0.46,0.27 1.86,0.81 1.86,2.83l0,0.4c0.64,0.18 1.11,0.77 1.11,1.46l0,4.73c0,1.11 -0.91,2.01 -2.01,2.01l-9.35,0c-1.04,1.76 -2.95,2.93 -5.13,2.93c-2.19,0 -4.1,-1.17 -5.14,-2.93l-44.67,0c-1.04,1.76 -2.95,2.93 -5.14,2.93c-2.18,0 -4.1,-1.17 -5.14,-2.93l-9.67,0c-1.87,0 -3.39,-1.52 -3.39,-3.4l0,-7.04Zm-90.53,83.13l5.95,-0c-0.24,-0.01 -0.42,-0.21 -0.42,-0.44l-0,-4.13c-0,-0.25 0.2,-0.45 0.44,-0.45l13.54,-0c0.24,-0 0.44,0.2 0.44,0.45l-0,4.13c-0,0.23 -0.19,0.43 -0.42,0.44l0.8,-0c0.29,-0 0.53,0.24 0.53,0.53l-0,1.86l0.55,-0l-0,-3.66c-0,-0.35 0.29,-0.64 0.64,-0.64l0.27,-0c0.35,-0 0.64,0.29 0.64,0.64l-0,11.61l-30.42,-0.87c-0.08,-0 -0.14,-0.06 -0.14,-0.14l-0,-1.32c-0,-0.08 0.06,-0.14 0.14,-0.14l4.95,-0l-0,-1.6c-0,-0.17 0.14,-0.31 0.32,-0.31l2.19,-0c-0.29,-0 -0.53,-0.24 -0.53,-0.53l-0,-4.9c-0,-0.29 0.24,-0.53 0.53,-0.53Zm19.95,8.53l-0,-2.57l-1.27,-0c0.17,0.01 0.3,0.14 0.3,0.31l-0,2.26l0.97,-0Zm-10.58,-8.53c0.29,-0 0.52,0.24 0.52,0.53l-0,4.9c-0,0.29 -0.23,0.53 -0.52,0.53l1.59,-0c-0.29,-0 -0.53,-0.24 -0.53,-0.53l-0,-4.9c-0,-0.29 0.24,-0.53 0.53,-0.53l-1.59,-0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car5:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 90%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 90%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 90%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 90%) / 2) + calc((90% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 90%) / 2) + calc((90% - 40%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 90%) / 2) - calc((90% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - calc((90% - 40%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 90%) / 2) - 10%), transparent calc(100% - calc((100% - 90%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car6:not(.car-tuning){position:relative}.car .car6:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-81.36,2.379l0,-1.232c-0,-0.103 -0.084,-0.187 -0.187,-0.187l-0.346,0c-0.103,0 -0.187,0.084 -0.187,0.187l-0,1.013l-0.24,0l-0,0.201l-0.72,-0.012l-0,-0.429l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.007l-5.04,-0.09l-0,-0.557l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.136l-2.916,-0.052c-0.124,-0.003 -0.237,0.069 -0.289,0.181c-0.136,0.305 -0.416,0.954 -0.684,1.707c-0.069,-0.126 -0.203,-0.212 -0.357,-0.212l-0.628,-0c-0.224,0 -0.406,0.182 -0.406,0.406l0,3.508c0,0.224 0.182,0.406 0.406,0.406l0.074,0l-0,0.24c-0,0 0.369,0.96 2.88,0.96c-0,1.192 0.968,2.16 2.16,2.16c1.111,0 2.027,-0.841 2.147,-1.92l10.333,0l0.013,-0.001c0.119,1.08 1.036,1.921 2.147,1.921c1.192,0 2.16,-0.968 2.16,-2.16l0.24,0c-0,0 0.609,-0.018 0.96,-0.48l-0,-2.64c0,-0.064 -0.025,-0.125 -0.07,-0.17c-0.045,-0.045 -0.106,-0.07 -0.17,-0.07c0,-0 -1.176,-0.894 -6.24,-1.2c0,0 -0.659,-1.139 -1.275,-2.136c-0.103,-0.165 -0.282,-0.266 -0.475,-0.27l-0.89,-0.015Zm17.157,7.701l1.083,0l0,0.24l8.16,0l0,-0.24l1.323,0c0.297,0.839 1.097,1.44 2.037,1.44c0.847,0 1.581,-0.489 1.935,-1.2l0.856,0c0.58,-0 1.049,-0.469 1.049,-1.049l-0,-1.351c0,-0.128 -0.051,-0.25 -0.14,-0.34c-0.09,-0.089 -0.212,-0.14 -0.34,-0.14l-0,-0l-0,-1.2c0,-0.064 -0.025,-0.125 -0.07,-0.17c-0.045,-0.045 -0.106,-0.07 -0.17,-0.07c0,-0 -1.176,-0.894 -6.24,-1.2c-0,0 -0.659,-1.139 -1.275,-2.136c-0.103,-0.165 -0.282,-0.266 -0.475,-0.27l-0.89,-0.015l-0,-1.232c-0,-0.103 -0.084,-0.187 -0.187,-0.187l-0.346,0c-0.103,0 -0.187,0.084 -0.187,0.187l-0,1.013l-0.24,0l-0,0.201l-0.72,-0.012l-0,-0.429l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.007l-5.04,-0.09l-0,-0.557l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.136l-2.916,-0.052c-0.124,-0.003 -0.237,0.069 -0.289,0.181c-0.136,0.305 -0.416,0.954 -0.684,1.707c-0.069,-0.126 -0.203,-0.212 -0.357,-0.212l-0.628,-0c-0.224,0 -0.406,0.182 -0.406,0.406l0,3.508c0,0.224 0.182,0.406 0.406,0.406l0.554,0l-0,1.461c0,0.254 0.205,0.459 0.459,0.459l2.064,-0c0.297,0.839 1.097,1.44 2.037,1.44c0.94,0 1.74,-0.601 2.037,-1.44Zm-39.477,4.56l-13.44,-0l-0,2.16l13.44,0l-0,-2.16Zm-12.72,-5.28c-0,1.192 0.968,2.16 2.16,2.16c1.111,0 2.027,-0.841 2.147,-1.92l10.333,0l0.013,-0.001c0.119,1.08 1.036,1.921 2.147,1.921c1.192,0 2.16,-0.968 2.16,-2.16l0.24,0c-0,0 0.609,-0.018 0.96,-0.48l-0,-2.64c0,-0.064 -0.025,-0.125 -0.07,-0.17c-0.045,-0.045 -0.106,-0.07 -0.17,-0.07c0,-0 -1.176,-0.894 -6.24,-1.2c-0,0 -0.659,-1.139 -1.275,-2.136c-0.103,-0.165 -0.282,-0.266 -0.475,-0.27l-2.57,-0.045l-0,-0.429l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.007l-5.04,-0.09l-0,-0.557l-0.8,0c-0.106,-0 -0.208,0.042 -0.283,0.117c-0.075,0.075 -0.117,0.177 -0.117,0.283l-0,0.136l-2.916,-0.052c-0.124,-0.003 -0.237,0.069 -0.289,0.181c-0.136,0.305 -0.416,0.954 -0.684,1.707c-0.069,-0.126 -0.203,-0.212 -0.357,-0.212l-0.628,-0c-0.224,0 -0.406,0.182 -0.406,0.406l0,3.508c0,0.224 0.182,0.406 0.406,0.406l0.074,0l-0,0.24c-0,0 0.369,0.96 2.88,0.96Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car6:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:4px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 90%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 90%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 90%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 90%) / 2) + calc((90% - 50%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 90%) / 2) + calc((90% - 50%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 90%) / 2) - calc((90% - 50%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - calc((90% - 50%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 90%) / 2) - 10%), transparent calc(100% - calc((100% - 90%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car7:not(.car-tuning){position:relative}.car .car7:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,0l500,0l0,200l-500,0l0,-200Zm215.66,35.94l0,-5.38c0,-1.6 0.46,-2.98 1.43,-4.25c1.41,-1.84 3.69,-4.56 6.15,-6.34l-1.26,0l0,-3.06l3.05,0l0,0.83l2.34,-0l0,1.14l11.21,-0l0,-0.93c0,-0.25 0.21,-0.46 0.47,-0.46l8.79,-0c0.25,-0 0.46,0.21 0.46,0.46l0,0.93l2.67,-0c7.05,-0 16.38,6.45 19.44,8.56c0,-0 3.63,0.14 7.68,2.46c0.67,-0.2 2,0.47 3.2,1.67c0.75,0.75 1.3,1.55 1.56,2.21c0.29,0.33 0.58,0.67 0.86,1.03l0.35,0.21l0,4.15l0.36,-0c0.39,-0 0.71,0.32 0.71,0.71l0,3.04l0.31,-0c0.32,-0 0.59,0.26 0.59,0.59l0,2.39l-8.12,-0c-1,1.63 -2.81,2.72 -4.87,2.72c-2.06,-0 -3.86,-1.09 -4.87,-2.72l-38.27,-0c-1,1.63 -2.81,2.72 -4.87,2.72c-2.06,-0 -3.86,-1.09 -4.87,-2.72l-5.4,-0c-0.55,-0 -1.01,-0.46 -1.01,-1.01l0,-7.94c0,-0.55 0.46,-1.01 1.01,-1.01l0.9,-0Zm-145.98,-8.43c0,-0 4.73,0.12 9.41,3.1c0.65,0.12 1.53,0.59 2.35,1.33c0.69,0.63 1.2,1.31 1.45,1.9c0.28,0.31 0.55,0.63 0.82,0.97l0.35,0.21l0,5.89c0,1.1 -0.9,2.01 -2.01,2.01l-3.3,-0c0,3.15 -2.56,5.7 -5.71,5.7c-3.15,-0 -5.71,-2.55 -5.71,-5.7l-1.92,-0l0,0.89l-33.86,-0l0,-0.89l-0.81,-0c0,3.15 -2.56,5.7 -5.71,5.7c-3.15,-0 -5.71,-2.55 -5.71,-5.7l-2.31,-0c-1.11,-0 -2.01,-0.91 -2.01,-2.01l0,-4.97l0.65,-0l0,-5.38c0,-1.6 0.47,-2.98 1.44,-4.25c1.64,-2.16 4.49,-5.51 7.42,-7.17c0.31,-0.17 0.63,-0.26 0.99,-0.26l24.9,-0c1.71,-0 6.19,-0.35 19.28,8.63Zm111.74,4.43c-0.81,-0.73 -1.67,-1.2 -2.32,-1.33c-4.68,-2.98 -9.42,-3.1 -9.42,-3.1c-13.09,-8.98 -17.57,-8.63 -19.28,-8.63l-2.11,-0l0,-0.93c0,-0.25 -0.2,-0.46 -0.46,-0.46l-8.79,-0c-0.25,-0 -0.46,0.21 -0.46,0.46l0,0.93l-11.21,-0l0,-1.14l-2.34,-0l0,-0.83l-3.05,-0l0,3.06l1.26,-0c-2.46,1.78 -4.75,4.5 -6.15,6.34c-0.97,1.27 -1.44,2.65 -1.44,4.25l0,5.38l-0.65,-0l0,4.97c0,1.1 0.9,2.01 2.01,2.01l2.31,-0c0,3.15 2.56,5.7 5.71,5.7c3.15,-0 5.71,-2.55 5.71,-5.7l0.82,-0l0,0.89l33.85,-0l0,-0.89l1.92,-0c0,3.15 2.56,5.7 5.71,5.7c3.15,-0 5.71,-2.55 5.71,-5.7l3.3,-0c1.11,-0 2.01,-0.91 2.01,-2.01l0,-5.89l-0.35,-0.21c-0.28,-0.36 -0.57,-0.7 -0.86,-1.02c-0.26,-0.57 -0.76,-1.24 -1.43,-1.85Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car7:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 80%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 80%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 80%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 80%) / 2) + calc((80% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 80%) / 2) + calc((80% - 40%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 80%) / 2) - calc((80% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 80%) / 2) - calc((80% - 40%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 80%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 80%) / 2) - 10%), transparent calc(100% - calc((100% - 80%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car8:not(.car-tuning){position:relative}.car .car8:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-52.08,6.502l0,-0.262l-1.92,0l0,0.012c-0.299,-0.014 -0.48,-0.012 -0.48,-0.012c0,0 -3.862,-2.152 -4.8,-2.4c-0.158,-0.042 -0.318,-0.077 -0.48,-0.105l0,-0.375l-2.4,-0l0,0.24l-0.24,-0c-2.924,-0 -3.6,0.48 -3.6,0.48l-1.68,0l0,0.48c-0.263,0.096 -0.502,0.189 -0.72,0.279l0,-0.039l-0.48,-0l0,-0.24l-0.24,-0l0,-0.24l-0.24,0l0,-0.24l-0.72,0l0,0.24l-0.48,0l0,0.24l0.24,-0l0,1.378c-0.203,0.192 -0.24,0.302 -0.24,0.302l0,1.92l-0.72,0l-0,0.48c0,1.193 0.967,2.16 2.16,2.16l1.036,-0c0.283,0.296 0.682,0.48 1.124,0.48c0.305,-0 0.59,-0.088 0.831,-0.24l12.258,-0c0.241,0.152 0.526,0.24 0.831,0.24c0.305,-0 0.59,-0.088 0.831,-0.24l3.969,-0l-0,-0.299c0,-0.048 -0.019,-0.094 -0.053,-0.128c-0.034,-0.034 -0.08,-0.053 -0.128,-0.053l-0.059,-0l-0,-1.143c-0,-0.429 -0.348,-0.777 -0.777,-0.777l-0.183,0l0,-0.96c-0.713,-0.624 -1.716,-0.978 -2.64,-1.178Zm-64.318,3.819c0.234,0.563 0.79,0.959 1.438,0.959c0.565,-0 1.06,-0.301 1.333,-0.751l11.173,-0.153c0.247,0.533 0.788,0.904 1.414,0.904c0.642,-0 1.193,-0.389 1.432,-0.943l1.208,-0.017c0.628,-0 0.96,-0.48 0.96,-0.48l-0,-2.16c-1.698,-1.485 -5.04,-1.44 -5.04,-1.44c-0,-0 -3.862,-2.152 -4.8,-2.4c-0.938,-0.248 -1.92,-0.24 -3.12,-0.24c-2.924,-0 -3.6,0.48 -3.6,0.48l-1.68,-0l-0,0.48c-2.64,0.96 -2.88,1.68 -2.88,1.68l-0,1.68l-0.24,-0l0,0.96c-0,0.681 0.516,1.252 1.194,1.319l1.206,0.121l0.002,0.001Zm40.318,-3.819l-0,-0.228l-1.58,0c-0.497,-0.038 -0.82,-0.034 -0.82,-0.034c0,-0 -3.862,-2.152 -4.8,-2.4c-0.158,-0.042 -0.318,-0.077 -0.48,-0.105l-0,-0.375l-2.4,-0l-0,0.24l-0.24,-0c-2.924,-0 -3.6,0.48 -3.6,0.48l-1.68,-0l0,0.48c-0.263,0.096 -0.502,0.189 -0.72,0.279l-0,-0.039l-0.48,-0l-0,-0.24l-0.24,-0l-0,-0.24l-0.24,-0l-0,-0.24l-0.72,-0l-0,0.24l-0.48,-0l-0,0.24l0.24,-0l-0,1.378c-0.203,0.192 -0.24,0.302 -0.24,0.302l0,1.68l-0.24,-0l0,0.96c-0,0.681 0.516,1.252 1.194,1.319l1.206,0.121l0.002,0.001c0.234,0.563 0.79,0.959 1.438,0.959c0.565,-0 1.06,-0.301 1.333,-0.751l11.173,-0.153c0.247,0.533 0.788,0.904 1.414,0.904c0.642,-0 1.193,-0.389 1.432,-0.943l1.208,-0.017c0.628,-0 0.96,-0.48 0.96,-0.48l0,-2.16c-0.713,-0.624 -1.716,-0.978 -2.64,-1.178Zm-39.84,11.738c4.8,1.2 14.16,0.96 14.16,0.96c-2.566,-2.612 -5.52,-3.36 -5.52,-3.36c-0,-0 -3.784,-0.231 -5.52,-0c-1.736,0.231 -3.12,1.2 -3.12,1.2l-0,1.2Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car8:not(.car-tuning)::after{content:\"\";position:absolute;bottom:1px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 95%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 95%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 95%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 95%) / 2) + calc((95% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 95%) / 2) + calc((95% - 40%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 95%) / 2) - calc((95% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - calc((95% - 40%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 95%) / 2) - 10%), transparent calc(100% - calc((100% - 95%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car9:not(.car-tuning){position:relative}.car .car9:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-95.759,9.12l-0.001,-0c0,-0 0,0.388 0.002,0.723c-0,0.289 0.184,0.545 0.458,0.636c1.06,0.332 2.352,0.514 3.867,0.553c0.276,0.438 0.764,0.728 1.319,0.728c0.551,-0 1.037,-0.287 1.314,-0.72l11.523,-0c0.277,0.433 0.762,0.72 1.314,0.72c0.552,-0 1.037,-0.287 1.314,-0.72l2.649,-0c0.133,-0 0.24,-0.107 0.24,-0.24l0,-1.68c-0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.275c-0,-0.113 -0.092,-0.205 -0.205,-0.205l-0.035,0l-0,-0.606c-0,-0.566 -0.336,-1.077 -0.855,-1.3c-0.179,-0.078 -0.374,-0.127 -0.578,-0.143l-0.967,-0.074l0,-0.001c0,-0.136 -0.054,-0.268 -0.151,-0.365c-0.097,-0.097 -0.229,-0.151 -0.365,-0.151l-2.069,0c-0.078,-0 -0.153,0.031 -0.209,0.086c-0.055,0.056 -0.086,0.131 -0.086,0.209l-0.72,-0.055c-2.16,-1.92 -2.64,-2.88 -8.88,-2.88c-6.343,-0 -7.2,0.24 -7.2,0.24l0,0.24l0.48,-0l0,0.13c-0,0.072 -0.018,0.143 -0.053,0.206l-1.147,2.064c-0.129,0.024 -0.236,0.083 -0.328,0.166c-0,0 -0.152,0.554 -0.152,1.274l0,0.72l-0.048,-0c-0.051,0 -0.1,0.02 -0.136,0.056c-0.036,0.036 -0.056,0.085 -0.056,0.136c0,0.189 0,0.487 0.001,0.768Zm-19.872,1.44c0.162,0.688 0.78,1.2 1.517,1.2c0.737,0 1.355,-0.512 1.517,-1.2l11.117,-0c0.162,0.688 0.78,1.2 1.517,1.2c0.823,0 1.497,-0.638 1.555,-1.446c0.529,-0.001 1.079,0 1.52,0.002c0.235,0 0.461,-0.093 0.628,-0.259c0.166,-0.166 0.26,-0.392 0.26,-0.627l-0,-0.825c-0,-0.113 -0.092,-0.205 -0.205,-0.205l-0.035,0l-0,-0.606c-0,-0.566 -0.336,-1.077 -0.855,-1.3c-0.179,-0.078 -0.374,-0.127 -0.578,-0.143l-4.567,-0.351c-2.16,-1.92 -2.64,-2.88 -8.88,-2.88c-6.343,-0 -7.2,0.24 -7.2,0.24l-0,0.24l0.48,-0l0,0.13c-0,0.072 -0.018,0.143 -0.053,0.206l-1.147,2.064c-0.129,0.024 -0.236,0.083 -0.328,0.166c-0,0 -0.152,0.554 -0.152,1.274l-0,0.72l-0.048,-0c-0.051,0 -0.1,0.02 -0.136,0.056c-0.036,0.036 -0.056,0.085 -0.056,0.136c-0,0.325 -0,0.977 0.003,1.299c0,0.108 0.049,0.211 0.133,0.279c0.34,0.194 1.389,0.63 3.944,0.63l0.049,-0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car9:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:4px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 90%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 90%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 90%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 90%) / 2) + calc((90% - 45%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 90%) / 2) + calc((90% - 45%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 90%) / 2) - calc((90% - 45%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - calc((90% - 45%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 90%) / 2) - 10%), transparent calc(100% - calc((100% - 90%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car10:not(.car-tuning){position:relative}.car .car10:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,0l500,0l0,200l-500,0l0,-200Zm4.97,39.15l0,-6.75c0,-0.82 0.17,-1.52 0.54,-2.26c0.29,-0.57 0.72,-1.25 1.35,-1.92c0.41,-0.42 0.91,-0.64 1.5,-0.63l7.95,0.14c0,0 6.06,-4.6 13.13,-8.18c1.32,-0.67 2.6,-0.98 4.08,-0.98l20.8,0c1.1,0 2.05,0.25 3,0.8c2.33,1.35 7.19,4.31 12.19,8.36c0,0 13.67,1.35 21.7,2.96c0.47,0.09 0.81,0.5 0.81,0.99l0,0.46l0.06,0.02c0.43,0.11 0.73,0.47 0.76,0.91l0.15,2.31l0.04,0c0.55,0 1.01,0.45 1.01,1.01l0,1.6c0,0.32 -0.14,0.6 -0.4,0.8c-0.95,0.72 -2.6,1.97 -3.83,2.89c-0.19,0.13 -0.38,0.2 -0.61,0.2l-5.2,0c0,3.28 -2.67,5.95 -5.95,5.95c-2.94,0 -5.37,-2.13 -5.86,-4.93l-42.31,0c-0.48,2.8 -2.92,4.93 -5.86,4.93c-3.25,0 -5.9,-2.62 -5.94,-5.86l-0.69,-0.09l-6.52,0c-0.3,0 -0.56,-0.12 -0.76,-0.35l-0.89,-1.02c-0.2,-0.23 -0.46,-0.35 -0.76,-0.35l-2.48,0c-0.56,0 -1.01,-0.45 -1.01,-1.01Zm100.01,0l-0,-6.75c-0,-0.82 0.17,-1.52 0.54,-2.26c0.29,-0.57 0.72,-1.25 1.35,-1.92c0.37,-0.38 0.82,-0.6 1.34,-0.62l-0,-1.31l-0.65,0c-0.27,0 -0.49,-0.22 -0.49,-0.48l-0,-0.69l-0.05,0c-0.27,0 -0.48,-0.22 -0.48,-0.48l-0,-0.77l-1.29,0c-0.16,0 -0.3,-0.14 -0.3,-0.3l-0,-0.44c-0,-0.17 0.14,-0.3 0.3,-0.3l3.54,0c0.16,0 0.3,0.13 0.3,0.3l-0,0.32l1.73,0c0.27,0 0.48,0.22 0.48,0.49l-0,0.68l0.5,0c0.27,0 0.49,0.22 0.49,0.49l-0,0.7c-0,0.26 -0.22,0.48 -0.49,0.48l-1.14,0l-0,1.34l5.66,0.1c-0,0 6.06,-4.6 13.13,-8.18c1.32,-0.67 2.6,-0.98 4.08,-0.98l6.16,0l0,-0.95l9.38,0l0,0.95l5.26,0c1.1,0 2.05,0.25 3,0.8c2.33,1.35 7.19,4.31 12.19,8.36c3.85,0.3 9.3,0.81 13.49,1.25c0.46,0.05 0.82,0.39 0.89,0.85c0.08,0.48 0.5,0.86 1,0.86l6.12,0c0.55,0 1.01,0.45 1.01,1.01l0,0.44c0.46,0.12 0.79,0.44 0.82,0.93l0.15,2.31l0.04,0c0.56,0 1.01,0.45 1.01,1.01l0,1.6c0,0.32 -0.14,0.6 -0.4,0.8c-0.95,0.72 -2.6,1.97 -3.83,2.89c-0.19,0.13 -0.38,0.2 -0.61,0.2l-5.2,0c0,3.28 -2.67,5.95 -5.95,5.95c-2.94,0 -5.37,-2.13 -5.86,-4.93l-42.31,0c-0.48,2.8 -2.92,4.93 -5.86,4.93c-3.25,0 -5.9,-2.62 -5.94,-5.86l-0.69,-0.09l-6.52,0c-0.3,0 -0.56,-0.12 -0.76,-0.35l-0.89,-1.02c-0.2,-0.23 -0.46,-0.35 -0.76,-0.35l-2.48,0c-0.56,0 -1.01,-0.45 -1.01,-1.01Zm99.98,-3.97l0,-2.78c0,-0.82 0.17,-1.52 0.54,-2.26c0.29,-0.57 0.72,-1.25 1.36,-1.92c0.36,-0.38 0.81,-0.6 1.33,-0.62l0,-1.31l-0.65,0c-0.27,0 -0.49,-0.22 -0.49,-0.48l0,-0.69l-0.04,0c-0.27,0 -0.49,-0.22 -0.49,-0.48l0,-0.7l0.01,-0.07l-1.29,0c-0.17,0 -0.31,-0.14 -0.31,-0.3l0,-0.44c0,-0.17 0.14,-0.3 0.31,-0.3l3.53,0c0.16,0 0.3,0.13 0.3,0.3l0,0.32l1.73,0c0.27,0 0.49,0.22 0.49,0.49l0,0.68l0.49,0c0.27,0 0.49,0.22 0.49,0.49l0,0.7c0,0.26 -0.22,0.48 -0.49,0.48l-1.13,0l0,1.34l5.65,0.1c0,0 6.07,-4.6 13.13,-8.18c1.33,-0.67 2.6,-0.98 4.08,-0.98l6.28,0l0,-0.95l9.39,0l0,0.95l5.13,0c1.1,0 2.05,0.25 3,0.8c2.33,1.35 7.19,4.31 12.2,8.36c3.84,0.3 9.29,0.81 13.48,1.25c0.46,0.05 0.82,0.39 0.89,0.85c0.08,0.48 0.5,0.86 1,0.86l6.12,0c0.55,0 1.01,0.45 1.01,1.01l0,0.44c0.46,0.12 0.79,0.44 0.82,0.93l0.15,2.31l0.04,0c0.56,0 1.01,0.45 1.01,1.01l0,1.67l0.07,0c0.55,0 1.01,0.45 1.01,1.01l0,2.35l1.02,0l0,2.16c0,1.19 -0.97,2.16 -2.16,2.16l-11.41,0c-1.09,1.28 -2.71,2.09 -4.52,2.09c-1.74,0 -3.3,-0.75 -4.39,-1.94l-44.75,0l0,-0.62c-1.07,1.54 -2.86,2.56 -4.88,2.56c-3.26,0 -5.9,-2.62 -5.95,-5.86l0,3.75l-2.08,0.47l0,-1.25l-6.18,0c-0.66,0 -1.23,-0.1 -1.84,-0.35c-1.11,-0.43 -2.97,-1.26 -4.44,-2.39c-0.26,-0.2 -0.4,-0.48 -0.4,-0.8l0,-5.21c0,-0.56 0.46,-1.01 1.01,-1.01l0.82,0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car10:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:1px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 80%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 80%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 80%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 80%) / 2) + calc((80% - 55%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 80%) / 2) + calc((80% - 55%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 80%) / 2) - calc((80% - 55%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 80%) / 2) - calc((80% - 55%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 80%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 80%) / 2) - 10%), transparent calc(100% - calc((100% - 80%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car11:not(.car-tuning){position:relative}.car .car11:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l-0,48l-120,0l0,-48l120,0Zm-77.28,6.67l0,-0.19l-1.68,0c0,0 -1.882,-1.459 -4.164,-2.213c-0.361,-0.116 -0.737,-0.176 -1.116,-0.18l0,-0.247l-0.24,0l0,-0.18c0,-0.033 -0.027,-0.06 -0.06,-0.06l-0.12,0c-0.033,0 -0.06,0.027 -0.06,0.06l0,0.18l-2.88,0l0,0.24l-0.135,0c-0.419,-0 -0.836,0.07 -1.232,0.208c-0.823,0.286 -2.277,0.864 -3.433,1.712l-0.48,0l0,-0.24l0.12,0c0.066,0 0.12,-0.054 0.12,-0.12l0,-0.24c0,-0.066 -0.054,-0.12 -0.12,-0.12l-1.44,0c-0.066,0 -0.12,0.054 -0.12,0.12l0,0.24c0,0.066 0.054,0.12 0.12,0.12l0.36,0l0,0.24l-0.301,0c-0.047,-0 -0.093,0.019 -0.127,0.052c-0.033,0.034 -0.052,0.08 -0.052,0.127l0,1.741l-0.076,0c-0.107,-0 -0.21,0.043 -0.286,0.118c-0.075,0.076 -0.118,0.179 -0.118,0.286c0,0 0,0.769 0.001,1.113c-0,0.099 0.055,0.189 0.142,0.235c0.284,0.135 0.975,0.428 1.949,0.608c0.148,0.027 0.298,0.04 0.448,0.04l0.346,0c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l10.332,0c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l2.046,0c0.095,0 0.187,-0.038 0.254,-0.106c0.068,-0.067 0.106,-0.159 0.106,-0.254l0,-0.656c-0,-0.049 0.019,-0.096 0.054,-0.13c0.034,-0.035 0.081,-0.054 0.13,-0.054l0.056,0l0,-0.999c0,-0.144 -0.063,-0.282 -0.173,-0.376c-0.349,-0.244 -1.316,-0.718 -3.907,-1.075Zm-38.634,3.65c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l10.332,0c0.232,0.563 0.787,0.96 1.434,0.96c0.647,0 1.202,-0.397 1.434,-0.96l2.046,0c0.095,0 0.187,-0.038 0.254,-0.106c0.068,-0.067 0.106,-0.159 0.106,-0.254l-0,-0.656c-0,-0.049 0.019,-0.096 0.054,-0.13c0.034,-0.035 0.081,-0.054 0.13,-0.054l0.056,0l-0,-0.999c0,-0.144 -0.063,-0.282 -0.173,-0.376c-0.416,-0.29 -1.71,-0.909 -5.587,-1.265c-0,0 -1.882,-1.459 -4.164,-2.213c-0.371,-0.119 -0.759,-0.18 -1.149,-0.18c-0.854,-0.007 -2.562,-0.007 -3.462,-0.007c-0.419,-0 -0.836,0.07 -1.232,0.208c-0.823,0.286 -2.277,0.864 -3.433,1.712l-1.741,0c-0.047,-0 -0.093,0.019 -0.127,0.052c-0.033,0.034 -0.052,0.08 -0.052,0.127l-0,1.741l-0.076,0c-0.107,-0 -0.21,0.043 -0.286,0.118c-0.075,0.076 -0.118,0.179 -0.118,0.286c-0,0 -0,0.769 0.001,1.113c-0,0.099 0.055,0.189 0.142,0.235c0.284,0.135 0.975,0.428 1.949,0.608c0.148,0.027 0.298,0.04 0.448,0.04l0.346,0Zm67.194,0.72c0.199,0 0.36,-0.161 0.36,-0.36c-0,-0.199 -0.161,-0.36 -0.36,-0.36l0,-0.72c-0,-0.265 -0.215,-0.48 -0.48,-0.48l-0,-0.999c0,-0.144 -0.063,-0.282 -0.173,-0.376c-0.289,-0.202 -1.001,-0.561 -2.707,-0.882l-0,-0.383l-2.4,0l0,0.047c-0.155,-0.016 -0.315,-0.032 -0.48,-0.047c-0,0 -1.882,-1.459 -4.164,-2.213c-0.361,-0.116 -0.737,-0.176 -1.116,-0.18l-0,-0.247l-0.24,0l-0,-0.18c-0,-0.033 -0.027,-0.06 -0.06,-0.06l-0.12,0c-0.033,0 -0.06,0.027 -0.06,0.06l-0,0.18l-2.88,0l-0,0.24l-0.135,0c-0.419,-0 -0.836,0.07 -1.232,0.208c-0.823,0.286 -2.277,0.864 -3.433,1.712l-0.48,0l-0,-0.24l0.12,0c0.066,0 0.12,-0.054 0.12,-0.12l-0,-0.24c-0,-0.066 -0.054,-0.12 -0.12,-0.12l-1.44,0c-0.066,0 -0.12,0.054 -0.12,0.12l-0,0.24c-0,0.066 0.054,0.12 0.12,0.12l0.36,0l-0,0.24l-0.301,0c-0.047,-0 -0.093,0.019 -0.127,0.052c-0.033,0.034 -0.052,0.08 -0.052,0.127l-0,1.741l-0.125,-0c-0.461,0 -0.835,0.374 -0.835,0.835c-0,0 -0,0.841 0.001,1.29c0,0.162 0.102,0.308 0.256,0.362c0.342,0.105 1.02,0.28 2.002,0.383c0.06,0.007 0.12,0.01 0.181,0.01l1.239,0c0.282,0.296 0.68,0.48 1.121,0.48c0.647,0 1.202,-0.397 1.434,-0.96l10.332,0c0.232,0.563 0.787,0.96 1.434,0.96c0.305,0 0.589,-0.088 0.829,-0.24l3.731,0Zm-49.92,23.76l-18.48,0c-0.17,0 -0.48,0.138 -0.48,0.307l0,0.106c0,0.169 0.31,0.307 0.48,0.307l18.48,0c0.17,-0 0.48,-0.138 0.48,-0.307l-0,-0.106c-0,-0.169 -0.31,-0.307 -0.48,-0.307Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car11:not(.car-tuning)::after{content:\"\";position:absolute;bottom:2px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 95%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 95%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 95%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 95%) / 2) + calc((95% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 95%) / 2) + calc((95% - 40%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 95%) / 2) - calc((95% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - calc((95% - 40%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 95%) / 2) - 10%), transparent calc(100% - calc((100% - 95%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car12:not(.car-tuning){position:relative}.car .car12:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M-0,7.817l0,-7.817l120,0l0,48l-120,0l0,-39.737c0,0.076 0.061,0.137 0.137,0.137l0.103,0l-0,0.757c-0,0.054 0.021,0.106 0.059,0.144c0.038,0.038 0.09,0.059 0.144,0.059l0.023,0c0.056,0.182 0.112,0.345 0.158,0.47c0.057,0.153 0.195,0.261 0.357,0.28l2.262,0.258c0.26,0.674 0.913,1.152 1.678,1.152c0.69,0 1.289,-0.389 1.591,-0.96l11.944,0c0.302,0.571 0.901,0.96 1.591,0.96c0.588,0 1.11,-0.283 1.438,-0.72l1.798,0c0.063,0 0.123,-0.025 0.167,-0.07c0.045,-0.044 0.07,-0.104 0.07,-0.167l-0,-2.112c-0,-0.993 -0.731,-1.835 -1.714,-1.976l-5.006,-0.715c-1.127,-0.924 -2.4,-1.68 -2.979,-1.958c-0.875,-0.419 -1.581,-0.442 -3.501,-0.442c-2.253,0 -3.6,0.24 -3.6,0.24l-0,-0.1c0,-0.037 -0.015,-0.073 -0.041,-0.099c-0.026,-0.026 -0.062,-0.041 -0.099,-0.041l-0.2,-0c-0.037,-0 -0.073,0.015 -0.099,0.041c-0.026,0.026 -0.041,0.062 -0.041,0.099l-0,0.179c0,0.043 -0.017,0.084 -0.047,0.114c-0.03,0.03 -0.071,0.047 -0.114,0.047l-1.386,-0c-0.074,-0 -0.133,0.059 -0.133,0.133l-0,0.347l-1.92,0.72l-1.718,0c-0.053,-0 -0.105,0.021 -0.143,0.059c-0.038,0.038 -0.059,0.09 -0.059,0.143l0,1.214c0,0.006 -0.003,0.012 -0.007,0.017c-0.005,0.004 -0.011,0.007 -0.017,0.007l-0.099,-0c-0.065,-0 -0.117,0.052 -0.117,0.117l-0,0.843l-0.013,-0c-0.06,0 -0.118,0.024 -0.161,0.066c-0.042,0.043 -0.066,0.101 -0.066,0.161l0,0.013l-0.103,-0c-0.076,-0 -0.137,0.061 -0.137,0.137Zm27.24,2.551c0.259,0.674 0.913,1.152 1.678,1.152c0.689,0 1.289,-0.389 1.59,-0.96l11.945,0c0.301,0.571 0.901,0.96 1.591,0.96c0.588,0 1.11,-0.283 1.438,-0.72l1.801,0c0.063,0 0.123,-0.025 0.167,-0.07c0.045,-0.044 0.07,-0.104 0.07,-0.167l-0,-2.112c-0,-0.993 -0.731,-1.835 -1.714,-1.976l-0.699,-0.1c-0.05,-0.213 -0.239,-0.372 -0.467,-0.375l0,-0.072c0,-0.044 -0.018,-0.087 -0.049,-0.119c-0.032,-0.031 -0.075,-0.049 -0.119,-0.049l-3.672,0c-1.127,-0.924 -2.4,-1.68 -2.979,-1.958c-0.875,-0.419 -1.581,-0.442 -3.501,-0.442c-2.253,0 -3.6,0.24 -3.6,0.24l-0,-0.1c0,-0.037 -0.015,-0.073 -0.041,-0.099c-0.026,-0.026 -0.062,-0.041 -0.099,-0.041l-0.2,-0c-0.037,-0 -0.073,0.015 -0.099,0.041c-0.026,0.026 -0.041,0.062 -0.041,0.099l-0,0.179c0,0.043 -0.017,0.084 -0.047,0.114c-0.03,0.03 -0.071,0.047 -0.114,0.047l-1.386,-0c-0.074,-0 -0.133,0.059 -0.133,0.133l-0,0.347l-1.92,0.72l-0.24,0l-0,-0.48l-0.24,0l-0,-0.24l-2.16,0l-0,0.24l0.48,0l-0,0.24l0.48,0l-0,0.24l-0.038,0c-0.053,-0 -0.105,0.021 -0.143,0.059c-0.038,0.038 -0.059,0.09 -0.059,0.143l0,1.214c0,0.006 -0.003,0.012 -0.007,0.017c-0.005,0.004 -0.011,0.007 -0.017,0.007l-0.099,-0c-0.065,-0 -0.117,0.052 -0.117,0.117l-0,0.843l-0.013,-0c-0.06,0 -0.118,0.024 -0.161,0.066c-0.042,0.043 -0.066,0.101 -0.066,0.161l0,0.013l-0.103,-0c-0.076,-0 -0.137,0.061 -0.137,0.137l0,0.446c0,0.076 0.061,0.137 0.137,0.137l0.103,0l-0,0.757c-0,0.054 0.021,0.106 0.059,0.144c0.038,0.038 0.09,0.059 0.144,0.059l0.023,0c0.056,0.182 0.112,0.345 0.158,0.47c0.057,0.153 0.195,0.261 0.357,0.28l2.259,0.258Zm24.78,0.912c0.264,0.153 0.571,0.24 0.898,0.24c0.326,0 0.633,-0.087 0.897,-0.24l13.331,0c0.264,0.153 0.571,0.24 0.898,0.24c0.326,0 0.633,-0.087 0.897,-0.24l4.019,0l-0,-0.48c-0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.24c-0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-1.064c-0,-0.473 -0.383,-0.856 -0.856,-0.856l-0.125,0c-0.127,-0.863 -0.807,-1.558 -1.693,-1.685l-0.699,-0.1c-0.05,-0.213 -0.239,-0.372 -0.467,-0.375l0,-0.072c0,-0.044 -0.018,-0.087 -0.049,-0.119c-0.032,-0.031 -0.075,-0.049 -0.119,-0.049l-3.672,0c-1.127,-0.924 -2.4,-1.68 -2.979,-1.958c-0.875,-0.419 -1.581,-0.442 -3.501,-0.442c-2.253,0 -3.6,0.24 -3.6,0.24l-0,-0.1c0,-0.037 -0.015,-0.073 -0.041,-0.099c-0.026,-0.026 -0.062,-0.041 -0.099,-0.041l-0.2,-0c-0.037,-0 -0.073,0.015 -0.099,0.041c-0.026,0.026 -0.041,0.062 -0.041,0.099l-0,0.179c0,0.043 -0.017,0.084 -0.047,0.114c-0.03,0.03 -0.071,0.047 -0.114,0.047l-1.386,-0c-0.074,-0 -0.133,0.059 -0.133,0.133l-0,0.347l-1.92,0.72l-0.24,0l-0,-0.48l-0.24,0l-0,-0.24l-2.16,0l-0,0.24l0.48,0l-0,0.24l0.48,0l-0,0.24l-0.038,0c-0.053,-0 -0.105,0.021 -0.143,0.059c-0.038,0.038 -0.059,0.09 -0.059,0.143l0,1.214c0,0.006 -0.003,0.012 -0.007,0.017c-0.005,0.004 -0.011,0.007 -0.017,0.007l-0.099,-0c-0.065,-0 -0.117,0.052 -0.117,0.117l-0,0.843l-0.013,-0c-0.06,0 -0.118,0.024 -0.161,0.066c-0.042,0.043 -0.066,0.101 -0.066,0.161l0,0.013l-0.103,-0c-0.076,-0 -0.137,0.061 -0.137,0.137l0,1.779c0,0.556 0.402,1.031 0.951,1.123l1.929,0.321l0.387,0.24l0.753,0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car12:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:2.5px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 98%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 98%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 98%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 98%) / 2) + calc((98% - 50%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 98%) / 2) + calc((98% - 50%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 98%) / 2) - calc((98% - 50%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 98%) / 2) - calc((98% - 50%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 98%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 98%) / 2) - 10%), transparent calc(100% - calc((100% - 98%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car13:not(.car-tuning){position:relative}.car .car13:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,0l500,0l0,200l-500,0l0,-200Zm7.62,36.77l0.42,0l0,-2.87l0.7,-1.29l0,-1.42c0,0 1.51,-2.13 3.77,-3.19l2.92,0c0,0 7.75,-3.35 15.99,-6.13c2.28,-0.77 4.33,-1.1 6.73,-1.1l12.47,0c3.43,0 6.37,0.69 9.43,2.23c2.55,1.29 5.63,3.17 8.37,5.79c7.43,0.3 13.29,0.47 20.07,3.02c2.31,0.87 3.66,3.07 3.66,5.53l0,5.76c0,0.46 -0.38,0.84 -0.84,0.84l-2.29,0l0,0.31c0,0.43 -0.35,0.78 -0.78,0.78l-7.85,0c-1.2,1.98 -3.38,3.3 -5.86,3.3c-2.49,0 -4.66,-1.32 -5.87,-3.3l-39.25,0c-1.2,1.98 -3.38,3.3 -5.86,3.3c-2.92,0 -5.41,-1.82 -6.4,-4.39l-6.36,0c-1.55,0 -2.81,-1.27 -2.81,-2.82l0,-1.27l-0.36,0c-0.33,0 -0.6,-0.27 -0.6,-0.6l0,-1.89c0,-0.33 0.27,-0.59 0.6,-0.59Zm99.98,0l0.43,0l0,-2.87l0.69,-1.29l0,-1.42c0,0 1.51,-2.13 3.78,-3.19l0.42,0l-0.58,-0.75l-2.43,0c-0.46,0 -0.84,-0.38 -0.84,-0.84c0,-0.46 0.38,-0.83 0.84,-0.83l6.4,0c0.46,0 0.83,0.37 0.83,0.83c0,0.46 -0.37,0.84 -0.83,0.84l-1.35,0l0.55,0.71c0.91,-0.39 8.19,-3.49 15.9,-6.09c2.27,-0.77 4.33,-1.1 6.73,-1.1l12.47,0c3.43,0 6.37,0.69 9.43,2.23c2.55,1.29 5.63,3.17 8.37,5.79c7.43,0.3 13.29,0.47 20.07,3.02c2.31,0.87 3.65,3.07 3.65,5.53l0,5.76c0,0.46 -0.38,0.84 -0.84,0.84l-2.28,0l0,0.31c0,0.43 -0.35,0.78 -0.78,0.78l-7.85,0c-1.2,1.98 -3.38,3.3 -5.86,3.3c-2.49,0 -4.67,-1.32 -5.87,-3.3l-39.25,0c-1.2,1.98 -3.38,3.3 -5.86,3.3c-2.92,0 -5.42,-1.82 -6.41,-4.39l-6.36,0c-1.54,0 -2.81,-1.27 -2.81,-2.82l0,-1.27l-0.36,0c-0.32,0 -0.59,-0.27 -0.59,-0.6l0,-1.89c0,-0.33 0.27,-0.59 0.59,-0.59Zm100,0l0.42,0l0,-2.87l0.7,-1.29l0,-1.42c0,0 1.51,-2.13 3.77,-3.19l0.43,0l-0.58,-0.75l-2.44,0c-0.46,0 -0.83,-0.38 -0.83,-0.84c0,-0.46 0.37,-0.83 0.83,-0.83l6.4,0c0.46,0 0.84,0.37 0.84,0.83c0,0.46 -0.38,0.84 -0.84,0.84l-1.34,0l0.55,0.71c0.9,-0.39 8.19,-3.49 15.9,-6.09c2.27,-0.77 4.32,-1.1 6.72,-1.1l12.47,0c3.43,0 6.37,0.69 9.44,2.23c2.55,1.29 5.62,3.17 8.37,5.79l14,0l0,1.27c1.98,0.41 3.98,0.97 6.07,1.75c2.3,0.87 3.65,3.07 3.65,5.53l0,1.9l1.17,0c0.44,0 0.8,0.36 0.8,0.8l0,1.43l0.29,0c0.44,0 0.8,0.36 0.8,0.8l0,2.25l0.26,0c0.44,0 0.8,0.36 0.8,0.8l0,0.88c0,0.44 -0.36,0.8 -0.8,0.8l-16.88,0c-1.13,0.84 -2.54,1.33 -4.06,1.33c-1.52,0 -2.92,-0.49 -4.06,-1.33l-42.86,0c-1.13,0.84 -2.54,1.33 -4.06,1.33c-2.02,0 -3.84,-0.88 -5.1,-2.27l-6.51,0c-3.31,0 -6.01,-2.7 -6.01,-6.01l0,-1.1c0,-0.56 0.46,-1.01 1.01,-1.01l0.08,0l0,-0.58c0,-0.33 0.27,-0.59 0.6,-0.59Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car13:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 90%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 90%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 90%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 90%) / 2) + calc((90% - 35%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 90%) / 2) + calc((90% - 35%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 90%) / 2) - calc((90% - 35%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - calc((90% - 35%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 90%) / 2) - 10%), transparent calc(100% - calc((100% - 90%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car14:not(.car-tuning){position:relative}.car .car14:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-92.541,11.04c0.32,0.298 0.749,0.48 1.219,0.48c0.471,-0 0.899,-0.182 1.219,-0.479c3.056,0 7.652,0 11.244,-0c0.32,0.297 0.748,0.479 1.219,0.479c0.47,-0 0.899,-0.182 1.218,-0.48l2.732,0c0.138,0 0.25,-0.112 0.25,-0.25l0,-1.19c0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.24c0,-0 -0.577,-1.174 -1.92,-1.2c0,-0 -0.413,-0.72 -3.12,-0.72c0,-0 -1.177,-0.694 -2.64,-1.2l-0.72,-0l0,0.48c0,-0 -0.581,-0.24 -4.32,-0.24l0,-0.367c-0,-0.062 -0.051,-0.113 -0.113,-0.113l-0.964,0c-0.082,-0 -0.163,0.008 -0.243,0.024c-0.597,0.122 -3.303,0.683 -5.4,1.276l-0,-0.58l-1.571,-0c-0.06,0 -0.109,0.049 -0.109,0.109l0,0.131l0.584,-0c0.087,0 0.171,0.035 0.232,0.096l0.048,0.048c0.061,0.061 0.096,0.145 0.096,0.232l0,0.192c-0.624,0.274 -0.96,0.814 -0.96,1.538l0,0.302c-0,1.432 1.542,1.912 2.16,1.912l0.099,0Zm24.325,0.24c0.263,0.153 0.569,0.24 0.895,0.24c0.326,-0 0.632,-0.087 0.896,-0.24l11.889,-0c0.264,0.153 0.57,0.24 0.896,0.24c0.326,-0 0.632,-0.087 0.895,-0.24l4.265,-0l0,-0.154c0,-0.047 -0.038,-0.085 -0.085,-0.085l-0.155,-0.001l0,-0.96c-0,-0.095 -0.385,-0.48 -0.48,-0.48l-0.24,0c0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.24c0,-0 -0.577,-1.174 -1.92,-1.2c0,-0 -0.413,-0.72 -3.12,-0.72c0,-0 -1.177,-0.694 -2.64,-1.2l-0.72,-0l0,0.48c0,-0 -0.581,-0.24 -4.32,-0.24l0,-0.367c-0,-0.062 -0.051,-0.113 -0.113,-0.113l-0.964,0c-0.082,-0 -0.163,0.008 -0.243,0.024c-0.597,0.122 -3.303,0.683 -5.4,1.276l0,-0.58l-1.571,-0c-0.06,0 -0.109,0.049 -0.109,0.109l0,0.131l0.584,-0c0.087,0 0.171,0.035 0.232,0.096l0.048,0.048c0.061,0.061 0.096,0.145 0.096,0.232l0,0.192c-0.624,0.274 -0.96,0.814 -0.96,1.538l0,0.294l-0.127,-0c-0.062,0 -0.113,0.051 -0.113,0.113l-0,1.348c-0,0.14 0.056,0.275 0.155,0.374l0.17,0.17c0.099,0.099 0.234,0.155 0.374,0.155l2.125,-0Zm-48.327,-0.24c0.319,0.298 0.748,0.48 1.219,0.48c0.47,-0 0.898,-0.182 1.218,-0.479c3.058,0 7.659,0 11.252,-0c0.32,0.297 0.748,0.479 1.219,0.479c0.47,-0 0.899,-0.182 1.218,-0.48l2.727,0c0.138,0 0.25,-0.112 0.25,-0.25l-0,-1.19c0,-0.133 -0.107,-0.24 -0.24,-0.24l-0,-0.24c-0,-0 -0.577,-1.174 -1.92,-1.2c-0,-0 -0.413,-0.72 -3.12,-0.72c-0,-0 -1.177,-0.694 -2.64,-1.2l-0.72,-0l-0,0.48c-0,-0 -0.581,-0.24 -4.32,-0.24l-0,-0.367c-0,-0.062 -0.051,-0.113 -0.113,-0.113l-0.964,0c-0.082,-0 -0.163,0.008 -0.243,0.024c-0.644,0.132 -3.739,0.774 -5.88,1.416c-0.778,0.233 -1.2,0.814 -1.2,1.626l-0,0.302c-0,1.432 1.542,1.912 2.16,1.912l0.097,0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car14:not(.car-tuning)::after{content:\"\";position:absolute;bottom:1px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 95%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 95%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 95%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 95%) / 2) - 10%), transparent calc(100% - calc((100% - 95%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car15:not(.car-tuning){position:relative}.car .car15:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 1000 300' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M465.89,42.73l3.11,-0l0,1.54l-3.11,-0c-0.24,-0 -0.43,-0.19 -0.43,-0.42l0,-0.7c0,-0.23 0.19,-0.42 0.43,-0.42Zm7.01,2.59c0.17,0 0.3,-0.13 0.3,-0.3l0,-1.22c0,-0.17 -0.13,-0.3 -0.3,-0.3l-0.66,0l0,-1.25c0,-0.22 -0.18,-0.4 -0.4,-0.4l-1.69,0c-0.22,0 -0.4,0.18 -0.4,0.4l0,2.67c0,0.22 0.18,0.4 0.4,0.4l2.75,0Zm12.64,-1.73l6.28,-0c0.23,-0 0.42,0.19 0.42,0.42l0,0.89c0,0.23 -0.19,0.42 -0.42,0.42l-6.28,-0c-0.23,-0 -0.42,-0.19 -0.42,-0.42l0,-0.89c0,-0.23 0.19,-0.42 0.42,-0.42Zm5.46,-2.52l1.48,-0l6.62,-2.09l0,-2.21l-15.96,-1.83c-1.17,-0.78 -2.57,-1.25 -4.08,-1.25c-0.92,-0 -1.8,0.17 -2.61,0.49l-12.16,-1.4l0,-1.06l-1.53,-0l0,1.06l-0.99,-0l0,1.94l-2.57,-0l0,-0.98l-0.88,-0l0,-0.85c0,-0.22 -0.19,-0.41 -0.41,-0.41l-0.64,-0c-0.22,-0 -0.41,0.19 -0.41,0.41l0,2.53l-4.54,-0l-0.59,-0.78c1.15,-0.55 1.93,-1.36 1.93,-2.89c0,-1.53 -1.64,-3.28 -3.66,-3.28c-2.36,-0 -4.39,2.14 -3.43,4.43l0.02,0.44l-1.47,-0l0,-2.75l0.15,-0c0.44,-0 0.79,-0.36 0.79,-0.8l0,-3.41c0,-0.36 -0.29,-0.65 -0.65,-0.65l-6.12,-0c-0.47,-0 -0.87,0.09 -1.28,0.31l-14.97,7.73l-3.23,-0l-2.79,-8.04l-10.38,-0l0,1.95l-4.8,-0c0.72,10.2 5.95,13.39 5.95,13.39l2.07,-0c0,3.95 3.21,7.16 7.16,7.16c2,-0 3.8,-0.82 5.1,-2.14l51.79,-0c1.32,1.32 3.14,2.14 5.15,2.14c2.01,-0 3.83,-0.82 5.14,-2.14l4.77,-0l0,0.3c0,0.44 0.36,0.8 0.8,0.8l9.53,-0c0.44,-0 0.8,-0.36 0.8,-0.8l0,-1.07l-2.85,-0c-0.24,-0 -0.42,-0.19 -0.42,-0.42l0,-0.89c0,-0.23 0.18,-0.42 0.42,-0.42l2.85,-0l0,-0.94c0,-0.44 -0.36,-0.8 -0.8,-0.8l-8.3,-0l0,-0.78Zm-449.28,-15.34l-3.06,-0c-0.82,-0 -1.51,0.16 -2.24,0.52l-13.03,6.5c-0.04,0.02 -0.09,0.03 -0.13,0.03l-0.92,-0c-0.17,-0 -0.3,0.14 -0.3,0.3l0,0.51c0,0.16 -0.14,0.3 -0.3,0.3l-3.37,-0c-0.17,-0 -0.3,-0.14 -0.3,-0.3l0,-3.45c0,-0.16 -0.14,-0.3 -0.3,-0.3l-11.58,-0c-0.16,-0 -0.29,0.14 -0.29,0.3l0,10.63c0,0.16 0.13,0.3 0.29,0.3l5.49,-0c0.09,-0 0.19,0.05 0.27,0.09c0.05,3.85 3.19,6.97 7.06,6.97c1.93,-0 3.68,-0.78 4.95,-2.04l47.99,-0c1.29,1.32 3.1,2.14 5.1,2.14c1.99,-0 3.8,-0.82 5.1,-2.14l15.79,-0c0.11,-0 0.2,-0.09 0.2,-0.2l0,-3.84c0,-0.11 -0.09,-0.2 -0.2,-0.2l-0.91,-0c-0.11,-0 -0.2,0.09 -0.2,0.2l0,2.13l-0.49,-0l0,-2.2c0,-0.08 -0.05,-0.15 -0.12,-0.19l-16.82,-7.69c-0.31,-0.15 -0.61,-0.21 -0.95,-0.21l-3.94,-0c-0.11,-0 -0.19,-0.09 -0.19,-0.2l0,-0.71c0,-0.11 -0.09,-0.2 -0.2,-0.2l-14.66,-0c-0.09,-0 -0.17,0.02 -0.25,0.07l-3.36,1.92c-0.07,0.05 -0.15,0.07 -0.24,0.07l-3.59,-0l-0.59,-0.2c1.15,-0.55 1.93,-1.64 1.93,-2.89c0,-1.81 -1.64,-3.28 -3.66,-3.28c-2.02,-0 -3.66,1.47 -3.66,3.28c0,0.41 0.08,0.8 0.23,1.15l-0.35,-0.12l-3.2,-0c-0.28,-0 -0.5,-0.22 -0.5,-0.5l0,-6.05c0,-0.28 -0.22,-0.5 -0.5,-0.5Zm70.18,14.33c-0.08,-0.03 -0.15,-0.07 -0.23,-0.07l-5.49,0c-0.17,0 -0.3,-0.14 -0.3,-0.3l0,-9.55c0,-0.16 0.13,-0.3 0.3,-0.3l2.34,0c0.08,0 0.14,-0.01 0.2,-0.05l3.45,-2.03c0.07,-0.03 0.13,-0.05 0.2,-0.05l5.28,0c0.22,0 0.4,0.18 0.4,0.4l0,5.48c0,0.16 0.13,0.3 0.3,0.3l3.37,0c0.17,0 0.3,-0.14 0.3,-0.3l0,-0.51c0,-0.16 0.13,-0.3 0.3,-0.3l0.92,0c0.04,0 0.09,-0.01 0.13,-0.03l13.03,-6.5c0.73,-0.36 1.42,-0.52 2.24,-0.52l3.06,0c0.28,0 0.5,0.22 0.5,0.5l0,2.59l1.23,0c0.45,0 0.81,0.36 0.81,0.8l0,3.16l1.66,0l0.35,0.12c-0.15,-0.35 -0.23,-0.74 -0.23,-1.15c0,-1.81 1.64,-3.28 3.66,-3.28c2.02,0 3.66,1.47 3.66,3.28c0,1.25 -0.78,2.34 -1.93,2.89l0.59,0.2l3.59,0c0.09,0 0.17,-0.02 0.24,-0.07l1.37,-0.78c0.13,-0.07 0.25,-0.1 0.4,-0.1l0.21,0c0,0 8.86,0.54 15.28,1.2c1.13,-0.74 2.48,-1.18 3.94,-1.18c0.99,0 1.93,0.2 2.79,0.56l0.02,-0.01c0.11,-0.05 0.22,-0.05 0.34,0l2.54,1.17c0.33,0.15 0.64,0.21 1,0.21l2.13,0c0.38,0 0.71,0.08 1.05,0.24c3.1,1.5 6.69,3.73 9.37,5.77c0.03,0.03 0.05,0.08 0.05,0.13l0,2.2l0.49,0l0,-2.13c0,-0.11 0.09,-0.2 0.2,-0.2l0.91,0c0.11,0 0.2,0.09 0.2,0.2l0,3.84c0,0.11 -0.09,0.2 -0.2,0.2l-15.79,0c-1.3,1.32 -3.11,2.14 -5.1,2.14c-2,0 -3.8,-0.82 -5.1,-2.14l-47.84,0c-1.3,1.32 -3.11,2.14 -5.1,2.14c-3.96,0 -7.16,-3.21 -7.16,-7.16c0,-0.34 0.02,-0.68 0.07,-1.01Zm140.42,-4.64l6.51,-0c0,-0 8.5,-2.64 13.01,-2.64l7.93,-0c1.93,-0 3.59,0.39 5.32,1.24c2.4,1.19 6.05,3.09 9.16,5.12l0,0.67l-0.95,-0l0,0.7l-0.83,-0l0,0.56l-0.32,-0l0,0.78l7.15,-0c0.44,-0 0.8,0.36 0.8,0.8l0,0.94l-2.79,-0c-0.23,-0 -0.42,0.19 -0.42,0.42l0,0.89c0,0.23 0.19,0.42 0.42,0.42l2.79,-0l0,1.07c0,0.44 -0.36,0.8 -0.8,0.8l-9.52,-0c-0.44,-0 -0.8,-0.36 -0.8,-0.8l0,-0.3l-4.82,-0c-1.3,1.32 -3.1,2.14 -5.1,2.14c-2,-0 -3.8,-0.82 -5.1,-2.14l-51.84,-0c-1.3,1.32 -3.1,2.14 -5.1,2.14c-2.47,-0 -4.65,-1.26 -5.94,-3.17l-5.4,-0c-0.44,-0 -0.8,-0.35 -0.8,-0.79l0,-13.6c0,-0.44 0.36,-0.8 0.8,-0.8l4.09,-0c0.22,-0 0.41,-0.08 0.56,-0.23l1.55,-1.55c0.16,-0.16 0.35,-0.23 0.57,-0.23l8.02,-0c0.44,-0 0.8,0.35 0.8,0.79l0,4.44c0,0.44 0.36,0.8 0.8,0.8l0.54,-0c0.16,-0 0.29,-0.04 0.43,-0.12l9.24,-5.79c0.13,-0.09 0.27,-0.12 0.42,-0.12l12.57,-0c0.44,-0 0.8,0.35 0.8,0.79l0,1.14c0,0.44 -0.36,0.8 -0.8,0.8l-0.15,-0l0,2.75l1.47,-0l-0.01,-0.44c-0.97,-2.29 1.06,-4.43 3.42,-4.43c2.02,-0 3.66,1.75 3.66,3.28c0,1.53 -0.78,2.34 -1.93,2.89l0.59,0.78Zm33.29,8.17l6.27,-0c0.24,-0 0.42,0.19 0.42,0.42l0,0.89c0,0.23 -0.18,0.42 -0.42,0.42l-6.27,-0c-0.24,-0 -0.42,-0.19 -0.42,-0.42l0,-0.89c0,-0.23 0.18,-0.42 0.42,-0.42Zm-19.66,-0.86l3.12,-0l0,1.54l-3.12,-0c-0.23,-0 -0.42,-0.19 -0.42,-0.42l0,-0.7c0,-0.23 0.19,-0.42 0.42,-0.42Zm7.02,2.59c0.16,-0 0.29,-0.13 0.29,-0.3l0,-1.22c0,-0.17 -0.13,-0.3 -0.29,-0.3l-0.66,-0l0,-1.25c0,-0.22 -0.18,-0.4 -0.4,-0.4l-1.7,-0c-0.22,-0 -0.4,0.18 -0.4,0.4l0,2.67c0,0.22 0.18,0.4 0.4,0.4l2.76,-0Zm-29.07,-14.73l-0.48,-0c-0.44,-0 -0.8,0.36 -0.8,0.8l0,1.15c0,0.44 0.36,0.8 0.8,0.8l0.48,-0l0,-2.75Zm118.24,-0c-0.22,-0 -0.4,0.18 -0.4,0.4l0,2.5c0,0.22 -0.18,0.4 -0.4,0.4l-1.21,-0l0,-0.99l-0.88,-0l0,-0.85c0,-0.23 -0.19,-0.41 -0.41,-0.41l-0.64,-0c-0.23,-0 -0.41,0.18 -0.41,0.41l0,3.37l-5.46,-0l-0.59,-0.78c1.15,-0.55 1.93,-1.36 1.93,-2.89c0,-1.53 -1.64,-3.28 -3.66,-3.28c-2.36,-0 -4.39,2.14 -3.43,4.43l0.02,0.44l-1.46,-0l0,-2.75l0.14,-0c0.43,-0 0.8,-0.36 0.8,-0.8l0,-5.12c0,-0.44 -0.36,-0.8 -0.8,-0.8l-3.22,-0c-0.21,0.01 -4.93,0.55 -19.01,9.9c-0.14,0.08 -0.27,0.12 -0.43,0.12l-0.54,-0c-0.44,-0 -0.8,-0.36 -0.8,-0.8l0,-7.62c0,-0.44 -0.36,-0.8 -0.8,-0.8l-9.32,-0c-0.19,-0 -0.34,0.15 -0.34,0.34l0,0.81c0,0.19 0.15,0.34 0.34,0.34l0.75,-0l0,1.59l-6.99,-0c2.82,4.65 2.8,12.72 -0.14,17.31l6.31,-0c1.29,1.91 3.47,3.17 5.94,3.17c2,-0 3.8,-0.82 5.1,-2.14l51.84,-0c1.3,1.32 3.1,2.14 5.1,2.14c1.99,-0 3.8,-0.82 5.1,-2.14l4.81,-0l0,0.3c0,0.44 0.36,0.8 0.8,0.8l9.53,-0c0.44,-0 0.8,-0.36 0.8,-0.8l0,-1.07l-2.94,-0c-0.18,-0 -0.33,-0.19 -0.33,-0.42l0,-0.89c0,-0.23 0.15,-0.42 0.33,-0.42l2.94,-0l0,-0.94c0,-0.44 -0.36,-0.8 -0.8,-0.8l-7.15,-0l0,-0.78l5.16,-0l0,-0.78c0,-0.36 -0.23,-0.66 -0.57,-0.76l-13.06,-3.93c-1.25,-1.05 -2.86,-1.69 -4.62,-1.69c-0.29,-0 -0.57,0.02 -0.84,0.05l-10.19,-3.06c-0.72,-0.22 -1.37,-0.31 -2.13,-0.31l-3.77,-0Zm23.41,13l6.28,-0c0.23,-0 0.42,0.19 0.42,0.42l-0,0.89c-0,0.23 -0.19,0.42 -0.42,0.42l-6.28,-0c-0.23,-0 -0.42,-0.19 -0.42,-0.42l-0,-0.89c-0,-0.23 0.19,-0.42 0.42,-0.42Zm-19.65,-0.86l3.12,-0l-0,1.54l-3.12,-0c-0.24,-0 -0.43,-0.19 -0.43,-0.42l-0,-0.7c-0,-0.23 0.19,-0.42 0.43,-0.42Zm7.02,2.59c0.16,0 0.29,-0.13 0.29,-0.3l-0,-1.22c-0,-0.17 -0.13,-0.3 -0.29,-0.3l-0.67,0l-0,-1.25c-0,-0.22 -0.18,-0.4 -0.4,-0.4l-1.69,0c-0.22,0 -0.4,0.18 -0.4,0.4l-0,2.67c-0,0.22 0.18,0.4 0.4,0.4l2.76,0Zm-29.03,-14.73l-0.47,-0c-0.44,-0 -0.8,0.36 -0.8,0.8l-0,1.15c-0,0.44 0.36,0.8 0.8,0.8l0.47,-0l-0,-2.75Zm100,-0l-0.48,-0c-0.44,-0 -0.8,0.36 -0.8,0.8l-0,1.15c-0,0.44 0.36,0.8 0.8,0.8l0.48,-0l-0,-2.75Zm-443.89,-30.59l1000,-0l-0,300l-1000,0l-0,-300Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:1000px 300px !important;pointer-events:none;z-index:1}.car .car15:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 95%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 95%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 95%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 95%) / 2) - 10%), transparent calc(100% - calc((100% - 95%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car16:not(.car-tuning){position:relative}.car .car16:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-102.768,10.8c0.284,0.296 0.684,0.48 1.127,0.48c0.442,-0 0.842,-0.184 1.126,-0.48l2.929,-0c0.038,0 0.076,-0.015 0.103,-0.043c0.028,-0.027 0.043,-0.065 0.043,-0.103l0,-1.294c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0.262,-0.262c-0.14,-0.14 -0.329,-0.218 -0.526,-0.218l-0.412,0c-0.807,-0.52 -1.805,-0.955 -2.212,-1.125c-0.123,-0.05 -0.254,-0.075 -0.385,-0.075l-0.763,-0c-2.092,-0.995 -4.197,-1.332 -4.841,-1.417c-0.125,-0.016 -0.251,-0.023 -0.377,-0.023l-2.702,-0l0,-0.24c0,-0 -0.098,-0 -0.222,0.001c-0.348,0 -0.695,0.023 -1.039,0.068c-3.586,0.466 -5.818,0.903 -6.592,1.065c-0.18,0.04 -0.307,0.199 -0.307,0.382l-0,0.404l-0.002,0c-0.132,0 -0.238,0.106 -0.238,0.238l-0,0.484c0,0.132 0.106,0.238 0.238,0.238l0.242,0l-0,0.24l-0.72,0c0,0.795 0.645,1.44 1.44,1.44l1.2,0l0.137,0.025c0.242,0.547 0.789,0.928 1.424,0.928c0.439,0 0.835,-0.181 1.118,-0.473l10.713,-0Zm54.768,0.24l0,-0.137c-0,-0.057 -0.046,-0.103 -0.103,-0.103l-0.137,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0,-0.394c0,-0.15 -0.06,-0.294 -0.166,-0.4c-0.106,-0.106 -0.25,-0.166 -0.4,-0.166l-0.154,0c-0.132,0 -0.24,-0.108 -0.24,-0.24c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0.262,-0.262c-0.14,-0.14 -0.329,-0.218 -0.526,-0.218l-0.412,0c-0.807,-0.52 -1.805,-0.955 -2.212,-1.125c-0.123,-0.05 -0.254,-0.075 -0.385,-0.075l-0.763,0c-2.092,-0.995 -4.197,-1.332 -4.841,-1.417c-0.125,-0.016 -0.251,-0.023 -0.377,-0.023l-2.702,0l-0,-0.24c-0,0 -0.098,0 -0.222,0.001c-0.348,0 -0.695,0.023 -1.039,0.068c-2.311,0.301 -4.06,0.589 -5.219,0.799l-0,-0.294c-0,-0.184 -0.15,-0.334 -0.334,-0.334l-1.586,0l-0,0.48l0.72,-0l-0,0.378l-0.173,0.036c-0.18,0.04 -0.307,0.199 -0.307,0.382l-0,0.404l-0.002,0c-0.132,0 -0.238,0.106 -0.238,0.238l-0,0.484c0,0.132 0.106,0.238 0.238,0.238l0.242,0l-0,0.24l-0.679,0c-0.023,0 -0.041,0.018 -0.041,0.041c0,0.498 0.198,0.976 0.55,1.329c0.353,0.352 0.831,0.55 1.329,0.55l1.205,-0c0.283,0.292 0.679,0.473 1.117,0.473c0.301,0 0.582,-0.085 0.82,-0.233l11.305,-0c0.241,0.152 0.527,0.24 0.833,0.24c0.305,-0 0.591,-0.088 0.832,-0.24l4.809,-0Zm-64.56,8.88l9.12,0.96c1.92,-0.24 2.88,-1.44 2.88,-1.44c-3.36,-2.16 -7.92,-2.16 -9.84,-1.92c-1.506,0.188 -2.16,2.4 -2.16,2.4Zm19.92,-13.292l-0,-0.294c-0,-0.184 -0.15,-0.334 -0.334,-0.334l-1.586,-0l0,0.48l0.72,-0l0,0.378l-0.173,0.036c-0.18,0.04 -0.307,0.199 -0.307,0.382l-0,0.404l-0.002,0c-0.132,0 -0.238,0.106 -0.238,0.238l-0,0.484c0,0.132 0.106,0.238 0.238,0.238l0.242,0l-0,0.24l-0.72,0c0,0.795 0.645,1.44 1.44,1.44l1.2,0l0.137,0.025c0.242,0.547 0.789,0.928 1.424,0.928c0.439,0 0.835,-0.181 1.118,-0.473l10.713,-0c0.284,0.296 0.684,0.48 1.127,0.48c0.442,-0 0.842,-0.184 1.126,-0.48l2.929,-0c0.038,0 0.076,-0.015 0.103,-0.043c0.028,-0.027 0.043,-0.065 0.043,-0.103l0,-1.294c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0.262,-0.262c-0.14,-0.14 -0.329,-0.218 -0.526,-0.218l-0.412,0c-0.807,-0.52 -1.805,-0.955 -2.212,-1.125c-0.123,-0.05 -0.254,-0.075 -0.385,-0.075l-0.763,-0c-2.092,-0.995 -4.197,-1.332 -4.841,-1.417c-0.125,-0.016 -0.251,-0.023 -0.377,-0.023l-2.702,-0l-0,-0.24c-0,-0 -0.098,-0 -0.222,0.001c-0.348,0 -0.695,0.023 -1.039,0.068c-2.311,0.301 -4.06,0.589 -5.219,0.799Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car16:not(.car-tuning)::after{content:\"\";position:absolute;bottom:1px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 88%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 88%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 88%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 88%) / 2) + calc((88% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 88%) / 2) + calc((88% - 40%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 88%) / 2) - calc((88% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 88%) / 2) - calc((88% - 40%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 88%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 88%) / 2) - 10%), transparent calc(100% - calc((100% - 88%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car17:not(.car-tuning){position:relative}.car .car17:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,6.346l0,-6.346l120,0l0,48l-120,0l0,-41.626c-0,0.028 0.011,0.055 0.031,0.075c0.02,0.02 0.047,0.031 0.075,0.031l0.134,0l-0,0.508c-0,0.056 0.022,0.11 0.062,0.15c0.04,0.04 0.094,0.062 0.15,0.062l0.028,-0l-0,0.515c0,0.054 0.022,0.106 0.06,0.145c0.039,0.038 0.091,0.06 0.145,0.06l0.275,-0l0,0.24l-0.24,-0l0,0.24c0.265,0.045 0.427,0.203 0.48,0.48l-0.96,0.96l0,0.48c0,-0 0.691,0.24 1.622,0.24c0.932,-0 0.949,-0.011 0.949,-0.011l-0.015,0.011l0.646,-0c0.198,0.559 0.732,0.96 1.358,0.96c0.426,0 0.809,-0.185 1.073,-0.48l12.014,-0c0.264,0.295 0.647,0.48 1.073,0.48c0.426,0 0.809,-0.185 1.073,-0.48l1.807,-0c0,-0.31 1.016,-0.428 1.467,-0.465c0.12,-0.01 0.213,-0.11 0.213,-0.23c0,-0.294 0,-0.814 -0,-1.072c-0,-0.098 -0.045,-0.191 -0.122,-0.252c-0.913,-0.726 -1.798,-1.101 -1.798,-1.101l-0.48,-0c0.194,-0.401 0.48,-0.48 0.48,-0.48l0,-0.24l-1.2,-0l0,-0.24l-3.36,-0c-1.32,-0 -3.12,0.72 -3.12,0.72l-0.48,-0c0,-0.541 -1.346,-1.44 -2.16,-1.44l-2.64,-0l0,-0.381c-0,-0.026 -0.01,-0.051 -0.029,-0.07c-0.019,-0.019 -0.044,-0.029 -0.07,-0.029c-0.247,0 -0.892,0 -1.188,0.001c-0.105,0 -0.208,0.025 -0.301,0.072c-0.726,0.375 -1.292,0.887 -1.292,0.887c-0.879,-0.491 -2.16,-0.72 -2.16,-0.72l-3.12,0c-0.133,0 -0.24,0.107 -0.24,0.24l-0.134,0c-0.028,-0 -0.055,0.011 -0.075,0.031c-0.02,0.02 -0.031,0.047 -0.031,0.075Zm4.137,9.26c1.921,0.643 2.538,2.489 2.538,2.489c0.053,0.157 0.223,0.242 0.38,0.19c0.157,-0.053 0.242,-0.223 0.19,-0.38c-0,0 -0.712,-2.14 -2.937,-2.875c-0.072,-0.117 -0.201,-0.196 -0.348,-0.196c-0.224,0 -0.406,0.182 -0.406,0.406c0,0.224 0.182,0.406 0.406,0.406c0.063,-0 0.123,-0.015 0.177,-0.04Zm23.305,-5.046c0.198,0.559 0.732,0.96 1.358,0.96c0.294,-0 0.568,-0.088 0.796,-0.24l12.568,-0c0.228,0.152 0.502,0.24 0.796,0.24c0.294,-0 0.568,-0.088 0.796,-0.24l4.244,-0l0,-0.48c0,-0.285 -0.216,-0.403 -0.361,-0.44c-0.071,-0.022 -0.119,-0.088 -0.119,-0.162l0,-0.407c-0,-0.106 -0.085,-0.191 -0.191,-0.191l-0.289,0c-0.576,-0.924 -1.44,-1.68 -1.44,-1.68l-0.48,-0c0.194,-0.401 0.48,-0.48 0.48,-0.48l0,-0.24l-1.2,-0l0,-0.24l-3.36,-0c-0.539,-0 -1.158,0.12 -1.702,0.262c-1.87,-0.925 -3.372,-1.311 -3.876,-1.426c-0.122,-0.024 -0.246,-0.036 -0.37,-0.036c-0.762,0 -3.584,0.001 -3.739,0.001c-0.105,0 -0.208,0.025 -0.301,0.072c-0.726,0.375 -1.292,0.887 -1.292,0.887c-0.879,-0.491 -2.16,-0.72 -2.16,-0.72l-3.12,0c-0.133,0 -0.24,0.107 -0.24,0.24l-0.134,0c-0.028,-0 -0.055,0.011 -0.075,0.031c-0.02,0.02 -0.031,0.047 -0.031,0.075l0,0.028c-0,0.028 0.011,0.055 0.031,0.075c0.02,0.02 0.047,0.031 0.075,0.031l0.134,-0l-0,0.508c-0,0.056 0.022,0.11 0.062,0.15c0.04,0.04 0.094,0.062 0.15,0.062l0.028,-0l-0,0.515c0,0.054 0.022,0.106 0.06,0.145c0.039,0.038 0.091,0.06 0.145,0.06l0.275,-0l0,0.24l-0.24,-0l0,0.24c0.265,0.045 0.427,0.203 0.48,0.48l-0.96,0.96l0,0.48c0,-0 0.691,0.24 1.622,0.24c0.932,-0 0.949,-0.011 0.949,-0.011l-0.015,0.011l0.646,-0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car17:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 95%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 95%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 95%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 95%) / 2) + calc((95% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 95%) / 2) + calc((95% - 40%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 95%) / 2) - calc((95% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - calc((95% - 40%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 95%) / 2) - 10%), transparent calc(100% - calc((100% - 95%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car18:not(.car-tuning){position:relative}.car .car18:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 240 72' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M240,0l0,72l-240,0l0,-72l240,0Zm-219.36,8.16l0,-0.561c0,-0.409 -0.178,-0.798 -0.488,-1.066c-1.539,-1.294 -6.484,-5.093 -11.512,-5.093l-0.96,-0c-0.064,-0 -0.125,0.025 -0.17,0.07c-0.045,0.045 -0.07,0.106 -0.07,0.17c-0,-0 -1.664,0.044 -2.716,0.823c-0.295,0.229 -0.657,0.353 -1.03,0.353c-0.291,0.024 -0.574,0.024 -0.574,0.024l0,1.68l0.72,-0l-0.622,0.622c-0.205,0.205 -0.219,0.533 -0.032,0.755c0.504,0.58 1.59,1.407 3.993,2.116c0.241,0.071 0.49,0.107 0.741,0.107c0.935,0.003 2.958,-0 4.08,-0c0.602,-0 1.06,0.14 1.632,0.549l0.943,0.673c0.199,0.142 0.436,0.218 0.679,0.218l2.506,0c0.96,0 2.88,-0.48 2.88,-1.44Zm21.185,1.44l1.465,0.218c0.1,0.015 0.201,0.022 0.302,0.022l2.536,-0c0.106,-0 0.192,-0.086 0.192,-0.192l-0,-0.159c0,-0.083 -0.029,-0.165 -0.081,-0.23c-0.336,-0.419 -1.63,-2.034 -2.213,-2.758c-0.195,-0.243 -0.418,-0.461 -0.665,-0.65c-1.373,-1.028 -6.233,-4.411 -10.656,-4.411l-0.96,0c-0.064,-0 -0.125,0.025 -0.169,0.07c-0.045,0.045 -0.071,0.106 -0.071,0.17c0,-0 -1.663,0.044 -2.716,0.823c-0.295,0.229 -0.657,0.353 -1.029,0.353c-0.292,0.024 -0.575,0.024 -0.575,0.024l0,1.68l0.72,0l-0.621,0.622c-0.206,0.205 -0.22,0.533 -0.032,0.755c0.255,0.293 0.659,0.65 1.308,1.023l-0.72,0l0,0.24c0.875,0.925 2.88,0.96 2.88,0.96l5.345,0c0.603,0 1.061,0.14 1.632,0.549l0.944,0.673c0.198,0.142 0.435,0.218 0.679,0.218l2.505,0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:1000px 300px !important;pointer-events:none;z-index:1}.car .car18:not(.car-tuning)::after{content:\"\";position:absolute;bottom:4px;left:0px;width:100%;height:20%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 80%) / 2), rgba(0, 0, 0, 0.2) calc(calc((100% - 80%) / 2) + 10%), rgba(0, 0, 0, 0.3) calc(calc(calc((100% - 80%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.3) calc(calc(100% - calc((100% - 80%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.2) calc(100% - calc((100% - 80%) / 2) - 10%), transparent calc(100% - calc((100% - 80%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car19:not(.car-tuning){position:relative}.car .car19:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-117.059,9.372c-0.041,0.149 -0.062,0.306 -0.062,0.468c-0,0.992 0.805,1.797 1.797,1.797c0.927,0 1.692,-0.703 1.788,-1.605l0.256,0.048l-0,0.24l8.64,0c-0,0 2.4,0 4.08,-0.72l0.014,0.003c-0.01,0.078 -0.015,0.157 -0.015,0.237c-0,0.992 0.805,1.797 1.797,1.797c0.736,0 1.37,-0.443 1.647,-1.077l0.637,-0l-0,-1.68l-0.48,-0l-0,-0.72l-0.24,0l-0,-0.24l0.72,0l-0,-0.131c-0,-0.07 -0.028,-0.137 -0.077,-0.186l-0.086,-0.086c-0.049,-0.049 -0.116,-0.077 -0.186,-0.077l-0.611,0l-0,-1.44l-0.72,0l-0,0.24l-0.48,0l-0,-0.24l-0.48,0l-0,-0.24c-0,0 -1.03,-0.24 -7.288,-0.24l-0.963,-0.957l-0.257,-0.002c-0.035,-0 -0.068,0.014 -0.093,0.038c-0.025,0.025 -0.039,0.058 -0.039,0.094l-0,0.202l0.72,0.733l-0,0.372l-0.24,0l-0,0.24l-3.36,0l-0,-0.48c-0,0 -7.44,0.189 -7.44,1.92l-0.72,0l-0,0.48l0.24,0l-0,0.96l-1.2,-0l-0,0.48l1.44,-0l-0,-0.24c-0,-0 1.18,-0.001 1.2,-0c0.001,0.001 0.022,0.005 0.061,0.012Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car19:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:4px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 100%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 100%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 100%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 100%) / 2) + calc((100% - 50%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 100%) / 2) + calc((100% - 50%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 100%) / 2) - calc((100% - 50%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 100%) / 2) - calc((100% - 50%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 100%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 100%) / 2) - 10%), transparent calc(100% - calc((100% - 100%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car20:not(.car-tuning){position:relative}.car .car20:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,0l500,0l0,200l-500,0l0,-200Zm37.67,41.42l-6.57,-6.16c0,0 -15.98,-1.79 -25.86,-4.24c-0.63,-0.16 -1.06,-0.71 -1.06,-1.36l0,-1.44c0,-0.41 0.15,-0.76 0.45,-1.04c1.27,-1.15 6.05,-3.86 24.07,-7.7l1.34,-2.72c0,0 1.33,-1.05 3.96,-1.05c2.04,-4.82 8.2,-8.32 15.47,-8.32c7.28,0 13.44,3.5 15.48,8.32c2.63,0 3.95,1.05 3.95,1.05l1.34,2.72c18.03,3.84 22.81,6.55 24.07,7.7c0.3,0.28 0.46,0.63 0.46,1.04l0,1.44c0,0.65 -0.43,1.2 -1.06,1.36c-9.89,2.45 -25.86,4.24 -25.86,4.24l-6.57,6.16l-23.61,0Zm98.3,-1.56l-4.92,-4.6c0,0 -1.7,-0.19 -4.34,-0.54l-0.06,0.43c-0.35,0.14 -0.6,0.49 -0.6,0.9c0,0.31 0.14,0.58 0.36,0.76l-0.1,0.77c-0.07,0.43 -0.39,0.77 -0.82,0.84c-1.44,0.25 -2.55,0.18 -2.66,0.17c0.09,-0.66 -0.89,-1.35 -2.2,-1.53c-1.11,-0.16 -2.1,0.1 -2.43,0.59c-0.19,-0.16 -0.4,-0.34 -0.63,-0.55l0.28,-2c0.67,-0.47 1.12,-0.57 1.12,-0.57c-0.77,-0.51 -0.89,-1.04 -0.89,-1.04c-4.36,-0.68 -9.07,-1.53 -12.88,-2.47c-0.64,-0.16 -1.07,-0.71 -1.07,-1.36l0,-1.44c0,-0.41 0.16,-0.76 0.46,-1.04c1.27,-1.15 6.05,-3.86 24.07,-7.7l1.34,-2.72c0,0 1.33,-1.05 3.95,-1.05c2.05,-4.82 8.2,-8.32 15.48,-8.32c7.28,0 13.44,3.5 15.48,8.32c2.62,0 3.95,1.05 3.95,1.05l1.34,2.72c18.03,3.84 22.8,6.55 24.07,7.7c0.3,0.28 0.46,0.63 0.46,1.04l0,1.44c0,0.65 -0.43,1.2 -1.06,1.36c-3.81,0.94 -8.53,1.79 -12.89,2.47c0,0 -0.12,0.53 -0.88,1.04c0,0 0.44,0.1 1.11,0.57l0.29,2c-0.23,0.21 -0.45,0.39 -0.64,0.55c-0.32,-0.49 -1.31,-0.75 -2.43,-0.59c-1.31,0.18 -2.29,0.87 -2.19,1.53l-0.01,0c-0.11,0.01 -1.21,0.08 -2.65,-0.17c-0.44,-0.07 -0.76,-0.41 -0.82,-0.84l-0.11,-0.77c0.22,-0.18 0.36,-0.45 0.36,-0.76c0,-0.41 -0.25,-0.76 -0.6,-0.9l-0.06,-0.43c-2.64,0.35 -4.34,0.54 -4.34,0.54l-4.91,4.6l-0.78,0l0,0.6c0,0.35 -0.29,0.63 -0.64,0.63l-0.63,0l3.21,5.01c0,0 -0.6,0.13 -1.59,0.3c-1.04,-1.11 -5.61,-0.62 -6.42,0.67c-0.7,0.02 -1.4,0.02 -2.1,0.02c-0.24,-0.83 -1.01,-1.46 -1.96,-1.62c0,2.13 -5.12,2.13 -5.12,0c-0.95,0.16 -1.71,0.79 -1.96,1.62c-0.7,0 -1.39,0 -2.09,-0.02c-0.82,-1.29 -5.38,-1.78 -6.43,-0.67c-0.98,-0.17 -1.58,-0.3 -1.58,-0.3l3.2,-5.01l-0.63,0c-0.35,0 -0.64,-0.28 -0.64,-0.63l0,-0.6l-0.77,0Zm99.95,0l-4.91,-4.6c0,0 -1.7,-0.19 -4.34,-0.54l-0.06,0.43c-0.35,0.14 -0.6,0.49 -0.6,0.9c0,0.31 0.14,0.58 0.36,0.76l-0.11,0.77c-0.06,0.43 -0.38,0.77 -0.82,0.84c-1.44,0.25 -2.54,0.18 -2.65,0.17l-0.01,0c0.1,-0.66 -0.88,-1.35 -2.19,-1.53c-1.12,-0.16 -2.11,0.1 -2.43,0.59c-0.19,-0.16 -0.41,-0.34 -0.64,-0.55l0.29,-2c0.67,-0.47 1.12,-0.57 1.12,-0.57c-0.77,-0.51 -0.89,-1.04 -0.89,-1.04c-4.36,-0.68 -9.08,-1.53 -12.89,-2.47c-0.63,-0.16 -1.06,-0.71 -1.06,-1.36l0,-1.44c0,-0.41 0.16,-0.76 0.46,-1.04c1.27,-1.15 6.04,-3.86 24.07,-7.7l1.34,-2.72c0,0 1.33,-1.05 3.95,-1.05c2.05,-4.82 8.2,-8.32 15.48,-8.32c7.28,0 13.43,3.5 15.48,8.32c2.62,0 3.95,1.05 3.95,1.05l1.34,2.72c18.03,3.84 22.8,6.55 24.07,7.7c0.3,0.28 0.46,0.63 0.46,1.04l0,1.44c0,0.65 -0.43,1.2 -1.07,1.36c-3.81,0.94 -8.52,1.79 -12.88,2.47c0,0 -0.12,0.53 -0.89,1.04c0,0 0.45,0.1 1.12,0.57l0.28,2c-0.23,0.21 -0.44,0.39 -0.63,0.55c-0.33,-0.49 -1.32,-0.75 -2.43,-0.59c-1.31,0.18 -2.29,0.87 -2.2,1.53c-0.11,0.01 -1.22,0.08 -2.66,-0.17c-0.43,-0.07 -0.75,-0.41 -0.81,-0.84l-0.11,-0.77c0.22,-0.18 0.36,-0.45 0.36,-0.76c0,-0.41 -0.25,-0.76 -0.6,-0.9l-0.06,-0.43c-2.64,0.35 -4.34,0.54 -4.34,0.54l-4.92,4.6l-0.77,0l0,0.6c0,0.35 -0.29,0.63 -0.64,0.63l-0.63,0l3.21,5.01c0,0 -0.61,0.13 -1.59,0.3c-1.05,-1.11 -5.61,-0.62 -6.43,0.67c-0.69,0.02 -1.39,0.02 -2.09,0.02c-0.25,-0.83 -1.01,-1.46 -1.96,-1.62c0,2.13 -5.12,2.13 -5.12,0c-0.95,0.16 -1.72,0.79 -1.96,1.62c-0.7,0 -1.4,0 -2.09,-0.02c-0.82,-1.29 -5.38,-1.78 -6.43,-0.67c-0.99,-0.17 -1.59,-0.3 -1.59,-0.3l3.21,-5.01l-0.63,0c-0.35,0 -0.64,-0.28 -0.64,-0.63l0,-0.6l-0.78,0Zm99.96,0l-4.91,-4.6c0,0 -1.7,-0.19 -4.34,-0.54l-0.06,0.43c-0.36,0.14 -0.6,0.49 -0.6,0.9c0,0.31 0.14,0.58 0.36,0.76l-0.11,0.77c-0.06,0.43 -0.38,0.77 -0.82,0.84c-1.44,0.25 -2.54,0.18 -2.65,0.17l-0.01,0c0.1,-0.66 -0.89,-1.35 -2.19,-1.53c-1.12,-0.16 -2.11,0.1 -2.43,0.59c-0.19,-0.16 -0.41,-0.34 -0.64,-0.55l0.29,-2c0.67,-0.47 1.11,-0.57 1.11,-0.57c-0.76,-0.51 -0.88,-1.04 -0.88,-1.04c-4.36,-0.68 -9.08,-1.53 -12.89,-2.47c-0.63,-0.16 -1.06,-0.71 -1.06,-1.36l0,-1.44c0,-0.41 0.16,-0.76 0.46,-1.04c1.26,-1.15 6.04,-3.86 24.07,-7.7l1.34,-2.72c0,0 1.32,-1.05 3.95,-1.05c2.04,-4.82 8.2,-8.32 15.48,-8.32c7.28,0 13.43,3.5 15.47,8.32c2.63,0 3.96,1.05 3.96,1.05l1.34,2.72c18.02,3.84 22.8,6.55 24.07,7.7c0.3,0.28 0.45,0.63 0.45,1.04l0,1.44c0,0.65 -0.43,1.2 -1.06,1.36c-3.81,0.94 -8.52,1.79 -12.88,2.47c0,0 -0.12,0.53 -0.89,1.04c0,0 0.45,0.1 1.12,0.57l0.28,2c-0.23,0.21 -0.44,0.39 -0.63,0.55c-0.33,-0.49 -1.32,-0.75 -2.43,-0.59c-1.31,0.18 -2.29,0.87 -2.2,1.53l-0.01,0c-0.1,0.01 -1.21,0.08 -2.65,-0.17c-0.43,-0.07 -0.75,-0.41 -0.82,-0.84l-0.11,-0.77c0.23,-0.18 0.37,-0.45 0.37,-0.76c0,-0.41 -0.25,-0.76 -0.6,-0.9l-0.06,-0.43c-2.64,0.35 -4.35,0.54 -4.35,0.54l-4.91,4.6l-0.78,0l0,0.6c0,0.35 -0.28,0.63 -0.63,0.63l-0.64,0l3.21,5.01c0,0 -0.6,0.13 -1.58,0.3c-1.05,-1.11 -5.61,-0.62 -6.43,0.67c-0.7,0.02 -1.39,0.02 -2.09,0.02c-0.25,-0.83 -1.01,-1.46 -1.96,-1.62c0,2.13 -5.12,2.13 -5.12,0c-0.95,0.16 -1.72,0.79 -1.96,1.62c-0.7,0 -1.4,0 -2.1,-0.02c-0.81,-1.29 -5.38,-1.78 -6.42,-0.67c-0.99,-0.17 -1.59,-0.3 -1.59,-0.3l3.21,-5.01l-0.63,0c-0.35,0 -0.64,-0.28 -0.64,-0.63l0,-0.6l-0.78,0Zm99.96,0l-4.91,-4.6c-0,0 -1.71,-0.19 -4.34,-0.54l-0.06,0.43c-0.36,0.14 -0.61,0.49 -0.61,0.9c-0,0.31 0.15,0.58 0.37,0.76l-0.11,0.77c-0.06,0.43 -0.39,0.77 -0.82,0.84c-1.44,0.25 -2.55,0.18 -2.65,0.17l-0.01,0c0.09,-0.66 -0.89,-1.35 -2.19,-1.53c-1.12,-0.16 -2.11,0.1 -2.43,0.59c-0.2,-0.16 -0.41,-0.34 -0.64,-0.55l0.29,-2c0.67,-0.47 1.11,-0.57 1.11,-0.57c-0.77,-0.51 -0.89,-1.04 -0.89,-1.04c-4.35,-0.68 -9.07,-1.53 -12.88,-2.47c-0.63,-0.16 -1.06,-0.71 -1.06,-1.36l-0,-1.44c-0,-0.41 0.15,-0.76 0.46,-1.04c1.26,-1.15 6.04,-3.86 24.06,-7.7l1.35,-2.72c-0,0 1.32,-1.05 3.95,-1.05c2.04,-4.82 8.2,-8.32 15.48,-8.32c7.27,0 13.43,3.5 15.47,8.32c2.63,0 3.96,1.05 3.96,1.05l1.34,2.72c18.02,3.84 22.8,6.55 24.07,7.7c0.3,0.28 0.45,0.63 0.45,1.04l-0,1.44c-0,0.65 -0.43,1.2 -1.06,1.36c-3.81,0.94 -8.53,1.79 -12.88,2.47c-0,0 -0.12,0.53 -0.89,1.04c-0,0 0.44,0.1 1.12,0.57l0.28,2c-0.23,0.21 -0.44,0.39 -0.64,0.55c-0.32,-0.49 -1.31,-0.75 -2.43,-0.59c-1.3,0.18 -2.28,0.87 -2.19,1.53l-0.01,0c-0.1,0.01 -1.21,0.08 -2.65,-0.17c-0.43,-0.07 -0.76,-0.41 -0.82,-0.84l-0.11,-0.77c0.23,-0.18 0.37,-0.45 0.37,-0.76c-0,-0.41 -0.25,-0.76 -0.61,-0.9l-0.06,-0.43c-2.63,0.35 -4.34,0.54 -4.34,0.54l-4.91,4.6l-0.78,0l-0,0.6c-0,0.35 -0.28,0.63 -0.63,0.63l-0.64,0l3.21,5.01c-0,0 -0.6,0.13 -1.59,0.3c-1.04,-1.11 -5.6,-0.62 -6.42,0.67c-0.7,0.02 -1.39,0.02 -2.09,0.02c-0.25,-0.83 -1.01,-1.46 -1.96,-1.62c-0,2.13 -5.13,2.13 -5.13,0c-0.95,0.16 -1.71,0.79 -1.96,1.62c-0.69,0 -1.39,0 -2.09,-0.02c-0.82,-1.29 -5.38,-1.78 -6.42,-0.67c-0.99,-0.17 -1.59,-0.3 -1.59,-0.3l3.21,-5.01l-0.64,0c-0.34,0 -0.63,-0.28 -0.63,-0.63l-0,-0.6l-0.78,0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car20:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:30%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 55%) / 2), rgba(0, 0, 0, 0.15) calc(calc((100% - 55%) / 2) + 10%), rgba(0, 0, 0, 0.225) calc(calc(calc((100% - 55%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.225) calc(calc(100% - calc((100% - 55%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 55%) / 2) - 10%), transparent calc(100% - calc((100% - 55%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car22:not(.car-tuning){position:relative}.car .car22:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-102,7.2c-1.746,-1.527 -6.07,-1.666 -6.841,-1.679c-0.066,-0 -0.119,-0.054 -0.119,-0.119l-0,-0.098c0,-0.006 -0.003,-0.012 -0.007,-0.017c-0.005,-0.004 -0.011,-0.007 -0.017,-0.007l-0.936,-0c-1.298,-0 -3.84,0.72 -5.52,1.2c-0.784,0.224 -2.4,0.48 -2.4,0.48l0,0.207c0,0.151 0.122,0.273 0.273,0.273l0.207,-0l0,0.24l-0.094,0c-0.095,0 -0.187,0.031 -0.263,0.088l-0.686,0.514c-0.099,0.074 -0.157,0.191 -0.157,0.315l0,1c-0,0.149 0.084,0.285 0.218,0.352l1.362,0.681c0.21,0.105 0.44,0.163 0.674,0.169c0.253,0.153 0.549,0.241 0.866,0.241c0.316,0 0.613,-0.088 0.865,-0.24l10.68,0c0.303,0.297 0.718,0.48 1.175,0.48c0.457,0 0.872,-0.183 1.175,-0.48l3.865,0l-0,-0.142c0,-0.026 -0.01,-0.051 -0.029,-0.069c-0.018,-0.019 -0.043,-0.029 -0.069,-0.029c-0.161,0 -0.484,0 -0.685,-0.001c-0.034,0 -0.064,-0.019 -0.078,-0.049c-0.014,-0.03 -0.009,-0.066 0.013,-0.091c0.499,-0.582 1.147,-0.753 1.428,-0.799c0.08,-0.009 0.14,-0.077 0.14,-0.157l0,-0.003c-0,-0.061 -0.035,-0.117 -0.091,-0.143l-4.318,-2.045c-0.099,-0.048 -0.208,-0.072 -0.318,-0.072l-0.313,-0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car22:not(.car-tuning)::after{content:\"\";position:absolute;bottom:2.5px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 95%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 95%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 95%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 95%) / 2) - 10%), transparent calc(100% - calc((100% - 95%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car23:not(.car-tuning){position:relative}.car .car23:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,0l500,0l0,200l-500,0l0,-200Zm133.46,46l32.19,0c1.22,1.35 2.98,2.19 4.94,2.19c1.96,0 3.73,-0.84 4.94,-2.19l7.34,0c0.23,0 0.4,-0.18 0.4,-0.4c-0.11,-7.05 -3.16,-10.02 -4.04,-10.74c-0.15,-0.12 -0.32,-0.18 -0.51,-0.18l-0.49,0l-0,-2.1c-0,-0.46 -0.14,-0.85 -0.41,-1.21c-2.97,-3.91 -7.39,-6.38 -8.32,-6.87c-0.12,-0.07 -0.24,-0.09 -0.38,-0.09l-0.73,0c-0.21,0 -0.38,-0.07 -0.53,-0.2c-10.18,-8.88 -15.89,-10.07 -15.89,-10.07l0,-0.4c0,0 -2.19,-0.81 -8.71,-0.81c-6.51,0 -9.67,0.81 -9.67,0.81l-10.37,0c-0.22,0 -0.4,0.17 -0.4,0.39l0,0.5c0,0.17 0.11,0.33 0.28,0.38l3.64,1.09c0,0.18 0.01,0.31 -0.1,0.47c-2.87,3.91 -4.11,7.95 -4.11,7.95c-0.63,0 -0.81,0.45 -0.81,0.45l0,5.98c-2.73,0.47 -4.82,2.86 -4.82,5.72l-0,4.53c-0,2.65 2.15,4.8 4.8,4.8l1.88,0c1.22,1.35 2.98,2.19 4.94,2.19c1.96,0 3.73,-0.84 4.94,-2.19Zm-99.4,-0.83l30.91,0c1.19,1.82 3.25,3.02 5.58,3.02c2.78,0 5.15,-1.69 6.16,-4.1l1.54,0c0.49,0 0.91,-0.34 1,-0.83c0.1,-0.61 0.21,-1.65 0.21,-3.39c-0,-3.68 -0.47,-4.52 -0.47,-4.52l-0.8,0l-0,-2.77c-0,-0.46 -0.14,-0.85 -0.41,-1.21c-3.34,-4.4 -8.5,-6.96 -8.5,-6.96l-1.24,0c-10.31,-9.06 -16.11,-10.27 -16.11,-10.27l-0,-0.4c-0,0 -2.19,-0.81 -8.71,-0.81c-6.51,0 -9.68,0.81 -9.68,0.81l-6.34,0c-0.28,0 -0.5,0.22 -0.5,0.49l-0,2.04c-0,0.11 -0.04,0.21 -0.1,0.3c-2.87,3.91 -4.11,7.95 -4.11,7.95c-0.63,0 -0.81,0.45 -0.81,0.45l-0,6.59l-0.74,0c-0,0 -1.15,0.61 -1.15,3.5l-0,7.02c-0,1.11 0.9,2.01 2.01,2.01l0.53,0c1,2.41 3.38,4.1 6.15,4.1c2.34,0 4.39,-1.2 5.58,-3.02Zm31.94,31.83l-0,-3c-0,0 -6.263,-6.845 -13,-10l-17,0c-0,0 -3.796,3.761 -5,11c-0,0 1,2 35,2Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car23:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 75%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 75%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 75%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 75%) / 2) + calc((75% - 35%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 75%) / 2) + calc((75% - 35%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 75%) / 2) - calc((75% - 35%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 75%) / 2) - calc((75% - 35%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 75%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 75%) / 2) - 10%), transparent calc(100% - calc((100% - 75%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car24:not(.car-tuning){position:relative}.car .car24:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,0l500,0l0,200l-500,0l0,-200Zm23.7,0l30.46,0l0,1.54c0,0.32 -0.26,0.58 -0.58,0.58l-0.71,0l4.32,21.44l7.79,7.29c0.84,0.79 1.27,1.78 1.27,2.93l0,2.66l1.26,-1.94l25.48,15.53l-30.31,0l0,-2.99l-0.81,0l0,-11.36c0,-1.06 -0.36,-1.97 -1.08,-2.75l-3.15,-3.35l-0.99,0l0,6.8l0.99,0l0,3.36c2.07,0.71 3.57,2.68 3.57,5c0,2.92 -2.37,5.29 -5.29,5.29l-37.36,0c-2.46,0 -4.46,-1.99 -4.46,-4.45c0,-1.36 0.62,-2.58 1.58,-3.4l0.75,-0.78l0,-0.23c-3.85,-0.59 -7.34,-1.48 -8.82,-1.87c-0.45,-0.12 -0.75,-0.52 -0.75,-0.98l0,-21.22c0,-0.38 0.19,-0.71 0.52,-0.89l3.56,-1.95l0,-3.45c0,-0.56 0.46,-1.01 1.01,-1.01l10.22,0c0.56,0 1.02,0.45 1.02,1.01l0,0.21l0.51,0l1,-8.9l-0.42,0c-0.32,0 -0.58,-0.26 -0.58,-0.58l0,-1.54Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car24:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 80%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 80%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 80%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 80%) / 2) + calc((80% - 35%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 80%) / 2) + calc((80% - 35%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 80%) / 2) - calc((80% - 35%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 80%) / 2) - calc((80% - 35%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 80%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 80%) / 2) - 10%), transparent calc(100% - calc((100% - 80%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car25:not(.car-tuning){position:relative}.car .car25:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-118.32,6.48c-0.795,-0 -1.44,0.645 -1.44,1.44c0,0.795 0.645,1.44 1.44,1.44l1.2,0c0.133,0 0.24,-0.107 0.24,-0.24l0.48,0l-0,0.385c-0,0.185 0.15,0.335 0.335,0.335l1.585,0c0,0.064 0.025,0.125 0.07,0.17c0.045,0.045 0.106,0.07 0.17,0.07l2.943,-0c0.113,-0 0.222,-0.045 0.302,-0.125l0.257,-0.257c0.063,-0.063 0.148,-0.098 0.236,-0.098l5.622,0l0,0.24l0.72,0l0,-0.48c2.476,0 4.952,-0.13 6.562,-0.398c0.297,-0.077 0.529,-0.308 0.607,-0.604c0.079,-0.296 -0.008,-0.612 -0.228,-0.826c-3.206,-2.915 -9.541,-3.66 -10.605,-3.688c-0.111,-0.001 -0.218,-0.046 -0.296,-0.124l-0.6,-0.722c-0.076,-0.076 -0.178,-0.118 -0.285,-0.118l-2.595,0c-0.064,-0 -0.125,0.025 -0.17,0.07c-0.045,0.045 -0.07,0.106 -0.07,0.17l-1.92,-0c-0.133,0 -0.24,0.107 -0.24,0.24l-1.2,-0c-0.133,-0 -0.24,0.107 -0.24,0.24l-2.008,-0c-0.084,-0 -0.152,0.068 -0.152,0.152l0,0.176c0,0.084 0.068,0.152 0.152,0.152l0.328,0l0,0.24l-1.68,0l0,-0.24l-0.72,0l0,0.24l3.36,1.92l0.24,0l0,0.24l-2.4,-0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car25:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:25%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 90%) / 2), rgba(0, 0, 0, 0.2) calc(calc((100% - 90%) / 2) + 10%), rgba(0, 0, 0, 0.3) calc(calc(calc((100% - 90%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.3) calc(calc(100% - calc((100% - 90%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.2) calc(100% - calc((100% - 90%) / 2) - 10%), transparent calc(100% - calc((100% - 90%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car26:not(.car-tuning){position:relative}.car .car26:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,0l500,0l0,200l-500,0l0,-200Zm34.98,45.09l30.37,0c0.29,0 0.52,-0.24 0.52,-0.53l-0,-0.57l2.09,0c0.82,2.29 3.01,3.93 5.58,3.93c2.89,0 5.3,-2.07 5.82,-4.81l1.47,0l-0,0.6l1.64,0l-0,-0.6l1.01,0c0.44,0 0.8,-0.36 0.8,-0.8l-0,-4.84c-0,-0.44 -0.36,-0.8 -0.8,-0.8l-0.85,0c-6.2,-8.42 -16.7,-8.22 -18.09,-8.22l-2.72,0c-0.11,-0.24 -0.22,-0.46 -0.34,-0.69c-3,-5.77 -8.58,-9.16 -15.09,-9.16l-6.23,0c-4.08,0 -7.58,0.99 -11.06,3.14c-8.83,5.46 -13.76,14.39 -14.54,15.88c-0.07,0.14 -0.2,0.22 -0.35,0.22l-0.37,0c-0.14,0 -0.26,0.06 -0.33,0.17c-1.17,1.7 -1.41,3.18 -1.45,3.72c-0.01,0.11 0.08,0.21 0.2,0.21l1.37,0l-0,0.73c-0,0.24 0.2,0.44 0.44,0.44l2.71,0c0.25,0 0.45,-0.2 0.45,-0.44l-0,-0.7l2.89,0.02c-0,3.28 2.65,5.93 5.93,5.93c2.57,0 4.76,-1.64 5.58,-3.93l2.83,0l-0,0.57c-0,0.29 0.23,0.53 0.52,0.53Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car26:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 80%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 80%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 80%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 80%) / 2) + calc((80% - 35%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 80%) / 2) + calc((80% - 35%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 80%) / 2) - calc((80% - 35%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 80%) / 2) - calc((80% - 35%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 80%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 80%) / 2) - 10%), transparent calc(100% - calc((100% - 80%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car27:not(.car-tuning){position:relative}.car .car27:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,8.717l0,-8.717l120,0l0,48l-120,0l-0,-39.031c0,0.097 0.035,0.191 0.1,0.265l1.441,1.647c0.088,0.101 0.216,0.159 0.351,0.159l1.965,0c0.332,0.574 0.953,0.96 1.663,0.96c0.71,-0 1.331,-0.386 1.663,-0.96l0.497,0c0,0.133 0.107,0.24 0.24,0.24l9.12,0c0.133,0 0.24,-0.107 0.24,-0.24l0.257,0c0.332,0.574 0.953,0.96 1.663,0.96c0.71,-0 1.331,-0.386 1.663,-0.96l0.497,0c0,0.064 0.025,0.125 0.07,0.17c0.045,0.045 0.106,0.07 0.17,0.07l0.905,-0c0.038,-0 0.076,-0.006 0.112,-0.017c0.251,-0.08 0.495,-0.195 0.732,-0.345c0.107,-0.069 0.171,-0.187 0.171,-0.315c-0,-0.354 -0,-1.088 -0.004,-1.37c0,-0.081 -0.021,-0.161 -0.061,-0.231c-1.186,-1.975 -6.175,-1.802 -6.175,-1.802c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-2.88,-0c-3.6,-2.88 -6.973,-1.627 -7.2,-1.68c-2.897,0.257 -4.32,1.2 -4.32,1.2l-1.44,-0l-0,-0.147c-0,-0.051 -0.042,-0.093 -0.093,-0.093l-0.294,-0c-0.051,-0 -0.093,0.042 -0.093,0.093l-0,0.147l-0.126,0c-0.063,0 -0.114,0.051 -0.114,0.114l-0,1.806l-0.163,0c-0.084,-0 -0.165,0.033 -0.224,0.093c-0.06,0.059 -0.093,0.14 -0.093,0.224Zm48.123,1.603l0.093,0c0.006,-0 0.012,0.003 0.017,0.007c0.004,0.005 0.007,0.011 0.007,0.017l0,0.456c0,0.133 0.107,0.24 0.24,0.24c-0,0.133 0.107,0.24 0.24,0.24l2.64,0c0,0.133 0.107,0.24 0.24,0.24l0.651,-0c0.338,0.299 0.783,0.48 1.269,0.48c0.337,-0 0.654,-0.087 0.93,-0.24l11.82,-0c0.276,0.153 0.593,0.24 0.93,0.24c0.337,-0 0.654,-0.087 0.93,-0.24l3.702,0c0.045,0 0.087,-0.018 0.119,-0.049c0.031,-0.032 0.049,-0.074 0.049,-0.119l-0,-1.511c-0,-0.266 -0.215,-0.481 -0.481,-0.481c-0.001,-0.149 -0.002,-0.279 -0.003,-0.367c0,-0.081 -0.021,-0.161 -0.061,-0.231c-0.628,-1.045 -2.32,-1.489 -3.775,-1.675c-0,-0.07 -0.057,-0.127 -0.127,-0.127l-0.353,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0.48,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-2.64,0c-0.133,0 -0.24,0.107 -0.24,0.24l-1.2,-0c-1.562,-1.25 -3.082,-1.721 -4.32,-1.859l-0,-0.184c0,-0.031 -0.012,-0.061 -0.034,-0.083c-0.022,-0.022 -0.052,-0.034 -0.083,-0.034l-1.686,0c-0.065,0 -0.117,0.052 -0.117,0.117l-0,0.207c-0.473,0.04 -0.96,0.156 -0.96,0.156c-2.897,0.257 -4.32,1.2 -4.32,1.2l-0.24,-0l-0,-0.48l-0.24,-0l-0,-0.24l-0.24,-0l-0,-0.24l-0.24,-0l-0,-0.24l-0.96,-0l0,1.2l-0.126,0c-0.063,0 -0.114,0.051 -0.114,0.114l0,1.806l-0.163,0c-0.084,-0 -0.165,0.033 -0.224,0.093c-0.06,0.059 -0.093,0.14 -0.093,0.224l0,1.48c0,0.068 0.055,0.123 0.123,0.123Zm-14.283,-5.219l-0,-0.184c0,-0.031 -0.012,-0.061 -0.034,-0.083c-0.022,-0.022 -0.052,-0.034 -0.083,-0.034l-1.686,0c-0.065,0 -0.117,0.052 -0.117,0.117l-0,0.207c-0.473,0.04 -0.96,0.156 -0.96,0.156c-2.897,0.257 -4.32,1.2 -4.32,1.2l-0.24,-0l-0,-0.48l-0.24,-0l-0,-0.24l-0.24,-0l-0,-0.24l-0.24,-0l-0,-0.24l-0.96,-0l0,1.2l-0.126,0c-0.063,0 -0.114,0.051 -0.114,0.114l0,1.806l-0.163,0c-0.084,-0 -0.165,0.033 -0.224,0.093c-0.06,0.059 -0.093,0.14 -0.093,0.224l-0,0.252c0,0.097 0.035,0.191 0.1,0.265l1.441,1.647c0.088,0.101 0.216,0.159 0.351,0.159l1.965,0c0.332,0.574 0.953,0.96 1.663,0.96c0.71,-0 1.331,-0.386 1.663,-0.96l0.497,0c0,0.133 0.107,0.24 0.24,0.24l9.12,0c0.133,0 0.24,-0.107 0.24,-0.24l0.257,0c0.332,0.574 0.953,0.96 1.663,0.96c0.71,-0 1.331,-0.386 1.663,-0.96l0.497,0c0,0.064 0.025,0.125 0.07,0.17c0.045,0.045 0.106,0.07 0.17,0.07l0.905,-0c0.038,-0 0.076,-0.006 0.112,-0.017c0.251,-0.08 0.495,-0.195 0.732,-0.345c0.107,-0.069 0.171,-0.187 0.171,-0.315c0,-0.354 0,-1.088 -0.004,-1.37c0,-0.081 -0.021,-0.161 -0.061,-0.231c-0.628,-1.045 -2.32,-1.489 -3.775,-1.675c-0,-0.07 -0.057,-0.127 -0.127,-0.127l-0.353,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0.48,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-2.64,0c-0.133,0 -0.24,0.107 -0.24,0.24l-1.2,-0c-1.562,-1.25 -3.082,-1.721 -4.32,-1.859Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car27:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 95%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 95%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 95%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 95%) / 2) - 10%), transparent calc(100% - calc((100% - 95%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car28:not(.car-tuning){position:relative}.car .car28:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-50.657,10.8l3.055,-0c0.021,0 0.042,-0.009 0.058,-0.024c0.015,-0.016 0.024,-0.037 0.024,-0.058l0,-0.234c-0,-0.091 -0.073,-0.164 -0.164,-0.164l-0.076,-0l-0,-0.96c-0,-0.265 -0.215,-0.48 -0.48,-0.48l-0,-0l-0,-0.475c0,-0.065 -0.026,-0.128 -0.072,-0.173c-0.045,-0.046 -0.108,-0.072 -0.173,-0.072l0,-0.05c0,-0.574 -0.297,-1.107 -0.785,-1.409c-0.759,-0.46 -1.823,-0.701 -2.81,-0.825l0,-0.116c0,-0.132 -0.108,-0.24 -0.24,-0.24l-1.44,-0c-0.13,-0 -0.235,0.103 -0.24,0.231c-0.442,-0.004 -0.72,0.009 -0.72,0.009c-1.608,-1.074 -3.237,-1.713 -4.04,-2.001c-0.327,-0.106 -0.668,-0.159 -1.012,-0.159l-4.308,-0c-2.358,-0 -4.184,0.724 -5.402,1.44l-0.598,-0l0,-0.24l-0.96,-0l0,1.4c-0.087,0.085 -0.146,0.151 -0.178,0.191c-0.04,0.063 -0.062,0.136 -0.062,0.21l0,1.319l-0.053,0c-0.236,0 -0.427,0.191 -0.427,0.426l0,0.719c0,0.396 0.158,0.777 0.438,1.057c0.28,0.28 0.661,0.438 1.057,0.438l1.045,-0c0.285,0.703 0.975,1.2 1.78,1.2c0.71,-0 1.331,-0.386 1.663,-0.96l11.794,-0c0.332,0.574 0.953,0.96 1.663,0.96c0.71,-0 1.331,-0.386 1.663,-0.96Zm-21.823,-1.44l-0.005,-1.25c0,-0.574 -0.297,-1.107 -0.785,-1.409c-0.759,-0.46 -1.823,-0.701 -2.81,-0.825l-0,-0.116c-0,-0.132 -0.108,-0.24 -0.24,-0.24l-1.44,-0c-0.13,-0 -0.235,0.103 -0.24,0.231c-0.442,-0.004 -0.72,0.009 -0.72,0.009c-1.608,-1.074 -3.237,-1.713 -4.04,-2.001c-0.327,-0.106 -0.668,-0.159 -1.012,-0.159l-4.308,-0c-2.358,-0 -4.184,0.724 -5.402,1.44l-0.598,-0l-0,-0.24l-0.96,-0l-0,1.4c-0.087,0.085 -0.146,0.151 -0.178,0.191c-0.04,0.063 -0.062,0.136 -0.062,0.21c0,0.439 0,1.946 0.003,2.393c0,0.088 0.027,0.174 0.076,0.246c0.159,0.218 0.378,0.404 0.513,0.511c0.076,0.058 0.17,0.089 0.265,0.089l1.063,-0c0,1.06 0.86,1.92 1.92,1.92c0.805,-0 1.495,-0.497 1.78,-1.2l1.34,-0c0,-0 0.72,-0.48 4.08,-0.48c4.192,-0 6,0.24 6,0.24l0.061,-0c0.213,0.828 0.965,1.44 1.859,1.44c0.895,-0 1.648,-0.613 1.86,-1.442l0.373,-0.002c0.102,0 0.201,-0.038 0.276,-0.107c0.322,-0.289 0.724,-0.354 0.939,-0.364c0.084,-0.002 0.152,-0.071 0.152,-0.156l0,-0.089c0.133,-0 0.24,-0.107 0.24,-0.24Zm-24,0l-0.005,-1.25c0,-0.574 -0.297,-1.107 -0.785,-1.409c-1.836,-1.113 -5.45,-0.941 -5.45,-0.941c-1.608,-1.074 -3.237,-1.713 -4.04,-2.001c-0.327,-0.106 -0.668,-0.159 -1.012,-0.159l-4.308,-0c-4.32,-0 -6.853,2.429 -7.138,2.791c-0.04,0.063 -0.062,0.136 -0.062,0.21c-0,0.439 -0,1.946 0.003,2.393c0,0.088 0.027,0.174 0.076,0.246c0.159,0.218 0.378,0.404 0.513,0.511c0.076,0.058 0.17,0.089 0.265,0.089l1.063,-0c-0,1.06 0.86,1.92 1.92,1.92c0.805,-0 1.495,-0.497 1.78,-1.2l1.34,-0c-0,-0 0.72,-0.48 4.08,-0.48c4.192,-0 6,0.24 6,0.24l0.061,-0c0.213,0.828 0.965,1.44 1.859,1.44c0.895,-0 1.648,-0.613 1.86,-1.442l0.373,-0.002c0.102,0 0.201,-0.038 0.276,-0.107c0.322,-0.289 0.724,-0.354 0.939,-0.364c0.084,-0.002 0.152,-0.071 0.152,-0.156l0,-0.089c0.133,-0 0.24,-0.107 0.24,-0.24Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car28:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:2px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 90%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 90%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 90%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 90%) / 2) + calc((90% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 90%) / 2) + calc((90% - 40%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 90%) / 2) - calc((90% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - calc((90% - 40%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 90%) / 2) - 10%), transparent calc(100% - calc((100% - 90%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car29:not(.car-tuning){position:relative}.car .car29:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-116.662,10.8c0.301,0.571 0.9,0.96 1.59,0.96c0.588,-0 1.11,-0.283 1.438,-0.72l10.803,-0c0.328,0.437 0.85,0.72 1.438,0.72c0.689,-0 1.289,-0.389 1.59,-0.96l2.175,-0c0.104,-0 0.188,-0.084 0.188,-0.188l0,-0.292c0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.827c0,-1.046 -0.756,-1.939 -1.788,-2.111l-3.972,-0.662c-1.249,-0.78 -2.497,-1.358 -3.216,-1.671c-0.399,-0.164 -0.826,-0.249 -1.257,-0.249l-3.687,0c-1.901,0 -3.36,0.48 -3.36,0.48l-1.018,0c-0.117,-0 -0.228,0.046 -0.31,0.128l-1.312,1.312c-0.678,0.678 -0.48,1.44 -0.48,1.44l-0.321,0.321c-0.102,0.102 -0.159,0.24 -0.159,0.383l0,1.096c0,0.597 0.484,1.08 1.08,1.08l0.818,0Zm26.669,-6l-0.967,0l0,-0.24l-1.68,0l0,0.24l0.24,0l0,0.24l0.422,0c-0.117,-0 -0.228,0.046 -0.31,0.128l-1.312,1.312c-0.678,0.678 -0.48,1.44 -0.48,1.44l-0.561,0.565c-0.102,0.101 -0.159,0.239 -0.159,0.382l0,1.096c0,0.107 0.023,0.203 0.065,0.288c0.08,0.284 0.232,0.546 0.445,0.759c0.326,0.327 0.769,0.51 1.231,0.51l1.09,0c0.264,0.153 0.57,0.24 0.897,0.24c0.326,0 0.633,-0.087 0.897,-0.24l11.885,0c0.264,0.153 0.57,0.24 0.897,0.24c0.326,0 0.633,-0.087 0.897,-0.24l4.016,0l0,-0.24l-0.24,0l0,-0.24l-0.24,0l0,-1.2l-0.24,-0c-0,-0.265 -0.215,-0.48 -0.48,-0.48l0,-0.107c0,-1.046 -0.756,-1.939 -1.788,-2.111l-0.612,-0.102l0,-0.32l-1.92,-0c-0,-0.064 -0.025,-0.125 -0.07,-0.17c-0.045,-0.045 -0.106,-0.07 -0.17,-0.07l-1.2,0c-1.249,-0.78 -2.497,-1.358 -3.216,-1.671c-0.399,-0.164 -0.826,-0.249 -1.257,-0.249l-3.687,0c-0.951,0 -1.791,0.12 -2.393,0.24Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car29:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 90%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 90%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 90%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 90%) / 2) + calc((90% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 90%) / 2) + calc((90% - 40%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 90%) / 2) - calc((90% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - calc((90% - 40%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 90%) / 2) - 10%), transparent calc(100% - calc((100% - 90%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car30:not(.car-tuning){position:relative}.car .car30:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-116.934,10.8c0.207,0.694 0.85,1.2 1.61,1.2c0.67,0 1.249,-0.393 1.518,-0.96l11.612,0c0.269,0.567 0.848,0.96 1.518,0.96c0.669,-0 1.248,-0.393 1.518,-0.96l1.718,0c0.398,-0 0.72,-0.322 0.72,-0.72c0.064,0 0.125,-0.025 0.17,-0.07c0.045,-0.045 0.07,-0.106 0.07,-0.17l-0,-1.44c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0,-0.24c-0,0 -0.28,-1.002 -5.04,-1.44c-0,0 -2.989,-1.694 -6.53,-2.121c-0.226,-0.026 -0.455,-0.039 -0.683,-0.039c-0.854,0 -3.653,0 -5.004,0.001c-0.532,-0 -1.059,0.103 -1.552,0.305c-0.68,0.28 -1.679,0.748 -2.551,1.374l-0.24,0l-0,-0.355c-0,-0.069 -0.056,-0.125 -0.125,-0.125l-1.133,0c-0.1,0 -0.182,0.082 -0.182,0.182l-0,0.298l0.221,0c0.143,0 0.259,0.116 0.259,0.259l-0,2.141l-0.053,0c-0.05,-0 -0.097,0.02 -0.132,0.055c-0.035,0.035 -0.055,0.082 -0.055,0.132l-0,0.574c-0,0.161 0.048,0.319 0.139,0.453c0.161,0.23 0.487,0.578 1.109,0.869c0.108,0.051 0.226,0.077 0.345,0.077l0.993,0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car30:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 95%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 95%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 95%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 95%) / 2) - 10%), transparent calc(100% - calc((100% - 95%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car31:not(.car-tuning){position:relative}.car .car31:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-104.939,3.36l-1.381,0l0,0.24l-11.978,0c-0.261,-0 -0.51,0.103 -0.694,0.288c-0.185,0.184 -0.288,0.433 -0.288,0.694l0,5.934c0,0.157 0.127,0.284 0.284,0.284l1.636,0c0,0.53 0.43,0.96 0.96,0.96c0.355,0 0.665,-0.193 0.831,-0.48l0.129,-0l0,0.24l1.68,-0l0,-0.24l0.129,-0c0.166,0.287 0.476,0.48 0.831,0.48c0.53,0 0.96,-0.43 0.96,-0.96l6.24,-0c0,0.53 0.43,0.96 0.96,0.96c0.355,0 0.665,-0.193 0.831,-0.48l0.129,-0l0,0.24l1.68,-0l0,-0.24l0.129,-0c0.166,0.287 0.476,0.48 0.831,0.48c0.53,0 0.96,-0.43 0.96,-0.96l2.298,-0c0.147,0 0.286,-0.064 0.38,-0.176l0.804,-0.95c0.076,-0.09 0.118,-0.204 0.118,-0.322l-0,-2.472c-0,-0.267 -0.04,-0.533 -0.118,-0.789c-0.528,-1.731 -0.732,-2.261 -0.803,-2.424c-0.049,-0.043 -0.112,-0.067 -0.177,-0.067l-4.662,-0l0,-0.24l-1.621,-0l1.935,-0.774c0.076,-0.031 0.126,-0.104 0.126,-0.186c0,-0.082 -0.05,-0.155 -0.126,-0.186l-2.234,-0.893l0,-0.279c-0,-0.045 -0.037,-0.082 -0.082,-0.082l-0.305,0c-0.045,0 -0.082,0.037 -0.082,0.082l0,0.274l-2.245,0.898c-0.076,0.031 -0.126,0.104 -0.126,0.186c0,0.082 0.05,0.155 0.126,0.186l1.935,0.774Zm-1.322,-0.96l1.861,-0.745l1.861,0.745l-1.861,0.745l-1.861,-0.745Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car31:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 100%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 100%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 100%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 100%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 100%) / 2) - 10%), transparent calc(100% - calc((100% - 100%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car32:not(.car-tuning){position:relative}.car .car32:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,11.04l0,-11.04l120,0l0,48l-120,0l0,-36.72l3.891,-0c0.338,0.299 0.783,0.48 1.269,0.48c0.487,-0 0.931,-0.181 1.27,-0.48l11.144,-0c0.339,0.299 0.783,0.48 1.27,0.48c0.486,-0 0.931,-0.181 1.269,-0.48l3.887,-0l0,-0.48l-0.24,-0l-0,-0.96l-0.24,0l-0,-0.24c-0,0 -0.407,-1.49 -4.56,-2.4l-1.2,0l-0,0.48l-2.88,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0.96,0l-0,-0.084c-0,-0.041 -0.016,-0.081 -0.046,-0.11c-0.029,-0.03 -0.069,-0.046 -0.11,-0.046l-0.408,0c-0.041,-0 -0.081,0.016 -0.11,0.046c-0.03,0.029 -0.046,0.069 -0.046,0.11l-0,0.084l-0.24,0c-0,0 -1.088,-0.281 -1.598,-1.06c-0.052,-0.085 -0.143,-0.136 -0.242,-0.136c-0.572,-0.004 -2.517,-0.004 -3.2,-0.004c-0.133,-0 -0.24,0.107 -0.24,0.24l-1.144,-0c-0.198,-0 -0.394,0.034 -0.58,0.101c-0.688,0.274 -2.528,1.075 -4.276,2.539l-0,0.72l-0.24,0l-0.96,0.96l-0,0.074c-0,0.092 -0.074,0.166 -0.166,0.166l-0.074,-0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car32:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 100%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 100%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 100%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 100%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 100%) / 2) - 10%), transparent calc(100% - calc((100% - 100%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car33:not(.car-tuning){position:relative}.car .car33:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,48l0,-48l120,0l0,48l-120,0Zm-0,-41.301c-0,0.518 -0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278c0.741,0.707 1.875,0.993 2.195,1.063c0.056,0.011 0.113,0.017 0.171,0.017l0.494,0c0.249,0.699 0.916,1.2 1.7,1.2c0.589,0 1.113,-0.283 1.442,-0.72l12.723,0c0.33,0.437 0.853,0.72 1.442,0.72c0.685,0 1.282,-0.383 1.587,-0.947l0.855,-0.012c0.048,-0.001 0.095,-0.012 0.138,-0.033l0.72,-0.36c0.107,-0.054 0.175,-0.164 0.175,-0.284l-0,-2.204c-0,-1.44 -7.44,-1.68 -7.44,-1.68c0,0 -2.46,-2.029 -6.96,-1.92c-5.008,0 -8.383,1.814 -9.18,2.287c-0.112,0.073 -0.18,0.198 -0.18,0.332Zm48.24,2.762l0,1.246c-0,0.152 0.06,0.298 0.168,0.405c0.107,0.108 0.253,0.168 0.405,0.168l2.966,0c0.265,0.153 0.572,0.24 0.899,0.24c0.328,0 0.635,-0.087 0.899,-0.24l13.562,0c0.264,0.153 0.572,0.24 0.899,0.24c0.327,0 0.899,-0.24 0.899,-0.24l3.063,0l-0,-0.176c-0,-0.168 -0.136,-0.304 -0.304,-0.304l-0.001,0l0,-0.24l0.126,-0c0.048,0 0.093,-0.019 0.127,-0.052c0.033,-0.034 0.052,-0.079 0.052,-0.127l0,-1.322c-0,-0.048 -0.019,-0.093 -0.052,-0.127c-0.034,-0.033 -0.079,-0.052 -0.127,-0.052l-0.126,0l0,-0.48c0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.568c0,-0.673 -1.562,-0.996 -3.295,-1.243l-0,-0.201c0,-0.039 -0.016,-0.077 -0.043,-0.105c-0.028,-0.027 -0.066,-0.043 -0.105,-0.043l-3.932,0c0,0 -1.593,-1.314 -4.56,-1.77l-0,-0.246c-0,-0.08 -0.064,-0.144 -0.144,-0.144l-0.912,0c-0.08,0 -0.144,0.064 -0.144,0.144l0,0.105c-0.309,-0.013 -0.629,-0.017 -0.96,-0.009c-2.88,0 -5.22,0.6 -6.841,1.2l-0.599,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-1.375,-0c-0.169,-0 -0.305,0.136 -0.305,0.305l0,0.175l0.24,0l0,0.087c0,0.085 0.068,0.153 0.153,0.153l0.327,0l-0,0.155c-0,0.094 -0.052,0.181 -0.135,0.225c-0.172,0.092 -0.307,0.169 -0.405,0.227c-0.112,0.073 -0.18,0.198 -0.18,0.332c0,0.518 0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278l0.042,0.04c0.051,0.046 0.08,0.112 0.08,0.181Zm-18.12,1.339l12.723,0c0.33,0.437 0.853,0.72 1.442,0.72c0.685,0 1.282,-0.383 1.587,-0.947l0.855,-0.012c0.048,-0.001 0.095,-0.012 0.138,-0.033l0.72,-0.36c0.107,-0.054 0.175,-0.164 0.175,-0.284l0,-2.204c0,-0.673 -1.627,-1.084 -3.36,-1.331l-0,-0.201c0,-0.039 -0.016,-0.077 -0.043,-0.105c-0.028,-0.027 -0.066,-0.043 -0.105,-0.043l-3.932,0c0,0 -1.593,-1.314 -4.56,-1.77l0,-0.246c-0,-0.08 -0.064,-0.144 -0.144,-0.144l-1.152,0c-0.08,0 -0.144,0.064 -0.144,0.144l0,0.105c-0.309,-0.013 -0.629,-0.017 -0.96,-0.009c-2.88,0 -5.22,0.6 -6.841,1.2l-0.599,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-1.375,-0c-0.169,-0 -0.305,0.136 -0.305,0.305l0,0.175l0.24,0l0,0.087c0,0.085 0.068,0.153 0.153,0.153l0.327,0l-0,0.155c-0,0.094 -0.052,0.181 -0.135,0.225c-0.172,0.092 -0.307,0.169 -0.405,0.227c-0.112,0.073 -0.18,0.198 -0.18,0.332c0,0.518 0,1.812 0.003,2.263c-0,0.104 0.041,0.204 0.115,0.278c0.741,0.707 1.875,0.993 2.195,1.063c0.056,0.011 0.113,0.017 0.171,0.017l0.494,0c0.249,0.699 0.916,1.2 1.7,1.2c0.589,0 1.113,-0.283 1.442,-0.72Zm-28.2,6.96l0.96,0.24l1.68,-0.48l0.48,-0.48l0,-0.351c-2.16,0.111 -3.12,1.071 -3.12,1.071Zm5.04,-1.2c0,0 -1.242,0.008 -1.68,0.96l0,1.2l11.52,0l0,-0.24c0,0 -1.44,-1.44 -3.36,-1.68l-0.24,-0.24l-6.24,0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car33:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 100%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 100%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 100%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 100%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 100%) / 2) - 10%), transparent calc(100% - calc((100% - 100%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car34:not(.car-tuning){position:relative}.car .car34:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-74.64,5.931l0,-0.171l-1.68,0l0,0.002c-0.078,-0.001 -0.158,-0.002 -0.24,-0.002c-0,-0.064 -0.025,-0.125 -0.07,-0.17c-0.045,-0.045 -0.106,-0.07 -0.17,-0.07l-1.2,0c0,0 -2.88,-2.88 -7.2,-2.88c-2.507,0 -4.475,0.108 -5.946,0.24l-1.254,0l0,-0.24l-2.4,0l0,0.24l0.24,0l0,0.24l0.24,0l0,0.188c-0.047,0.01 -0.087,0.018 -0.12,0.025c-0.079,0.02 -0.147,0.07 -0.189,0.14c-0.553,0.954 -0.651,2.287 -0.651,2.287l-0.133,-0c-0.028,-0 -0.056,0.011 -0.076,0.031c-0.02,0.02 -0.031,0.048 -0.031,0.076l0,2.293l-0.139,0c-0.027,-0 -0.053,0.011 -0.071,0.03c-0.019,0.018 -0.03,0.044 -0.03,0.071l0,1.256c-0,0.086 0.034,0.168 0.094,0.229c0.061,0.06 0.143,0.094 0.229,0.094l1.117,0c0,0.133 0.107,0.24 0.24,0.24l0.735,0c0.118,0.947 0.927,1.68 1.905,1.68c0.71,0 1.331,-0.386 1.663,-0.96l11.554,-0c0.332,0.574 0.953,0.96 1.663,0.96c0.71,0 1.331,-0.386 1.663,-0.96l1.522,-0c0.409,0 0.791,-0.205 1.018,-0.545l0.117,-0.175c0.133,-0 0.24,-0.107 0.24,-0.24l0,-0.24c0,-0.064 -0.025,-0.125 -0.07,-0.17c-0.045,-0.045 -0.106,-0.07 -0.17,-0.07l0,-1.2c0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.48c-0,-0.133 -0.107,-0.24 -0.24,-0.24c0,0 -0.098,-0.887 -1.92,-1.269Zm-27.583,4.869c0.332,0.574 0.953,0.96 1.663,0.96c0.71,0 1.331,-0.386 1.663,-0.96l1.522,-0c0.409,0 0.791,-0.205 1.018,-0.545l0.117,-0.175c0.133,-0 0.24,-0.107 0.24,-0.24l-0,-0.24c0,-0.064 -0.025,-0.125 -0.07,-0.17c-0.045,-0.045 -0.106,-0.07 -0.17,-0.07l0,-1.2c0,-0.133 -0.107,-0.24 -0.24,-0.24l-0,-0.48c-0,-0.133 -0.107,-0.24 -0.24,-0.24c0,0 -0.158,-1.44 -3.84,-1.44c-0,-0.064 -0.025,-0.125 -0.07,-0.17c-0.045,-0.045 -0.106,-0.07 -0.17,-0.07l-1.2,0c0,0 -2.88,-2.88 -7.2,-2.88c-5.72,0 -8.635,0.561 -9.24,0.693c-0.079,0.02 -0.147,0.07 -0.189,0.14c-0.553,0.954 -0.651,2.287 -0.651,2.287l-0.133,-0c-0.028,-0 -0.056,0.011 -0.076,0.031c-0.02,0.02 -0.031,0.048 -0.031,0.076l0,2.293l-0.139,0c-0.027,-0 -0.053,0.011 -0.071,0.03c-0.019,0.018 -0.03,0.044 -0.03,0.071l0,1.256c-0,0.086 0.034,0.168 0.094,0.229c0.061,0.06 0.143,0.094 0.229,0.094l1.117,0c0,0.133 0.107,0.24 0.24,0.24l0.735,0c0.118,0.947 0.927,1.68 1.905,1.68c0.71,0 1.331,-0.386 1.663,-0.96l11.554,-0Zm32.438,0.24l0.847,-0c0.352,0.439 0.892,0.72 1.498,0.72c0.606,0 1.146,-0.281 1.498,-0.72l11.884,-0c0.352,0.439 0.892,0.72 1.498,0.72c0.606,0 1.146,-0.281 1.498,-0.72l2.792,-0c0.071,0 0.14,-0.028 0.191,-0.079c0.051,-0.051 0.079,-0.12 0.079,-0.191l0,-1.53c0,-0.095 -0.038,-0.187 -0.106,-0.254c-0.038,-0.039 -0.084,-0.068 -0.134,-0.085l0,-0.741c0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.48c-0,-0.133 -0.107,-0.24 -0.24,-0.24c0,0 -0.098,-0.887 -1.92,-1.269l0,-0.171l-1.68,0l0,0.002c-0.078,-0.001 -0.158,-0.002 -0.24,-0.002c-0,-0.064 -0.025,-0.125 -0.07,-0.17c-0.045,-0.045 -0.106,-0.07 -0.17,-0.07l-1.2,0c0,0 -2.88,-2.88 -7.2,-2.88c-2.507,0 -4.475,0.108 -5.946,0.24l-1.254,0l0,-0.24l-2.4,0l-0,0.24l0.24,0l-0,0.24l0.24,0l-0,0.188c-0.047,0.01 -0.087,0.018 -0.12,0.025c-0.079,0.02 -0.147,0.07 -0.189,0.14c-0.553,0.954 -0.651,2.287 -0.651,2.287l-0.133,-0c-0.028,-0 -0.056,0.011 -0.076,0.031c-0.02,0.02 -0.031,0.048 -0.031,0.076l0,2.293l-0.139,0c-0.027,-0 -0.053,0.011 -0.071,0.03c-0.019,0.018 -0.03,0.044 -0.03,0.071l0,0.804c0,1.091 0.884,1.975 1.975,1.975Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car34:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 95%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 95%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 95%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 95%) / 2) + calc((95% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 95%) / 2) + calc((95% - 40%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 95%) / 2) - calc((95% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - calc((95% - 40%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 95%) / 2) - 10%), transparent calc(100% - calc((100% - 95%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car35:not(.car-tuning){position:relative}.car .car35:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-116.021,10.558c0.285,0.705 0.975,1.202 1.781,1.202c0.606,0 1.146,-0.281 1.498,-0.72l9.964,0c0.352,0.439 0.892,0.72 1.498,0.72c0.709,0 1.33,-0.386 1.662,-0.959l0.018,-0.001c-0,-0 1.385,-0.112 1.92,-0.24c0.535,-0.128 0.72,-0.48 0.72,-0.48l0,-0.96l-0.24,-0l0,-0.24c-0.889,-0.92 -2.626,-1.488 -3.605,-1.75c-0.424,-0.113 -0.862,-0.17 -1.301,-0.17l-4.329,-0l-0.974,-0.96l-0.244,-0c-0.068,-0 -0.134,0.027 -0.183,0.076l-0.088,0.088c-0.049,0.049 -0.076,0.115 -0.076,0.183l-0,0.613l-0.24,-0l-0,-0.48l-0.48,-0l-0,0.48l-0.24,-0c-0,0.421 -0.24,0.48 -0.24,0.48l-1.92,-0c-0.372,-0 -0.48,-0.24 -0.48,-0.24l0,-0.24l-0.72,-0l-0,-0.96c-2.175,-0 -3.6,0.72 -3.6,0.72l-2.793,0.698c-0.051,0.013 -0.087,0.059 -0.087,0.112l0,1.658c0,0.109 0.049,0.212 0.133,0.281c0.34,0.273 0.827,0.611 0.827,0.611l-0.96,-0l-0,0.24c0.976,0.188 2.392,0.23 2.779,0.238Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car35:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 83%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 83%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 83%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 83%) / 2) + calc((83% - 50%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 83%) / 2) + calc((83% - 50%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 83%) / 2) - calc((83% - 50%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 83%) / 2) - calc((83% - 50%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 83%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 83%) / 2) - 10%), transparent calc(100% - calc((100% - 83%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car36:not(.car-tuning){position:relative}.car .car36:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-88.587,5.76l-4.533,0l0,1.405c-0.469,0.126 -0.946,0.285 -1.367,0.48c-0.045,0.021 -0.073,0.066 -0.073,0.116l0,1.829c0.005,0.256 0.028,0.685 0.118,1.072c0.029,0.114 0.12,0.202 0.234,0.228c0.323,0.068 0.858,0.15 1.568,0.15l0,0c0.329,0.437 0.852,0.72 1.44,0.72c0.472,0 0.902,-0.182 1.223,-0.48l11.714,-0c0.321,0.298 0.751,0.48 1.223,0.48c0.472,0 0.902,-0.182 1.223,-0.48l2.238,-0c0.037,0 0.072,-0.015 0.098,-0.041c0.026,-0.026 0.041,-0.061 0.041,-0.098l0,-0.581l0.029,-0c0.117,-0 0.211,-0.094 0.211,-0.211l0,-1.147c0,-0.022 -0.009,-0.043 -0.024,-0.058c-0.015,-0.015 -0.036,-0.024 -0.058,-0.024l-0.158,0c0,0 -0.849,-0.957 -2.4,-1.2c0,0 -1.06,-0.339 -2.16,-0.48c0,0 -2.817,-1.68 -7.68,-1.68l-0,-0.627c-0,-0.023 -0.01,-0.045 -0.028,-0.06c-0.018,-0.015 -0.041,-0.022 -0.064,-0.018c-0.335,0.057 -1.539,0.277 -2.815,0.705Zm-28.053,5.28c0.329,0.437 0.852,0.72 1.44,0.72c0.472,-0 0.902,-0.182 1.223,-0.48l11.714,-0c0.321,0.298 0.751,0.48 1.223,0.48c0.472,-0 0.902,-0.182 1.223,-0.48l2.238,-0c0.037,0 0.072,-0.015 0.098,-0.041c0.026,-0.026 0.041,-0.061 0.041,-0.098l0,-0.581l0.029,-0c0.117,-0 0.211,-0.094 0.211,-0.211l-0,-1.147c0,-0.022 -0.009,-0.043 -0.024,-0.058c-0.015,-0.015 -0.036,-0.024 -0.058,-0.024l-0.158,-0c0,-0 -0.849,-0.957 -2.4,-1.2c0,-0 -1.06,-0.339 -2.16,-0.48c0,-0 -2.817,-1.68 -7.68,-1.68l-0,-0.627c-0,-0.023 -0.01,-0.045 -0.028,-0.06c-0.018,-0.015 -0.041,-0.022 -0.064,-0.018c-0.529,0.09 -3.223,0.587 -4.948,1.665c0,-0 -2.248,0.22 -3.767,0.925c-0.045,0.021 -0.073,0.066 -0.073,0.116l0,1.829c0.005,0.256 0.028,0.685 0.118,1.072c0.029,0.114 0.12,0.202 0.234,0.228c0.323,0.068 0.858,0.15 1.568,0.15l0,-0Zm68.16,0.48l0,-0.48c-0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.48c-0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.48c0,-0.133 -0.107,-0.24 -0.24,-0.24l0,-0.158c0,-0.022 -0.009,-0.043 -0.024,-0.058c-0.015,-0.015 -0.036,-0.024 -0.058,-0.024l-0.158,-0c0,-0 -0.849,-0.957 -2.4,-1.2c0,-0 -1.06,-0.339 -2.16,-0.48c0,-0 -2.817,-1.68 -7.68,-1.68l-0,-0.627c-0,-0.023 -0.01,-0.045 -0.028,-0.06c-0.018,-0.015 -0.041,-0.022 -0.064,-0.018c-0.335,0.057 -1.539,0.277 -2.815,0.705l-4.533,-0l-0,1.405c-0.469,0.126 -0.946,0.285 -1.367,0.48c-0.045,0.021 -0.073,0.066 -0.073,0.116l0,1.829l0.022,1.544c0.003,0.214 0.177,0.386 0.391,0.386l2.049,-0c0.264,0.153 0.571,0.24 0.898,0.24c0.327,-0 0.634,-0.087 0.898,-0.24l12.364,-0c0.264,0.153 0.571,0.24 0.898,0.24c0.327,-0 0.634,-0.087 0.898,-0.24l3.662,-0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car36:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 90%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 90%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 90%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 90%) / 2) - 10%), transparent calc(100% - calc((100% - 90%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car37:not(.car-tuning){position:relative}.car .car37:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-66.72,4.124l0,-0.284l-2.19,0l0,0.48l0.27,0l-0,0.24l0.932,0c-0.064,0.039 -0.127,0.079 -0.189,0.12c-0.104,0.072 -0.167,0.191 -0.167,0.318l-0,1.242c-0.133,0 -0.24,0.107 -0.24,0.24l-0,0.572c-0,0.096 -0.033,0.189 -0.093,0.264l-0.531,0.664c-0.093,0.117 -0.144,0.261 -0.144,0.41c0,0.263 -0,0.706 0.001,1.075l-0,0.855c-0.001,0.191 0.075,0.374 0.21,0.509c0.135,0.135 0.318,0.211 0.509,0.211l0.655,0c0.264,0.295 0.647,0.48 1.073,0.48c0.426,-0 0.809,-0.185 1.073,-0.48l9.374,0c0.264,0.295 0.647,0.48 1.073,0.48c0.426,-0 0.809,-0.185 1.073,-0.48l2.047,0c0.079,0 0.144,-0.065 0.144,-0.144l0,-0.235c0,-0.066 -0.02,-0.13 -0.056,-0.185l-0.471,-0.562c-0.03,-0.046 -0.082,-0.074 -0.138,-0.074l-0.055,-0l0,-1.2c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0,-0c-0,-0.152 0.001,-0.305 -0.104,-0.381c-0.136,-0.099 -0.951,-0.63 -1.336,-0.853l-0,-0.137c-0,-0.171 -0.138,-0.309 -0.309,-0.309l-0.516,-0c-0.166,-0.083 -0.297,-0.144 -0.385,-0.183c-0.09,-0.038 -0.188,-0.057 -0.286,-0.057l-0.568,-0c-1.006,-0.924 -2.007,-1.608 -2.521,-1.941c-0.234,-0.144 -0.5,-0.225 -0.774,-0.235c-1.376,-0.054 -5.757,-0.223 -6.762,-0.218c-0.121,-0 -0.241,0.013 -0.359,0.038Zm-24.24,-0.192l0,-0.332l-1.92,-0l0,0.48l0.24,-0l0,0.24l0.874,-0c-0.06,0.037 -0.12,0.075 -0.179,0.114c-0.104,0.072 -0.167,0.191 -0.167,0.318l-0,1.488c-0.133,0 -0.24,0.107 -0.24,0.24l-0,0.392c0,0.057 -0.019,0.112 -0.055,0.156l-0.611,0.764c-0.066,0.083 -0.102,0.186 -0.102,0.291l0,0.307l0,0.25c0,0.405 0.001,0.965 0.004,1.262c-0,0.164 0.062,0.323 0.174,0.444c0.254,0.276 0.618,0.451 1.023,0.454c0.249,0.43 0.714,0.72 1.247,0.72c0.533,-0 0.998,-0.29 1.247,-0.72l9.026,-0c0.249,0.43 0.714,0.72 1.247,0.72c0.533,-0 0.998,-0.29 1.247,-0.72l0.749,-0c0.171,0 0.335,-0.068 0.456,-0.188c0.12,-0.121 0.188,-0.285 0.188,-0.456l0,-1.756c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0,-0c-0,-0.12 -0.084,-0.3 -0.2,-0.381c-0.288,-0.2 -1.006,-0.578 -1.528,-0.819c-0,-0.265 -0.215,-0.48 -0.48,-0.48l-0.48,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0.817,-0c-0.936,-0.832 -1.839,-1.448 -2.318,-1.758c-0.234,-0.144 -0.672,-0.383 -0.945,-0.402c-0.872,-0.032 -5.617,-0.206 -6.649,-0.24c-0.188,0 -0.374,0.031 -0.551,0.092Zm-26.208,4.458c-0,0.383 -0,1.147 0.004,1.512c-0,0.164 0.062,0.323 0.174,0.444c0.254,0.276 0.618,0.451 1.023,0.454c0.249,0.43 0.714,0.72 1.247,0.72c0.533,-0 0.998,-0.29 1.247,-0.72l9.026,-0c0.249,0.43 0.714,0.72 1.247,0.72c0.533,-0 0.998,-0.29 1.247,-0.72l0.749,-0c0.171,0 0.335,-0.068 0.456,-0.188c0.12,-0.121 0.188,-0.285 0.188,-0.456l0,-1.516c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0,-0c-0,-0.152 -0.075,-0.295 -0.2,-0.381c-1.252,-0.872 -2.207,-1.33 -2.546,-1.482c-0.09,-0.038 -0.188,-0.057 -0.286,-0.057l-0.568,-0c-1.006,-0.924 -2.007,-1.608 -2.521,-1.941c-0.234,-0.144 -0.5,-0.225 -0.774,-0.235c-1.376,-0.054 -5.757,-0.223 -6.762,-0.218c-0.205,-0 -0.407,0.037 -0.598,0.109c-0.336,0.128 -0.648,0.291 -0.938,0.485c-0.104,0.072 -0.167,0.191 -0.167,0.318l-0,1.242c-0.133,0 -0.24,0.107 -0.24,0.24l-0,0.572c-0,0.096 -0.033,0.189 -0.093,0.264l-0.531,0.664c-0.093,0.117 -0.144,0.261 -0.144,0.41Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car37:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:-4px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 80%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 80%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 80%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 80%) / 2) + calc((80% - 35%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 80%) / 2) + calc((80% - 35%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 80%) / 2) - calc((80% - 35%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 80%) / 2) - calc((80% - 35%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 80%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 80%) / 2) - 10%), transparent calc(100% - calc((100% - 80%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car38:not(.car-tuning){position:relative}.car .car38:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 500 200' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,0l500,0l0,200l-500,0l0,-200Zm8.98,37.41c0,0.47 0.31,0.87 0.77,0.98c0.93,0.24 2.75,0.58 5.51,0.58l0,-0.78l1.42,-0c-0.33,0.87 -0.51,1.8 -0.51,2.78c0,4.34 3.52,7.86 7.86,7.86c4,-0 7.29,-2.98 7.79,-6.84l34.75,0l0.65,-1.02l2.94,0c0,4.34 3.52,7.86 7.86,7.86c4.34,0 7.85,-3.52 7.85,-7.86c0,-0.98 -0.18,-1.91 -0.5,-2.78l1.35,0l0,1.9l1.49,0c0.55,0 1.01,-0.45 1.01,-1.01l0,-4.78l0.64,-0.64l0,-3.5l1.48,0l0,-4.46l-1.02,0l0,-0.78c0,-0.51 -0.37,-0.94 -0.87,-1c-5.15,-0.66 -16.22,-1.68 -25.5,-2.31c0,0 -4.04,-8.31 -6.13,-12.39c0,0 -0.24,-0.41 -2.23,-0.41l0,-0.15c0,-0.55 -0.45,-1.01 -1.01,-1.01l-41.24,0c-0.56,0 -1.01,0.46 -1.01,1.01l0,0.15l-1.34,0c-0.51,0 -0.94,0.38 -1,0.89c-0.28,2.32 -1.01,8.59 -1.01,11.91l0,8.3l-0.66,0c-0.3,0 -0.55,0.25 -0.55,0.55l0,4.41c0,0.3 0.25,0.55 0.55,0.55l0.66,0l0,1.99Zm99.99,0c0,0.47 0.3,0.87 0.76,0.98c0.93,0.24 2.75,0.58 5.51,0.58l0,-0.78l1.42,0c-0.32,0.87 -0.5,1.8 -0.5,2.78c0,4.34 3.51,7.86 7.85,7.86c4,0 7.29,-2.98 7.79,-6.84l34.75,0l0.65,-1.02l2.94,0c0,4.34 3.52,7.86 7.86,7.86c4.34,0 7.86,-3.52 7.86,-7.86c0,-0.98 -0.18,-1.91 -0.51,-2.78l1.36,0l0,1.9l1.48,0c0.55,0 1.01,-0.45 1.01,-1.01l0,-4.78l0.74,-0.64l0,-3.5l1.38,0l0,-4.46l-1.02,0l0,-0.78c0,-0.51 -0.37,-0.94 -0.87,-1c-5.15,-0.66 -16.21,-1.68 -25.5,-2.31c0,0 -4.04,-8.31 -6.13,-12.39c0,0 -0.24,-0.41 -2.22,-0.41l0,-0.15c0,-0.55 -0.46,-1.01 -1.01,-1.01l-41.25,0c-0.56,0 -1.01,0.46 -1.01,1.01l0,0.15l-1.34,0c-0.51,0 -0.94,0.38 -1,0.89c-0.21,1.76 -0.68,5.79 -0.89,9.08l-1.36,0c-1.02,0 -1.86,0.83 -1.86,1.86l0,9.73c0,1.02 0.84,1.85 1.86,1.85l0.04,0l0,2.65c0,0.3 0.24,0.55 0.54,0.55l0.67,0l0,1.99Zm100.33,0.76c0.12,0.1 0.26,0.18 0.43,0.22c0.26,0.07 0.59,0.14 1,0.22l-0,6.2l1.46,0l-0,-6c0.84,0.1 1.86,0.16 3.05,0.16l-0,-0.78l1.42,0c-0.33,0.87 -0.5,1.8 -0.5,2.78c-0,4.34 3.51,7.86 7.85,7.86c4,0 7.29,-2.98 7.79,-6.84l33.93,0l-0,2.82l1.46,0l-0,-3.82l0.01,-0.02l2.94,0c-0,4.34 3.52,7.86 7.86,7.86c4.34,0 7.85,-3.52 7.85,-7.86c-0,-0.98 -0.17,-1.91 -0.5,-2.78l1.36,0l-0,1.9c1.48,0 2.97,0.01 4.46,0.01c0.9,0 1.64,-0.74 1.64,-1.64l-0,-2.2l1.56,0l-0,-1.62l-1.56,0l-0,-2.92l1.56,0l-0,-1.62l-1.56,0l-0,-4.34l-1.26,0l-0,6.34l-1.61,0l-0,-1.94l1.38,0l-0,-4.46l-1.02,0l-0,-0.78c-0,-0.51 -0.37,-0.94 -0.87,-1c-5.15,-0.66 -16.22,-1.68 -25.5,-2.31c-0,0 -4.04,-8.31 -6.13,-12.39c-0,0 -0.24,-0.41 -2.22,-0.41l-0,-0.15c-0,-0.55 -0.46,-1.01 -1.02,-1.01l-5.97,0l-0,-4.96l-2.9,0l-0,1.08l-6.56,3.88l-25.81,0c-0.56,0 -1.01,0.46 -1.01,1.01l-0,0.15l-1.34,0c-0.51,0 -0.94,0.38 -1,0.89c-0.22,1.76 -0.68,5.79 -0.9,9.08l-1.35,0c-1.02,0 -1.86,0.83 -1.86,1.86l-0,9.73c-0,1.02 0.84,1.85 1.86,1.85l0.04,0l-0,2.65c-0,0.3 0.24,0.55 0.54,0.55l0.66,0l-0,0.36l-0.44,0c-0.49,0 -0.89,0.4 -0.89,0.89l-0,0.61c-0,0.49 0.4,0.89 0.89,0.89l0.78,0Zm79.9,0.68l0,-1.95l2.35,0l0.01,1.56c0,0.21 -0.18,0.39 -0.39,0.39l-1.97,0Zm0,-2.79l0,-1.76l0.74,-0.64l0,-0.73l1.61,0l0,3.13l-2.35,0Zm-43.51,-28.41l-3.3,0l3.3,-1.95l0,1.95Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car38:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 90%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 90%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 90%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 90%) / 2) + calc((90% - 35%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 90%) / 2) + calc((90% - 35%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 90%) / 2) - calc((90% - 35%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - calc((90% - 35%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 90%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 90%) / 2) - 10%), transparent calc(100% - calc((100% - 90%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car39:not(.car-tuning){position:relative}.car .car39:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-60,6.137l-0,-0.447c-0,-0.094 -0.076,-0.17 -0.17,-0.17l-0.14,0c-0.045,-0 -0.088,0.018 -0.12,0.05c-0.032,0.032 -0.05,0.075 -0.05,0.12l-0,0.07l-1.441,-0c-0.132,-0 -0.239,0.107 -0.239,0.239c-3.463,-0.017 -4.883,-0.187 -6.72,0.961c-0.933,0.583 -1.267,1.301 -1.382,1.672l-1.188,0.687c-0.043,0.026 -0.07,0.072 -0.07,0.122l0,0.081c0,0.049 0.025,0.094 0.066,0.119c0.481,0.299 3.462,2.119 4.734,2.119l18.278,0c0.044,0 0.086,-0.023 0.11,-0.06c0.024,-0.037 0.028,-0.084 0.01,-0.125c-0.149,-0.335 -0.463,-1.042 -0.613,-1.386c-0.051,-0.117 -0.067,-0.246 -0.045,-0.372c0.013,-0.071 0.02,-0.144 0.02,-0.217c0,-1.033 -1.332,-1.939 -2.64,-2.124l-0,-0.096c-0,-0.099 -0.081,-0.18 -0.18,-0.18l-1.26,0l0,-0.24l-1.68,-0c-0.314,-0 -0.58,0.201 -0.679,0.48l-1.001,0c0,0 -1.401,-0.943 -3.6,-1.303Zm-25.68,-0.137c-3.816,0 -5.28,-0.24 -7.2,0.96c-0.933,0.583 -1.267,1.301 -1.382,1.672l-1.188,0.687c-0.043,0.026 -0.07,0.072 -0.07,0.122l0,0.081c0,0.049 0.025,0.094 0.066,0.119c0.481,0.299 3.462,2.119 4.734,2.119l14.64,-0.002c1.44,0.002 3.12,-0.997 3.12,-2.158c0,-1.161 -1.68,-2.16 -3.12,-2.158l-4.32,-0.002c0,0 -2.14,-1.44 -5.28,-1.44Zm-14.4,5.758c1.44,0.002 3.12,-0.997 3.12,-2.158c0,-1.161 -1.68,-2.16 -3.12,-2.158l-4.32,-0.002c0,-0 -2.14,-1.44 -5.28,-1.44c-1.932,0 -3.485,0.272 -4.395,0.481c-0.529,0.125 -1.036,0.326 -1.507,0.599l-3.868,2.239c-0.043,0.026 -0.07,0.072 -0.07,0.122l0,0.081c0,0.049 0.025,0.094 0.066,0.119c0.481,0.299 3.462,2.119 4.734,2.119l14.64,-0.002Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car39:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 95%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 95%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 95%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 95%) / 2) - 10%), transparent calc(100% - calc((100% - 95%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car40:not(.car-tuning){position:relative}.car .car40:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-106.971,11.04l1.611,-0c1.2,-0 2.16,-0.96 2.167,-1.861c0,-0.001 0,-0.001 -0,-0.001c0.018,-1.149 -0.226,-7.373 -7.622,-7.956c-0.076,-0.007 -0.15,0.021 -0.204,0.074c-0.053,0.053 -0.081,0.127 -0.076,0.202c0.078,0.682 0.39,2.428 1.624,4.131c0.049,0.068 0.044,0.16 -0.012,0.222l-1.858,2.026c-0.167,0.182 -0.259,0.42 -0.259,0.666l-0,0.791c0,0.545 0.441,0.986 0.986,0.986l0.594,-0c0.285,0.703 0.975,1.2 1.78,1.2c0.486,-0 0.931,-0.181 1.269,-0.48Zm42.541,-5.04l-0.327,-0l0,1.2l0.126,-0c-0.184,0.458 -0.172,0.99 0.078,1.458l1.142,2.142l1.622,-0c0.352,0.439 0.892,0.72 1.498,0.72c0.487,-0 0.931,-0.181 1.27,-0.48l1.61,-0c1.2,-0 2.16,-0.96 2.168,-1.861c-0,-0.001 -0.001,-0.001 -0.001,-0.001c0.018,-1.149 -0.226,-7.373 -7.622,-7.956c-0.075,-0.007 -0.15,0.021 -0.203,0.074c-0.054,0.053 -0.082,0.127 -0.077,0.202c0.029,0.255 0.077,0.584 0.207,1.078c-1.141,0.731 -1.467,2.059 -1.491,3.424Zm0.843,-0l-0.409,-0c0.021,-1.227 0.224,-2.211 1.211,-2.891c0.066,0.22 0.066,0.225 0.162,0.468c-0.728,0.601 -0.913,1.443 -0.964,2.423Zm0.49,0l-0.076,0c0.045,-0.845 0.144,-1.445 0.738,-1.979c0.205,0.476 0.429,0.904 0.773,1.409c-0.549,0.203 -1.024,0.395 -1.435,0.57Zm-22.641,4.8c0.352,0.439 0.892,0.72 1.498,0.72c0.486,-0 0.931,-0.181 1.269,-0.48l1.611,-0c1.2,-0 2.16,-0.96 2.167,-1.861c0,-0.001 0,-0.001 -0,-0.001c0.018,-1.149 -0.226,-7.373 -7.622,-7.956c-0.076,-0.007 -0.15,0.021 -0.204,0.074c-0.053,0.053 -0.081,0.127 -0.076,0.202c0.075,0.656 0.366,2.293 1.484,3.932c-0.953,0.353 -1.685,0.671 -2.241,0.927c-0.799,0.468 -1.086,1.484 -0.65,2.301l1.142,2.142l1.622,-0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car40:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:20%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 50%) / 2), rgba(0, 0, 0, 0.2) calc(calc((100% - 50%) / 2) + 10%), rgba(0, 0, 0, 0.3) calc(calc(calc((100% - 50%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.3) calc(calc(100% - calc((100% - 50%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.2) calc(100% - calc((100% - 50%) / 2) - 10%), transparent calc(100% - calc((100% - 50%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car41:not(.car-tuning){position:relative}.car .car41:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-86.64,2.4l-6.72,-0.002l0,-0.238l-2.4,0l-0,0.48c-0,-0 0.49,0.114 1.2,0.72l-0,0.24c-0.316,0.388 -0.687,0.683 -1.105,0.897c-0.06,0.039 -0.095,0.106 -0.095,0.177c0,0.063 0,0.144 0.005,0.213c-0,0.089 0.056,0.168 0.141,0.197c0.839,0.294 1.054,1.156 1.054,1.156c-0.763,0.819 -0.96,1.44 -0.96,1.44l-0,0.86c0,0.026 0.011,0.052 0.029,0.071c0.019,0.018 0.045,0.029 0.071,0.029l0.138,0l0.064,0.064c-0.042,0.172 -0.064,0.352 -0.064,0.537c0,1.258 1.021,2.279 2.279,2.279c0.527,0 1.013,-0.179 1.399,-0.48l1.429,-0c0.123,-0 0.242,-0.039 0.341,-0.112c0.423,-0.284 1.529,-1.019 1.883,-1.254c0.072,-0.048 0.157,-0.074 0.244,-0.074l5.489,-0c0.084,0 0.162,-0.048 0.2,-0.124l0.116,-0.232c0.038,-0.076 0.116,-0.124 0.2,-0.124l1.302,0l0,0.118c0,0.079 0.031,0.154 0.087,0.209c0.739,0.731 1.435,1.284 1.711,1.498c0.083,0.062 0.183,0.095 0.286,0.095l0.721,0c0.386,0.301 0.872,0.48 1.399,0.48c0.766,0 1.445,-0.379 1.858,-0.96l2.066,-0c0.072,0 0.141,-0.029 0.192,-0.08c0.051,-0.051 0.08,-0.12 0.08,-0.192l0,-0.485c-0,-0.054 -0.021,-0.106 -0.059,-0.144c-0.038,-0.038 -0.09,-0.059 -0.144,-0.059l-0.037,0l-0,-1.772c0,-0.23 -0.092,-0.451 -0.255,-0.614c-0.066,-0.067 -0.142,-0.121 -0.225,-0.163l0,-0.089c0,-0.378 -0.103,-0.664 -0.21,-0.864c-0.105,-0.186 -0.264,-0.336 -0.456,-0.432c-2.257,-1.11 -4.854,-1.346 -4.854,-1.346c-3.68,-2.051 -5.76,-1.92 -5.76,-1.92l-2.64,0Zm-10.08,5.76l0.133,-0c0.191,-0 0.347,-0.156 0.347,-0.347l0,-0.504c0,-0.192 -0.156,-0.347 -0.347,-0.347l-0.133,-0c-0,-0.378 -0.103,-0.664 -0.21,-0.864c-0.105,-0.186 -0.264,-0.336 -0.456,-0.432c-2.257,-1.11 -4.854,-1.346 -4.854,-1.346c-3.68,-2.051 -5.76,-1.92 -5.76,-1.92l-3.6,0c-3.239,0 -6.24,0.72 -6.24,0.72c-0.252,0.938 -1.2,0.96 -1.2,0.96l-0.625,0.417c-0.06,0.039 -0.095,0.106 -0.095,0.177c-0,0.063 -0,0.144 0.005,0.213c-0,0.089 0.056,0.168 0.141,0.197c0.839,0.294 1.054,1.156 1.054,1.156c-0.763,0.819 -0.96,1.44 -0.96,1.44l-0,0.86c0,0.026 0.011,0.052 0.029,0.071c0.019,0.018 0.045,0.029 0.071,0.029l0.138,0l0.064,0.064c-0.042,0.172 -0.064,0.352 -0.064,0.537c0,1.258 1.021,2.279 2.279,2.279c0.527,0 1.013,-0.179 1.399,-0.48l1.429,-0c0.123,-0 0.242,-0.039 0.341,-0.112c0.423,-0.284 1.529,-1.019 1.883,-1.254c0.072,-0.048 0.157,-0.074 0.244,-0.074l5.489,-0c0.084,0 0.162,-0.048 0.2,-0.124l0.116,-0.232c0.038,-0.076 0.116,-0.124 0.2,-0.124l1.302,0l0,0.118c0,0.079 0.031,0.154 0.087,0.209c0.739,0.731 1.435,1.284 1.711,1.498c0.083,0.062 0.183,0.095 0.286,0.095l0.721,0c0.386,0.301 0.872,0.48 1.399,0.48c0.766,0 1.445,-0.379 1.858,-0.96c0,0 0.27,0 0.464,-0.003c0.127,0 0.246,-0.061 0.319,-0.165c0.85,-1.185 0.835,-2.232 0.835,-2.232Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car41:not(.car-tuning)::after{content:\"\";position:absolute;bottom:1px;left:0px;width:100%;height:35%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 100%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 100%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 100%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 100%) / 2) + calc((100% - 60%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 100%) / 2) + calc((100% - 60%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 100%) / 2) - calc((100% - 60%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 100%) / 2) - calc((100% - 60%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 100%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 100%) / 2) - 10%), transparent calc(100% - calc((100% - 100%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car42:not(.car-tuning){position:relative}.car .car42:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M60.24,0l59.76,0l0,48l-120,0l0,-48l10.791,-0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,-0 -0.375,0.24 -0.96,0.24l-0,0.24c-0,-0 0.309,0.249 0.885,0.454c-0.38,0.157 -0.795,0.363 -1.198,0.631c-0.092,0.062 -0.117,0.187 -0.055,0.279c0.349,0.493 1.502,1.989 3.248,2.956c0,0 2.41,1.657 5.323,3.028c0.12,0.056 0.197,0.177 0.197,0.31l0,0.022l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l0,0.195c0,0 -0.375,0.24 -0.96,0.24l0,0.24c0,0 0.309,0.249 0.885,0.454c-0.377,0.156 -0.789,0.36 -1.189,0.625c-0.047,0.031 -0.079,0.08 -0.09,0.135c-0.011,0.055 0.001,0.113 0.033,0.159c0.204,0.288 0.668,0.898 1.354,1.546c-1.31,-0.026 -2.389,0.289 -2.958,0.5c-0.073,0.03 -0.12,0.101 -0.12,0.179c0,0.079 0.047,0.15 0.12,0.18c0.582,0.209 1.71,0.522 3.165,0.481l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.303,0.05 0.588,0.175 0.83,0.363c0.418,0.322 1.154,0.874 2.005,1.454c0.172,0.117 0.375,0.179 0.582,0.179l1.364,0l0,0.24l-1.241,-0c-0.053,-0 -0.103,0.021 -0.141,0.058c-0.037,0.038 -0.058,0.088 -0.058,0.141l0,0.091c-0,0.117 0.065,0.224 0.17,0.277c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l0,-0.72l22.551,0c-1.052,0.055 -2.454,0.25 -3.415,0.848c-0.111,0.073 -0.24,0.112 -0.372,0.112l-0.479,-0c-0.157,-0 -0.285,0.128 -0.285,0.285l-0,0.195c-0.245,0.155 -0.575,0.225 -0.96,0.24c-1.486,0.071 -2.64,0.586 -2.64,1.2c0,0.649 1.292,1.179 2.903,1.199l0,0.001l0.937,0l0,0.72c-1.479,0 -2.62,0.337 -3.193,0.55c-0.067,0.029 -0.111,0.096 -0.111,0.169c-0,0.074 0.044,0.141 0.112,0.169c0.573,0.209 1.714,0.533 3.192,0.491l0,0.456c0,0.188 0.135,0.348 0.32,0.378c0.511,0.085 1.512,0.252 2.099,0.351c0.066,0.011 0.131,0.025 0.195,0.043l-1.894,1.473l1.2,0c0,0.133 0.107,0.24 0.24,0.24l0.48,0c-0,0 -1.205,0.904 -1.2,0.96c0.004,0.043 3.029,0.02 4.39,0.007c0.027,0.033 0.06,0.06 0.1,0.08c0.153,0.073 0.401,0.184 0.718,0.293c0.181,0.064 0.371,0.096 0.562,0.096c0.433,0.004 1.314,0.004 1.71,0.004c0.126,0 0.244,0.059 0.32,0.16l0.547,0.729c0.033,0.045 0.086,0.071 0.141,0.071l0.056,0c0.06,0 0.116,-0.03 0.148,-0.08l1.211,-1.863c1.227,-1.888 0.93,-4.383 -0.707,-5.93c-1.268,-1.192 -2.935,-2.405 -4.876,-2.927l-0,-0.72Zm-48,12.72l-0,1.68l1.68,0.96l0.96,0l1.2,0.96l-0,1.2c-0,0 0.308,0.24 1.2,0.24l0,-0.96c0.133,-0 0.24,-0.107 0.24,-0.24l0,-0.481c0,-0.152 -0.065,-0.297 -0.18,-0.398c-0.57,-0.492 -2.398,-2.018 -4.124,-2.844c-0.165,-0.076 -0.344,-0.115 -0.526,-0.115c-0.204,-0.002 -0.45,-0.002 -0.45,-0.002Zm-5.766,18.24l1.206,0l0.24,0.96l1.732,0c0.501,-0 0.908,-0.407 0.908,-0.908l0,-1.563c0,-0.112 -0.021,-0.222 -0.061,-0.326l-0.915,-2.381c-0.135,-0.351 -0.472,-0.582 -0.848,-0.582l-3.216,0c-1.226,0 -1.92,0.96 -1.92,0.96c0.276,0.41 0.597,0.792 0.789,1.011c-0.056,0.091 -0.151,0.152 -0.259,0.166c-0.114,0.014 -0.228,-0.029 -0.305,-0.114c-0.198,-0.216 -0.442,-0.343 -0.705,-0.343c-0.357,0 -0.678,0.235 -0.918,0.594c-0.05,0.082 -0.132,0.139 -0.227,0.155c-0.094,0.017 -0.191,-0.008 -0.266,-0.068c-0.147,-0.127 -0.322,-0.201 -0.509,-0.201c-0.53,0 -0.96,0.591 -0.96,1.32c0,0.729 0.43,1.32 0.96,1.32c0.187,0 0.362,-0.074 0.495,-0.219c0.08,-0.065 0.183,-0.091 0.284,-0.073c0.101,0.017 0.19,0.078 0.243,0.166c0.22,0.371 0.541,0.606 0.898,0.606c0.263,0 0.507,-0.127 0.704,-0.344c0.078,-0.085 0.192,-0.128 0.307,-0.114c0.114,0.014 0.215,0.083 0.27,0.185c0.244,0.462 0.596,0.753 0.988,0.753c0.448,0 0.844,-0.379 1.085,-0.96Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car42:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:25%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 70%) / 2), rgba(0, 0, 0, 0.2) calc(calc((100% - 70%) / 2) + 10%), rgba(0, 0, 0, 0.3) calc(calc(calc((100% - 70%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.3) calc(calc(100% - calc((100% - 70%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.2) calc(100% - calc((100% - 70%) / 2) - 10%), transparent calc(100% - calc((100% - 70%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car43:not(.car-tuning){position:relative}.car .car43:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 216 120' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,7.68l0,-7.68l216,0l-0,120l-216,-0l0,-111.36c-0,0.064 0.025,0.125 0.07,0.17c0.045,0.045 0.106,0.07 0.17,0.07c-0,-0 -0,0.045 0.001,0.095c0,0.092 0.047,0.177 0.125,0.225c1.066,0.637 2.514,0.64 2.514,0.64l0.015,0.002c0.119,0.946 0.927,1.678 1.905,1.678c0.805,-0 1.495,-0.497 1.78,-1.2c1.785,-0 7.317,-0 11.319,-0.002c0.284,0.704 0.975,1.202 1.781,1.202c0.807,-0 1.499,-0.499 1.782,-1.205c0.343,-0.001 0.595,-0.001 0.734,-0.002c0.108,-0 0.214,-0.017 0.316,-0.05c0.66,-0.214 1.138,-0.585 1.358,-0.776c0.083,-0.079 0.13,-0.189 0.13,-0.304c0,-0.133 0,-0.329 -0,-0.542c0,0.063 0.025,0.124 0.07,0.169c0.045,0.045 0.106,0.07 0.17,0.07c-0,-0 0,0.045 0.001,0.095c0,0.092 0.047,0.177 0.125,0.225c1.066,0.637 2.514,0.64 2.514,0.64l0.015,0.002c0.119,0.946 0.927,1.678 1.905,1.678c0.805,-0 1.495,-0.497 1.78,-1.2c1.785,-0 7.317,-0 11.319,-0.002c0.284,0.704 0.975,1.202 1.781,1.202c0.807,-0 1.499,-0.499 1.782,-1.205c0.343,-0.001 0.595,-0.001 0.734,-0.002c0.108,-0 0.214,-0.017 0.316,-0.05c0.66,-0.214 1.138,-0.585 1.358,-0.776c0.083,-0.079 0.13,-0.189 0.13,-0.304c0,-0.133 0,-0.329 -0,-0.542c0,0.063 0.025,0.124 0.07,0.169c0.045,0.045 0.106,0.07 0.17,0.07l-0,0.24l0.001,0c-0,0.103 0.05,0.199 0.135,0.257c0.359,0.234 1.398,0.851 2.718,1.104c0.319,0.617 0.964,1.039 1.706,1.039c0.606,-0 1.146,-0.281 1.498,-0.72l11.884,0c0.352,0.439 0.892,0.72 1.498,0.72c0.609,-0 1.152,-0.284 1.504,-0.727c0.506,-0.038 1.746,-0.437 2.694,-1.313c0.078,-0.074 0.122,-0.176 0.122,-0.283c-0.001,-0.397 -0.002,-1.389 -0.005,-1.575c0,-0.125 -0.042,-0.246 -0.119,-0.345c-1.514,-1.795 -6.836,-1.997 -6.836,-1.997c-1.039,-0.754 -1.986,-1.331 -2.743,-1.753c-1.055,-0.582 -2.24,-0.887 -3.444,-0.887l-6.053,-0c-0.133,-0 -0.24,0.107 -0.24,0.24l-1.988,-0c-0.095,-0 -0.172,0.077 -0.172,0.172l0,0.308l0.131,-0c0.06,0 0.109,0.049 0.109,0.109l0,0.262c-0,0.06 -0.049,0.109 -0.109,0.109c-0.008,-0 -0.016,-0 -0.024,0.001c-0.073,-0 -0.144,0.017 -0.208,0.051c-0.93,0.489 -1.554,1.104 -1.752,1.314c-0.043,0.048 -0.067,0.111 -0.067,0.176l-0,0.138c-0.133,0 -0.24,0.107 -0.24,0.24l-0,1.68c-0.133,0 -0.24,0.107 -0.24,0.24l-0,0.96c-0.001,-0.367 -0.002,-0.784 -0.005,-1.018c0,-0.125 -0.042,-0.246 -0.119,-0.345c-1.514,-1.795 -6.836,-1.997 -6.836,-1.997c-1.039,-0.754 -1.986,-1.331 -2.743,-1.753c-1.055,-0.582 -2.24,-0.887 -3.444,-0.887l-6.053,-0c-0.133,-0 -0.24,0.107 -0.24,0.24l-1.988,-0c-0.095,-0 -0.172,0.077 -0.172,0.172l0,0.308l0.131,-0c0.06,0 0.109,0.049 0.109,0.109l0,0.262c-0,0.06 -0.049,0.109 -0.109,0.109c-0.008,-0 -0.016,-0 -0.024,0.001c-0.073,-0 -0.144,0.017 -0.208,0.051c-0.93,0.489 -1.554,1.104 -1.752,1.314c-0.043,0.048 -0.067,0.111 -0.067,0.176l-0,0.138c-0.133,0 -0.24,0.107 -0.24,0.24l-0,1.68c-0.133,0 -0.24,0.107 -0.24,0.24l-0,0.96c-0.001,-0.367 -0.002,-0.784 -0.005,-1.018c0,-0.125 -0.042,-0.246 -0.119,-0.345c-1.514,-1.795 -6.836,-1.997 -6.836,-1.997c-1.039,-0.754 -1.986,-1.331 -2.743,-1.753c-1.055,-0.582 -2.24,-0.887 -3.444,-0.887l-6.053,-0c-0.133,-0 -0.24,0.107 -0.24,0.24l-1.988,-0c-0.095,-0 -0.172,0.077 -0.172,0.172l-0,0.308l0.131,-0c0.06,0 0.109,0.049 0.109,0.109l-0,0.262c-0,0.06 -0.049,0.109 -0.109,0.109c-0.008,-0 -0.016,-0 -0.024,0.001c-0.073,-0 -0.144,0.017 -0.208,0.051c-0.93,0.489 -1.554,1.104 -1.752,1.314c-0.043,0.048 -0.067,0.111 -0.067,0.176l-0,0.138c-0.133,0 -0.24,0.107 -0.24,0.24l-0,1.68c-0.133,0 -0.24,0.107 -0.24,0.24Zm116.64,-1.922l0,-0.314c0,-0.043 -0.017,-0.085 -0.048,-0.116c-0.031,-0.031 -0.073,-0.048 -0.116,-0.048l-3.196,-0l0,0.013c-0.154,-0.01 -0.24,-0.013 -0.24,-0.013c-1.039,-0.754 -1.986,-1.331 -2.744,-1.753c-1.054,-0.582 -2.239,-0.887 -3.443,-0.887l-6.053,-0c-0.133,-0 -0.24,0.107 -0.24,0.24l-1.988,-0c-0.095,-0 -0.172,0.077 -0.172,0.172l-0,0.308l0.131,-0c0.06,0 0.109,0.049 0.109,0.109l-0,0.262c-0,0.06 -0.049,0.109 -0.109,0.109c-0.008,-0 -0.016,-0 -0.024,0.001c-0.073,-0 -0.144,0.017 -0.208,0.051c-0.93,0.489 -1.554,1.104 -1.752,1.314c-0.043,0.048 -0.067,0.111 -0.067,0.176l-0,0.138c-0.133,0 -0.24,0.107 -0.24,0.24l-0,1.68c-0.133,0 -0.24,0.107 -0.24,0.24l-0,0.96c-0,0.064 0.025,0.125 0.07,0.17c0.045,0.045 0.106,0.07 0.17,0.07l-0,0.24l0.001,0c-0,0.103 0.05,0.199 0.135,0.257c0.359,0.234 1.398,0.851 2.718,1.104c0.319,0.617 0.964,1.039 1.706,1.039c0.606,-0 1.146,-0.281 1.498,-0.72l11.883,0c0.352,0.439 0.893,0.72 1.499,0.72c0.609,-0 1.152,-0.284 1.504,-0.727c0.505,-0.038 1.745,-0.437 2.694,-1.313c0.078,-0.074 0.122,-0.176 0.122,-0.283c-0.001,-0.397 -0.003,-1.389 -0.005,-1.575c-0,-0.125 -0.042,-0.246 -0.119,-0.345c-0.634,-0.752 -1.937,-1.224 -3.236,-1.519Zm24.538,5.042l2.451,0c0.072,-0 0.131,-0.059 0.131,-0.131l-0,-0.243c0,-0.068 -0.027,-0.133 -0.075,-0.181l-0.088,-0.088c-0.049,-0.049 -0.116,-0.077 -0.186,-0.077l-0.131,-0l-0,-0.13c0.205,-0.138 0.407,-0.295 0.598,-0.47c0.078,-0.074 0.122,-0.176 0.122,-0.283c-0.001,-0.397 -0.003,-1.389 -0.005,-1.575c-0,-0.125 -0.042,-0.246 -0.119,-0.345c-1.514,-1.795 -6.836,-1.997 -6.836,-1.997c-1.039,-0.754 -1.986,-1.331 -2.744,-1.753c-1.054,-0.582 -2.239,-0.887 -3.443,-0.887l-6.053,-0c-0.133,-0 -0.24,0.107 -0.24,0.24l-1.47,-0l-0.518,-0l-0.691,-0c-0.123,0 -0.236,0.07 -0.291,0.18l-0.022,0.044c-0.028,0.055 -0.025,0.12 0.008,0.172c0.032,0.052 0.089,0.084 0.15,0.084l0.805,-0c0.06,0 0.109,0.049 0.109,0.109l-0,0.262c-0,0.06 -0.049,0.109 -0.109,0.109c-0.008,-0 -0.016,-0 -0.024,0.001c-0.073,-0 -0.144,0.017 -0.208,0.051c-0.93,0.489 -1.554,1.104 -1.752,1.314c-0.043,0.048 -0.067,0.111 -0.067,0.176l-0,0.138c-0.133,0 -0.24,0.107 -0.24,0.24l-0,1.68c-0.133,0 -0.24,0.107 -0.24,0.24l-0,0.96c-0,0.064 0.025,0.125 0.07,0.17c0.045,0.045 0.106,0.07 0.17,0.07l-0,0.24l0.001,0c-0,0.103 0.05,0.199 0.135,0.257c0.359,0.234 1.398,0.851 2.718,1.104c0.319,0.617 0.964,1.039 1.706,1.039c0.606,-0 1.146,-0.281 1.498,-0.72l11.883,0c0.352,0.439 0.893,0.72 1.499,0.72c0.606,-0 1.146,-0.281 1.498,-0.72Zm-47.994,-0.007c0.506,-0.038 1.746,-0.437 2.694,-1.313c0.078,-0.074 0.122,-0.176 0.122,-0.283c-0.001,-0.397 -0.002,-1.389 -0.005,-1.575c0,-0.125 -0.042,-0.246 -0.119,-0.345c-1.514,-1.795 -6.836,-1.997 -6.836,-1.997c-1.039,-0.754 -1.986,-1.331 -2.743,-1.753c-1.055,-0.582 -2.24,-0.887 -3.444,-0.887l-6.053,-0c-0.133,-0 -0.24,0.107 -0.24,0.24l-1.988,-0c-0.095,-0 -0.172,0.077 -0.172,0.172l0,0.308l0.131,-0c0.06,0 0.109,0.049 0.109,0.109l0,0.262c-0,0.06 -0.049,0.109 -0.109,0.109c-0.008,-0 -0.016,-0 -0.024,0.001c-0.073,-0 -0.144,0.017 -0.208,0.051c-0.93,0.489 -1.554,1.104 -1.752,1.314c-0.043,0.048 -0.067,0.111 -0.067,0.176l-0,0.138c-0.133,0 -0.24,0.107 -0.24,0.24l-0,1.68c-0.133,0 -0.24,0.107 -0.24,0.24l0,0.96c-0,0.064 0.025,0.125 0.07,0.17c0.045,0.045 0.106,0.07 0.17,0.07l-0,0.24l0.001,0c-0,0.103 0.05,0.199 0.135,0.257c0.359,0.234 1.398,0.851 2.718,1.104c0.319,0.617 0.964,1.039 1.706,1.039c0.606,-0 1.146,-0.281 1.498,-0.72l11.884,0c0.352,0.439 0.892,0.72 1.498,0.72c0.609,-0 1.152,-0.284 1.504,-0.727Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:900px 500px !important;pointer-events:none;z-index:1}.car .car43:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:2px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 95%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 95%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 95%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 95%) / 2) + calc((95% - 50%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 95%) / 2) + calc((95% - 50%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 95%) / 2) - calc((95% - 50%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - calc((95% - 50%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 95%) / 2) - 10%), transparent calc(100% - calc((100% - 95%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car44:not(.car-tuning){position:relative}.car .car44:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-106.56,8.88c0,0.927 0.753,1.68 1.68,1.68c0.927,-0 1.68,-0.753 1.68,-1.68c-0,-0.846 -0.626,-1.546 -1.44,-1.663l0,-0.497l0.48,-0l-0,-0.52c-0,-0.11 -0.09,-0.2 -0.2,-0.2l-0.04,0l-0,-0.249c-0,-0.128 -0.103,-0.231 -0.231,-0.231l-0.009,-0l0,-0.31c-0,-0.094 -0.076,-0.17 -0.17,-0.17l-0.07,-0l0,-0.508c0,-0.056 -0.022,-0.11 -0.062,-0.15c-0.04,-0.04 -0.094,-0.062 -0.15,-0.062l-0.268,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-0.24,-0c-0.133,0 -0.24,0.107 -0.24,0.24l-0.329,-0c-0.04,0 -0.078,0.016 -0.107,0.044c-0.028,0.029 -0.044,0.067 -0.044,0.107l0,0.089l-0.24,-0l0,0.24l0.24,-0l0,0.23l-0.48,0l-1.2,-1.19l0,-0.24l0.24,-0c0.24,-0 0.872,-0.599 0.874,-1.079c0.004,-0.991 -1.081,-1.138 -1.567,-0.61c-0.183,0.199 -0.267,0.489 -0.267,0.729l-0.24,-0c-0.718,0.228 -1.513,1.111 -1.909,1.596c-0.162,0.201 -0.251,0.451 -0.251,0.709l0,0.575l-0.72,-0l-0,-0.492c0,-0.124 -0.049,-0.243 -0.137,-0.331c-0.088,-0.088 -0.207,-0.137 -0.331,-0.137l-1.212,-0c-0.353,-0 -0.48,-0.24 -0.48,-0.24l-0.73,-0l0,0.24l0.25,-0l0,0.96l0.24,-0l0,0.389l-0.448,0.672c-0.077,0.115 -0.045,0.27 0.069,0.347c0.115,0.077 0.27,0.045 0.347,-0.069l0.572,-0.859l0.18,0l0,0.24l1.2,-0c0.291,0.291 0.72,0.24 0.72,0.24l0,0.24l-0.24,-0l0,0.48l0.011,0.033c-0.282,-0.173 -0.615,-0.273 -0.971,-0.273c-1.013,-0 -1.835,0.807 -1.835,1.8c-0,0.993 0.822,1.8 1.835,1.8c0.704,-0 1.315,-0.389 1.623,-0.96l0.297,0c0,0.133 0.107,0.24 0.24,0.24l3.84,-0c0.064,0 0.125,-0.025 0.17,-0.07c0.045,-0.045 0.07,-0.106 0.07,-0.17c0.133,-0 0.24,-0.107 0.24,-0.24l-0,-0.48Zm-0,-0l-0,-0.24l0.017,-0c-0.011,0.078 -0.017,0.159 -0.017,0.24Zm-6.348,0.672c0.055,-0.011 0.109,0.02 0.127,0.073c0.009,0.023 0.018,0.048 0.026,0.072c0.011,0.03 0.008,0.064 -0.008,0.092c-0.016,0.028 -0.043,0.048 -0.075,0.055c-0.05,0.01 -0.102,0.017 -0.155,0.019c-0.402,0.019 -0.759,-0.205 -0.928,-0.544c-0.013,-0.028 -0.014,-0.06 -0.001,-0.089c0.012,-0.028 0.035,-0.051 0.065,-0.061c0.024,-0.011 0.051,-0.02 0.075,-0.029c0.054,-0.018 0.113,0.006 0.138,0.058c0.118,0.228 0.362,0.379 0.636,0.366c0.034,-0.002 0.068,-0.006 0.1,-0.012Zm0.108,-1.483c0,0.019 -0.003,0.038 -0.008,0.056l-0.031,0.101c-0.064,-0.02 -0.131,-0.03 -0.201,-0.03c-0.276,-0 -0.514,0.163 -0.622,0.398c-0.022,0.052 -0.078,0.079 -0.132,0.063c-0.026,-0.005 -0.053,-0.013 -0.078,-0.02c-0.031,-0.009 -0.056,-0.03 -0.07,-0.059c-0.014,-0.028 -0.015,-0.061 -0.003,-0.091c0.154,-0.347 0.501,-0.591 0.905,-0.591c0.083,-0 0.163,0.01 0.24,0.029l-0,0.144Zm7.275,0.539c-0.036,0.083 -0.056,0.175 -0.056,0.272c0,0.111 0.026,0.216 0.072,0.309c0.026,0.05 0.01,0.11 -0.036,0.142c-0.02,0.015 -0.043,0.031 -0.065,0.046c-0.026,0.018 -0.059,0.024 -0.089,0.016c-0.031,-0.007 -0.057,-0.028 -0.072,-0.055c-0.07,-0.138 -0.11,-0.293 -0.11,-0.458c0,-0.166 0.041,-0.323 0.113,-0.461c0.008,-0.016 0.021,-0.029 0.035,-0.039l0.208,0.228Zm1.337,0.165c-0.051,-0.336 -0.342,-0.594 -0.692,-0.594c-0.082,0 -0.161,0.015 -0.234,0.041l-0.212,-0.232c0.008,-0.007 0.017,-0.013 0.026,-0.018c0.128,-0.058 0.27,-0.091 0.42,-0.091c0.531,0 0.965,0.414 0.999,0.937l-0.001,-0l0,0.003c0.004,0.057 0.002,0.113 -0.004,0.169c-0.003,0.031 -0.02,0.06 -0.046,0.078c-0.026,0.019 -0.059,0.025 -0.09,0.018c-0.025,-0.006 -0.052,-0.012 -0.076,-0.018c-0.054,-0.013 -0.091,-0.064 -0.085,-0.119c0.003,-0.036 -0.002,-0.153 -0.005,-0.174l0,-0Zm-8.168,0.107l0.3,-0c0,0.15 -0.033,0.293 -0.094,0.421c-0.014,0.028 -0.039,0.049 -0.07,0.058c-0.03,0.008 -0.063,0.003 -0.09,-0.014c-0.022,-0.013 -0.045,-0.028 -0.066,-0.041c-0.048,-0.031 -0.065,-0.092 -0.041,-0.143c0.04,-0.085 0.061,-0.181 0.061,-0.281Zm7.998,0.466c0.037,-0.042 0.099,-0.051 0.145,-0.02c0.023,0.013 0.046,0.029 0.069,0.043c0.026,0.018 0.043,0.046 0.048,0.077c0.005,0.031 -0.004,0.063 -0.024,0.087c-0.185,0.212 -0.457,0.348 -0.76,0.348c-0.162,-0 -0.316,-0.039 -0.452,-0.108c-0.027,-0.015 -0.048,-0.04 -0.055,-0.071c-0.008,-0.03 -0.002,-0.063 0.015,-0.089c0.014,-0.022 0.03,-0.045 0.044,-0.066c0.032,-0.047 0.093,-0.063 0.143,-0.037c0.092,0.045 0.196,0.071 0.305,0.071c0.208,-0 0.394,-0.091 0.522,-0.235Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car44:not(.car-tuning)::after{content:\"\";position:absolute;bottom:4px;left:-4px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 60%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 60%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 60%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 60%) / 2) + calc((60% - 30%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 60%) / 2) + calc((60% - 30%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 60%) / 2) - calc((60% - 30%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 60%) / 2) - calc((60% - 30%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 60%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 60%) / 2) - 10%), transparent calc(100% - calc((100% - 60%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car45:not(.car-tuning){position:relative}.car .car45:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M8.771,0l111.229,0l0,48l-120,0l0,-48l7.68,0l0,0.492l0.838,1.055c1.099,1.89 0.995,4.06 0.697,5.592l-1.055,-1.319l0,-2.46l-0.48,-0l0,1.86l-2.406,-3.007c-0.059,-0.074 -0.146,-0.113 -0.234,-0.113c0,0 0,0.297 0.004,0.525c0,0.179 0.052,0.354 0.149,0.504c0.296,0.531 0.784,1.741 0.784,3.935l-0.457,-0.458l0,-2.046l-0.24,0l0,1.806l-2.286,-2.286c-0.011,-0.01 -0.022,-0.019 -0.034,-0.026c-0.05,-0.036 -0.08,-0.094 -0.08,-0.155l0,-0.059l-0.24,-0l0,0.518c0,0.05 -0.014,0.112 0.02,0.149c0.644,0.665 0.897,2.617 0.7,3.653l-0.328,-0c-0.1,0 -0.199,0.023 -0.288,0.068l-1.209,0.604c-0.058,0.03 -0.095,0.089 -0.095,0.155l0,0.2c0,0.096 0.077,0.173 0.173,0.173l0.307,0l2.4,1.86l0,0.06l-0.84,0c-0.464,0 -0.84,0.161 -0.84,0.36c0,0.199 0.376,0.36 0.84,0.36l15.36,0c0.464,0 0.84,-0.161 0.84,-0.36c0,-0.199 -0.376,-0.36 -0.84,-0.36l-1.68,0l0.177,-0.236c0.747,-0 2.087,-0.052 3.006,-0.374c0.517,-0.182 0.9,-0.455 1.023,-0.83l0.088,-0c0.039,0 0.076,-0.015 0.103,-0.043c0.028,-0.027 0.043,-0.064 0.043,-0.103l0,-0.334l-0.24,0l-0,-0.333c0,-0.039 -0.015,-0.076 -0.043,-0.104c-0.028,-0.028 -0.065,-0.043 -0.104,-0.043l-0.093,0l-0,-0.48l-1.059,0l1.156,-0.65c0.089,-0.05 0.143,-0.143 0.143,-0.244l0,-0.266c-0.033,-0 -0.067,0.008 -0.098,0.026l-0.073,0.041l-0.002,-0.001l-1.92,-0.96c-0.024,-0.012 -0.049,-0.017 -0.074,-0.016l-1.433,-1.146l-0,-1.344l-1.68,-0.007l-0,-0.713l0.72,0l0,0.24l0.24,0l0,-0.598c-0,-0.067 -0.055,-0.122 -0.122,-0.122l-0.358,0c-0.133,-0 -0.24,-0.107 -0.24,-0.24l-0.582,0c-0.037,-0 -0.072,0.015 -0.098,0.04c-0.025,0.026 -0.04,0.061 -0.04,0.098l0,0.434l-2.795,1.531l-0.805,-1.073l0,-0.31l0.48,0l0,-0.72l-0.48,0l0,-0.24l1.2,0l0,-0.24l-0.24,0l0,-0.24l-0.96,0l0,-0.24l-0.259,0c-0.122,0 -0.221,0.099 -0.221,0.221l0,0.739l-0.48,0l0,0.72l0.48,0l0,1.099l-2.779,-3.499l0.51,0c0.06,0 0.109,0.049 0.109,0.109l-0,0.022c-0,0.06 0.049,0.109 0.109,0.109l1.942,-0c0.06,-0 0.109,-0.049 0.109,-0.109l-0,-0.022c-0,-0.029 0.011,-0.057 0.032,-0.077c0.02,-0.021 0.048,-0.032 0.077,-0.032l0.502,0c0.029,-0 0.057,0.011 0.077,0.032c0.021,0.02 0.032,0.048 0.032,0.077l-0,0.022c-0,0.029 0.011,0.057 0.032,0.077c0.02,0.021 0.048,0.032 0.077,0.032l1.462,-0c0.029,-0 0.057,0.011 0.077,0.032c0.021,0.02 0.032,0.048 0.032,0.077l-0,0.502c-0,0.06 0.049,0.109 0.109,0.109l1.222,0c0.06,0 0.109,0.049 0.109,0.109l-0,0.022c-0,0.06 0.049,0.109 0.109,0.109l1.222,0c0.06,0 0.109,0.049 0.109,0.109l-0,0.022c-0,0.029 0.011,0.057 0.032,0.077c0.02,0.021 0.048,0.032 0.077,0.032l0.982,-0c0.029,0 0.057,-0.011 0.077,-0.032c0.021,-0.02 0.032,-0.048 0.032,-0.077l0,-0.022c0,-0.029 -0.011,-0.057 -0.032,-0.077c-0.02,-0.021 -0.048,-0.032 -0.077,-0.032l-0.502,-0c-0.029,0 -0.057,-0.011 -0.077,-0.032c-0.021,-0.02 -0.032,-0.048 -0.032,-0.077l0,-0.022c0,-0.029 -0.011,-0.057 -0.032,-0.077c-0.02,-0.021 -0.048,-0.032 -0.077,-0.032l-1.462,-0c-0.029,0 -0.057,-0.011 -0.077,-0.032c-0.021,-0.02 -0.032,-0.048 -0.032,-0.077l0,-0.022c0,-0.06 -0.049,-0.109 -0.109,-0.109l-1.222,-0c-0.06,-0 -0.109,-0.049 -0.109,-0.109l0,-0.502c0,-0.06 -0.049,-0.109 -0.109,-0.109l-1.222,-0c-0.06,-0 -0.109,-0.049 -0.109,-0.109l0,-0.022c0,-0.06 -0.049,-0.109 -0.109,-0.109l-1.222,0c-0.06,0 -0.109,0.049 -0.109,0.109l0,0.022c0,0.029 -0.011,0.057 -0.032,0.077c-0.02,0.021 -0.048,0.032 -0.077,0.032l-0.742,-0c-0.029,0 -0.057,-0.011 -0.077,-0.032c-0.021,-0.02 -0.032,-0.048 -0.032,-0.077l0,-0.022c0,-0.029 -0.011,-0.057 -0.032,-0.077c-0.02,-0.021 -0.048,-0.032 -0.077,-0.032l-0.502,-0c-0.029,0 -0.057,-0.011 -0.077,-0.032c-0.021,-0.02 -0.032,-0.048 -0.032,-0.077l0,-0.022c0,-0.029 -0.011,-0.057 -0.032,-0.077c-0.02,-0.021 -0.048,-0.032 -0.077,-0.032l-0.502,-0c-0.029,0 -0.057,-0.011 -0.077,-0.032c-0.021,-0.02 -0.032,-0.048 -0.032,-0.077l0,-0.022c0,-0.029 -0.011,-0.057 -0.032,-0.077c-0.02,-0.021 -0.048,-0.032 -0.077,-0.032Zm10.96,6.913l1.142,0.571l-0.598,0.337l-0.544,-0.908Zm0.153,1.128l-1.644,-1.137l-0,-0.424l-0.24,0l-0,-0.24l-0.24,0l-0,-0.48l-1.68,0l-0,-0.24l0.48,0c-0,-0.132 0.161,-0.24 0.36,-0.24c0.199,0 0.36,0.108 0.36,0.24l0.42,0l1.625,1.3l0.689,1.148l-0.13,0.073Zm-7.884,0.839l1.206,0l-1.206,0.65l-0,-0.65Zm0.769,1.2l1.151,-0.614l-0,0.614l-1.151,0Zm-6.781,-2.16l0.009,0.72l-0.477,0l-0,-0.72l0.468,0Zm12.252,-0.651l1.353,0.935l-0.348,0.196l-0.765,0l-0,0.24l0.339,0l-1.397,0.786c-0.065,0.036 -0.102,0.104 -0.102,0.174l-0.28,0l-0,0.24l-0.48,0l-0,-0.72l-0.48,0l-0,-0.48l1.2,0l-0,0.48l0.24,0l-0,-0.24l0.24,0l-0,-0.24l0.24,0c-0,-0.421 0.24,-0.48 0.24,-0.48l-0,-0.891Zm-16.08,1.611l0.859,-0.43c0.022,-0.01 0.047,-0.009 0.068,0.004c0.02,0.012 0.033,0.035 0.033,0.059l0,0.607l-0.24,0l0,-0.24l-0.72,0Zm16.793,0.144c-0.002,0.268 0.007,0.816 0.007,0.816l-0.24,0l-0,0.24l0.483,0c0.131,-0 0.237,-0.106 0.237,-0.237l-0,-0.003l0.48,0c-0,0 0.121,-0.24 0.48,-0.24c0.359,0 0.48,0.24 0.48,0.24l0.161,-0c-0.038,0.072 -0.091,0.137 -0.156,0.197c-0.158,0.145 -0.382,0.259 -0.642,0.35c-0.818,0.287 -1.981,0.35 -2.725,0.357c0.001,-0.01 0.002,-0.021 0.002,-0.032l0,-0.06c0,-0.051 0.041,-0.092 0.092,-0.092l0.491,-0c0.088,-0 0.172,-0.035 0.234,-0.097l0.143,-0.143l-0,-0.24l-0.96,0l-0,-0.28c0.033,0 0.067,-0.008 0.098,-0.026l1.335,-0.75Zm-6.953,-5.094l2.943,3.925c-0.019,0.021 -0.04,0.043 -0.063,0.065l-0,0.694l-2.64,1.408l-0,-0.063c0,-0.031 -0.013,-0.062 -0.035,-0.084c-0.022,-0.022 -0.053,-0.035 -0.084,-0.035l-0.063,0l2.146,-1.157c0.121,0.085 0.288,0.084 0.41,-0.013c0.149,-0.118 0.174,-0.335 0.056,-0.484l-2.67,-3.362l0,-0.894Zm-3.36,5.19l-0.24,0l0,-0.24l-0.24,0l0,-0.48l0.737,0c-0.142,0.453 -0.257,0.72 -0.257,0.72Zm0,0l2.4,-0c0.13,-0.13 0.299,-0.212 0.48,-0.234l-0,0.714l-0.24,0l-0,-0.24l-2.64,0l0,-0.24Zm6.468,-1.546l-2.121,-2.829l2.613,-1.431l0,0.517l-0.48,0.009l0,0.24c0,0 0.24,0.144 0.24,0.48c0,0.336 -0.24,0.48 -0.24,0.48l0,0.48l0.48,0l0,0.24l-0.96,0l-0,0.72c0.33,0.125 0.24,0.48 0.24,0.48c0.212,0.208 0.285,0.413 0.228,0.614Zm-11.101,0.826c0.367,-0.441 0.793,-0.48 0.793,-0.48l0.48,0l0,0.72l-0.72,0l0,-0.24l-0.553,0Zm10.562,0.72l0.45,-0.24l0.581,0l0,0.24l-1.031,0Zm-7.369,-0.24c0,0 0,-0.48 0.48,-0.48l0,0.48l-0.48,0Zm-2.64,1.44l0,0.48l-0.24,0l-1.92,-1.44l0.72,0l1.2,0.96l0.24,0Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car45:not(.car-tuning)::after{content:\"\";position:absolute;bottom:-7px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 80%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 80%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 80%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 80%) / 2) + calc((80% - 35%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 80%) / 2) + calc((80% - 35%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 80%) / 2) - calc((80% - 35%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 80%) / 2) - calc((80% - 35%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 80%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 80%) / 2) - 10%), transparent calc(100% - calc((100% - 80%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car1011:not(.car-tuning){position:relative}.car .car1011:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M120,0l0,48l-120,0l0,-48l120,0Zm-107.28,9.12l0.96,-0l0,-0.24l0.498,-0l0.943,0.533c0.028,1.3 1.092,2.347 2.399,2.347c1.074,0 1.984,-0.707 2.29,-1.68l1.07,0l0,-0.24l-1.008,0c0.016,-0.079 0.028,-0.159 0.036,-0.24l2.652,0l-0,0.114c0,0.07 0.056,0.126 0.126,0.126l0.468,0c0.07,-0 0.126,-0.056 0.126,-0.126l0,-0.468c-0,-0.07 -0.056,-0.126 -0.126,-0.126l-0.468,-0c-0.07,0 -0.126,0.056 -0.126,0.126l0,0.114l-2.64,-0c-0,-0.164 -0.017,-0.325 -0.048,-0.48l1.248,-0l-0,0.114c0,0.07 0.056,0.126 0.126,0.126l0.468,0c0.07,-0 0.126,-0.056 0.126,-0.126l0,-0.468c-0,-0.07 -0.056,-0.126 -0.126,-0.126l-0.468,-0c-0.07,0 -0.126,0.056 -0.126,0.126l0,0.114l-0.72,-0l-0,-0.24l-0.68,-0c-0.371,-0.847 -1.217,-1.44 -2.2,-1.44c-0.905,-0 -1.694,0.502 -2.102,1.242l-2.199,-1.242l0.941,-0l-0,0.24l0.24,-0l-0,-0.24l0.48,-0l-0,-0.72l-0.48,-0l-0,-0.24l-1.68,-0l-0,-0.96c-0,-0 0.72,0.061 0.72,-0.72l0.13,-0c0.029,-0 0.057,-0.012 0.078,-0.032c0.02,-0.021 0.032,-0.049 0.032,-0.078c-0,-0.265 -0,-0.94 -0,-1.213c-0,-0.065 -0.052,-0.117 -0.117,-0.117c-0.15,-0 -0.404,-0 -0.529,-0c-0.058,-0 -0.116,0.01 -0.171,0.029c-0.255,0.089 -0.948,0.414 -1.343,1.411l-2.4,-0c-0,-0 -2.316,0.529 -5.28,1.2c-2.964,0.671 -3.36,1.44 -3.36,1.44l0.72,-0c-0,-0 0.47,-0.24 1.92,-0.24c1.45,-0 1.68,0.48 1.68,0.48l0.72,-0l-0,0.24l-0.24,-0l-0,0.72l-0.081,-0c-0.416,-0.717 -1.191,-1.2 -2.079,-1.2c-1.325,-0 -2.4,1.075 -2.4,2.4c-0,1.325 1.075,2.4 2.4,2.4c1.244,-0 2.268,-0.948 2.388,-2.16l0.492,-0l-0,-0.24l0.48,-0l-0,0.24l3.6,-0l-0,-0.24l2.64,-0l-0,-0.24Zm-6.48,-1.68l0.872,-0c0.201,-0 0.385,-0.114 0.475,-0.293l0.093,-0.187l0.48,-0l-0,0.48c-0,-0 -0.133,0.48 -0.96,0.48l-0.96,-0l-0,-0.48Zm6.24,0.72l0.48,-0l0.96,0.48l-1.44,-0l-0,-0.48Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car1011:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:0px;width:100%;height:15%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 100%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 100%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 100%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc((100% - 100%) / 2) + calc((100% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.15) calc(calc((100% - 100%) / 2) + calc((100% - 40%) / 2) + 10%), rgba(0, 0, 0, 0.15) calc(100% - calc((100% - 100%) / 2) - calc((100% - 40%) / 2) - 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 100%) / 2) - calc((100% - 40%) / 2) - 10%) + 10%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 100%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 100%) / 2) - 10%), transparent calc(100% - calc((100% - 100%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car1018:not(.car-tuning){position:relative}.car .car1018:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M0,0l120,0l0,48l-120,0l0,-48Zm7.68,0l0,0.24l-0.48,0l0,0.257c0,0.058 0.023,0.114 0.064,0.155c0.042,0.041 0.097,0.064 0.156,0.064c0.375,-0.009 1.131,0.043 1.46,0.484l0,0.48c0,0 -2.96,-0.139 -4.673,0.435c-0.076,0.027 -0.127,0.099 -0.127,0.179l0,0.199c0,0.086 0.059,0.162 0.142,0.183c0.518,0.127 2.258,0.62 2.258,1.404c0,0.524 -0.254,0.794 -0.393,0.902c-0.051,0.033 -0.082,0.089 -0.082,0.15c-0.005,0.139 -0.005,0.388 -0.005,0.388l0.109,0l0.744,-0.63c0.069,-0.058 0.157,-0.09 0.247,-0.09l0.673,0c0.093,-0 0.182,0.033 0.251,0.094c0.128,0.177 0.354,0.591 0.374,1.457c0.004,0.071 0.063,0.128 0.134,0.128c0.056,0.001 0.108,0.001 0.108,0.001c0,-0 0.344,-0.48 1.2,-0.48c0.856,0 0.96,0.48 0.96,0.48l-0,0.477c0,0.151 -0.069,0.293 -0.187,0.386c-0.631,0.443 -2.817,1.786 -6.293,1.777l-0,0.24l-0.48,-0l-0,-0.24l-0.72,-0.72l-0.48,0l-0,0.24l0.24,0l-0,0.48l-0.48,-0l-0.24,-0.24l-0.24,-0l-0,-0.24l-0.48,0l-0,0.48l-0.48,-0c-0,-0 0.24,0.72 0.96,1.2l0.96,0c-0,0 0.24,-0.075 0.24,-0.24c-0,0 5.836,0.312 6.96,-0.48l0.24,0l-0,1.44l-0.96,0l-0,0.72c-0,0 0.023,0.24 0.24,0.24l0.96,0c-0,0 0.94,-0.522 1.44,-1.2l0.24,-0l-0,0.24l0.48,-0c-0,-0 0.48,-0.543 0.48,-1.2l1.68,-0c-0,-0 0.76,-0.14 1.2,-0.48l-0,0.72l1.2,-0l0,0.24l0.96,-0l-0,0.24l0.24,-0l0,0.48l0.24,-0l0,-0.24l0.24,-0l0,0.24l0.24,-0l0,-0.48l0.24,-0l0,-0.48l-0.24,-0l0,-0.24l-0.24,-0l0,-0.48l0.48,-0l0,0.24l0.48,-0l0,-0.48l0.24,-0l0,-0.72l-1.2,0l0,0.24l-0.96,0l0,-0.24c0,0 0.679,-0.538 1.2,-0.96l0.48,-0l0,0.24l0.48,-0l0,-0.24l0.24,-0l0,0.24l0.301,0c0.11,-0 0.21,-0.062 0.259,-0.16l0.16,-0.32l0.24,-0l0,0.24l0.147,-0c0.025,-0 0.048,0.01 0.066,0.027c0.017,0.018 0.027,0.041 0.027,0.066l0,0.054c0,0.025 -0.01,0.048 -0.027,0.066c-0.018,0.017 -0.041,0.027 -0.066,0.027l-0.147,-0l0,0.48l0.267,0c0.138,0 0.272,-0.047 0.38,-0.133l0.866,-0.693c0.106,-0.085 0.167,-0.213 0.167,-0.348l0,-0.569c0,-0.047 -0.019,-0.092 -0.052,-0.125c-0.033,-0.033 -0.078,-0.052 -0.125,-0.052l-0.873,-0l-0.51,-0.583c-0.076,-0.087 -0.186,-0.137 -0.302,-0.137l-0.298,-0l0,0.24l-0.338,-0l-0.622,-0.72l-0.96,-0l-2.4,1.2l-0.96,-0c0,-0 -0.516,-0.5 -0.72,-0.96c-0.204,-0.46 -0.574,-1.071 -0.48,-2.88l0.48,-0l0,-0.183c0,-0.187 -0.092,-0.361 -0.247,-0.466c-0.499,-0.33 -1.679,-1.07 -2.873,-1.511c0,-0 -1.201,-0.24 -4.08,-0.24Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car1018:not(.car-tuning)::after{content:\"\";position:absolute;bottom:0px;left:-5px;width:100%;height:30%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 90%) / 2), rgba(0, 0, 0, 0.2) calc(calc((100% - 90%) / 2) + 10%), rgba(0, 0, 0, 0.3) calc(calc(calc((100% - 90%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.3) calc(calc(100% - calc((100% - 90%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.2) calc(100% - calc((100% - 90%) / 2) - 10%), transparent calc(100% - calc((100% - 90%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car1023:not(.car-tuning){position:relative}.car .car1023:not(.car-tuning)::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:url(\"data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 120 48' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath fill='hsl(0, 0%, 15%)' stroke='hsl(0, 0%, 15%)4D' stroke-width='0.4' d='M-0,7.325l0,-7.325l120,0l0,48l-120,0l-0,-39.6l0.236,0c-0.001,0.038 -0.002,0.076 -0.002,0.115c-0,1.526 1.239,2.765 2.765,2.765c0.837,0 1.587,-0.372 2.094,-0.96l1.147,0l-0,0.24l0.96,-0l-0,-0.24l6.48,0l0,0.24l0.48,-0l0,0.24l1.92,0c0,0.064 0.025,0.125 0.07,0.17c0.045,0.045 0.106,0.07 0.17,0.07l4.654,-0c0.288,0.153 0.617,0.24 0.965,0.24c1.138,0 2.061,-0.923 2.061,-2.061c0,-1.137 -0.923,-2.06 -2.061,-2.06c-0.634,-0 -1.201,0.287 -1.579,0.738l-4.718,-2.696c-0.185,-0.105 -0.394,-0.161 -0.607,-0.161l-1.115,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-1.44,-0c-0,-0.133 -0.107,-0.24 -0.24,-0.24l-1.44,-0c-0,-0.127 -0.051,-0.249 -0.141,-0.339c-0.09,-0.09 -0.212,-0.141 -0.339,-0.141l-2.044,0c-0.03,-0 -0.06,-0.012 -0.082,-0.034c-0.022,-0.022 -0.034,-0.052 -0.034,-0.082c-0.01,-0.072 -0.072,-0.125 -0.144,-0.125c-0.151,0.001 -0.382,0.001 -0.501,0.001c-0.02,0 -0.039,-0.008 -0.053,-0.022c-0.014,-0.014 -0.022,-0.033 -0.022,-0.053l-0,-0.001c-0,-0.223 -0.181,-0.404 -0.404,-0.404l-1.276,-0l-0,0.72l-0.24,-0l-0,-0.72l-0.593,-0c-0.082,0 -0.163,0.027 -0.229,0.076l-0.858,0.644l0,0.24l0.24,-0l0,0.24l-0.24,-0l0,0.24l-0.24,-0l0,-0.48l-1.2,-0l0,0.24l0.72,-0l0,0.24l-0.48,-0l0,0.24l-0.96,-0l0,0.24l0.48,-0l0,0.24l0.24,-0l0,0.24l-0.24,-0l-1.2,0.96l0,0.229l-0.007,0.011l-0.348,-0c-0.097,-0 -0.189,0.038 -0.258,0.107c-0.069,0.069 -0.107,0.161 -0.107,0.258Z'/%3E%3C/svg%3E\");background-repeat:no-repeat !important;background-size:500px 200px !important;pointer-events:none;z-index:1}.car .car1023:not(.car-tuning)::after{content:\"\";position:absolute;bottom:1.5px;left:0px;width:100%;height:30%;background:linear-gradient(to right, transparent 0%, transparent calc((100% - 95%) / 2), rgba(0, 0, 0, 0.3) calc(calc((100% - 95%) / 2) + 10%), rgba(0, 0, 0, 0.45) calc(calc(calc((100% - 95%) / 2) + 10%) + 2%), rgba(0, 0, 0, 0.45) calc(calc(100% - calc((100% - 95%) / 2) - 10%) - 2%), rgba(0, 0, 0, 0.3) calc(100% - calc((100% - 95%) / 2) - 10%), transparent calc(100% - calc((100% - 95%) / 2)), transparent 100%) no-repeat 0 0/100% 100%;mask:linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);z-index:1}.car .car-base_0::before{background-position:-100px 0 !important;background-repeat:no-repeat !important;background-size:auto !important}.car .car-base_1::before{background-position:-200px 0 !important;background-repeat:no-repeat !important;background-size:auto !important}.car .car-base_2::before{background-position:-300px 0 !important;background-repeat:no-repeat !important;background-size:auto !important}.car .car-base_3::before{background-position:-400px 0 !important;background-repeat:no-repeat !important;background-size:auto !important}.car .car-base_4::before{background-position:-500px 0 !important;background-repeat:no-repeat !important;background-size:auto !important}.car .car-base_5::before{background-position:-600px 0 !important;background-repeat:no-repeat !important;background-size:auto !important}@media only screen and (max-width: 1300px){.minwidth_container{width:100% !important}}.minwidth{min-width:unset !important}#head .minwidth_holyhack{display:flex;justify-content:center !important}#head .minwidth_holyhack .minwidth_container{width:1300px !important}#content{padding:0 !important}#content .minwidth_holyhack{display:flex !important;justify-content:center !important;width:100% !important}#content .minwidth_container{width:1300px}#content .minwidth_holyhack{position:absolute !important;top:100px !important}@media(max-width: 1000px){#content .minwidth_holyhack{top:150px !important}}#BBtools_color option[value=\"061956\"]{color:hsl(200,80%,70%) !important}#BBtools_color option[value=\"2E32CE\"]{color:#99f !important}#BBtools_color option[value=\"5E0B9E\"]{color:hsl(275,70%,70%) !important}#BBtools_color option[value=BC0143]{color:rgb(255,25.5,102) !important}#BBtools_color option[value=BA5800]{color:#f93 !important}#BBtools_color option[value=\"8C8100\"]{color:#cb0 !important}#BBtools_color option[value=\"187818\"]{color:hsl(120,70%,50%) !important}#BBtools_color option[value=\"4F9A97\"]{color:hsl(180,70%,70%) !important}#BBtools_color option[value=\"8D8D8D\"]{color:#ccc !important}#BBtools_color option[value=\"3D4856\"]{color:hsl(50,100%,45%) !important}#BBtools_color option[value=\"698725\"]{color:hsl(60,40%,60%) !important}#BBtools_color option[value=\"4692AA\"]{color:#0cb !important}#BBtools_color option[value=D43E68]{color:hsl(315,40%,60%) !important}#BBtools_color option[value=B55900]{color:hsl(20,45%,60%) !important}#BBtools_color option[value=\"833F3A\"]{color:hsl(280,65%,65%) !important}#BBtools_color option[value=\"524CA7\"]{color:hsl(215,60%,60%) !important}#table_smiles{background:hsl(0,0%,5%) !important;padding:30px 10px 10px !important;border-radius:5px !important;border:1px solid #689 !important;width:360px !important}#table_smiles .move,#table_smiles .move ins,#table_smiles .close,#table_smiles .close ins{width:24px !important;height:24px !important;opacity:1 !important;background:rgba(0,0,0,0) !important}#table_smiles .move{top:0 !important;left:0 !important}#table_smiles .move ins{background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"5 9 2 12 5 15\"></polyline><polyline points=\"9 5 12 2 15 5\"></polyline><polyline points=\"15 19 12 22 9 19\"></polyline><polyline points=\"19 9 22 12 19 15\"></polyline><line x1=\"2\" y1=\"12\" x2=\"22\" y2=\"12\"></line><line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"22\"></line></svg>') no-repeat center/16px !important}#table_smiles .close{top:0 !important;right:0 !important}#table_smiles .close ins{background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\"></line><line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\"></line></svg>') no-repeat center/16px !important}#table_smiles table tr .c{background:rgba(0,0,0,0) !important;display:inline-flex !important;flex-wrap:wrap !important;gap:5px !important}#daily-remaining-races{position:absolute !important;bottom:0 !important;transform:translateY(100%) !important;margin:0 !important;padding:0 !important;width:45px !important;height:45px !important;border-radius:0 0 3px 3px !important;background-color:hsl(30,65%,50%) !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important;font:bold 1.5em \"Montserrat\",sans-serif !important;color:gold !important}@keyframes fadeIn{0%,80%{opacity:0}100%{opacity:1}}@keyframes bounce{from{transform:translateY(3px)}to{transform:translateY(-3px)}}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}@keyframes vigorousShake{0%,100%{transform:translateX(0px) translateY(0px) rotate(0deg)}5%{transform:translateX(-3px) translateY(-1px) rotate(-1deg)}10%{transform:translateX(3px) translateY(1px) rotate(1deg)}15%{transform:translateX(-4px) translateY(-2px) rotate(-1.5deg)}20%{transform:translateX(4px) translateY(2px) rotate(1.5deg)}25%{transform:translateX(-3px) translateY(-1px) rotate(-1deg)}30%{transform:translateX(3px) translateY(1px) rotate(1deg)}35%{transform:translateX(-2px) translateY(-2px) rotate(-0.5deg)}40%{transform:translateX(2px) translateY(2px) rotate(0.5deg)}45%{transform:translateX(-3px) translateY(-1px) rotate(-1deg)}50%{transform:translateX(3px) translateY(1px) rotate(1deg)}55%{transform:translateX(-2px) translateY(-1px) rotate(-0.5deg)}60%{transform:translateX(2px) translateY(1px) rotate(0.5deg)}65%{transform:translateX(-1px) translateY(-1px) rotate(-0.3deg)}70%{transform:translateX(1px) translateY(1px) rotate(0.3deg)}75%{transform:translateX(-2px) translateY(-1px) rotate(-0.5deg)}80%{transform:translateX(2px) translateY(1px) rotate(0.5deg)}85%{transform:translateX(-1px) translateY(0px) rotate(-0.2deg)}90%{transform:translateX(1px) translateY(0px) rotate(0.2deg)}95%{transform:translateX(-1px) translateY(0px) rotate(0deg)}}#complexity-panel{width:300px;border-radius:0 5px 5px 0 !important;background:hsl(0,0%,5%) !important;transition:opacity .15s ease-in-out !important;position:absolute;top:120px}#complexity-panel:hover{opacity:1}@media(max-width: 1350px){#complexity-panel{width:100px;height:50px}#complexity-panel #complexity-pre-calc,#complexity-panel #input-language,#complexity-panel #spectrumCanvas{display:none !important}#complexity-panel #complexity-calc-inner{font-size:0 !important}#complexity-panel #complexity-calc-inner span[style*=\"color:#333\"]{font-size:22px !important}#complexity-panel #complexity-calc-inner span[style*=\"color:#666\"]{font-size:20px !important}}@media(max-width: 1350px)and (max-width: 970px){#complexity-panel{z-index:100 !important;margin:0 !important;padding:0 !important;border-radius:0 5px 5px 0 !important;color:hsl(0,0%,70%) !important;position:absolute !important;top:120px !important;width:50px;height:50px;overflow:hidden !important;min-width:unset !important;max-width:300px !important;transition:width .15s ease-in-out,height .15s ease-in-out !important;background:hsl(0,0%,5%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(200, 40%, 60%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"19\" y1=\"5\" x2=\"5\" y2=\"19\"></line><circle cx=\"6.5\" cy=\"6.5\" r=\"2.5\"></circle><circle cx=\"17.5\" cy=\"17.5\" r=\"2.5\"></circle></svg>') no-repeat center/24px !important}#complexity-panel *{opacity:0 !important;transition:opacity .3s ease-in-out !important}#complexity-panel:hover{width:300px !important;height:auto !important;background:hsl(0,0%,5%) !important;border:2px solid #689 !important;border-left-width:0 !important}#complexity-panel:hover *{opacity:1 !important;transition:opacity .3s ease-in-out .05s !important}#complexity-panel #complexity-pre-calc,#complexity-panel #input-language,#complexity-panel #spectrumCanvas{display:block !important}#complexity-panel #complexity-calc-inner{font-size:unset !important}}#complexity-panel #statistics{background:rgba(0,0,0,0) !important;width:100% !important;height:100% !important;margin:0 !important;padding:0 !important;display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important}#complexity-panel #statistics #complexity-calc #complexity-calc-inner span[style*=\"color:#333\"]{color:hsl(200,40%,60%) !important}#complexity-panel #statistics #complexity-calc #complexity-calc-inner span[style*=\"color:#666\"]{color:#689 !important}#complexity-panel #statistics #complexity-calc #complexity-calc-inner #spectrumCanvas{margin:10px 0 !important;border-radius:5px !important;overflow:hidden !important}#complexity-panel #statistics #complexity-calc #complexity-calc-inner #spectrumCanvas canvas{height:25px !important;width:280px !important}#chat-container #chat-content .chat .messages .messages-border table td:has(img[src*=exclamation]){width:35px !important;height:35px !important;background:hsl(210,5%,40%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"4.93\" y1=\"4.93\" x2=\"19.07\" y2=\"19.07\"></line></svg>') no-repeat center/20px !important;border-radius:5px !important;margin:0 5px 0 0 !important;transition:background .1s ease-out !important}#chat-container #chat-content .chat .messages .messages-border table td:has(img[src*=exclamation]):hover{background:#689 url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"4.93\" y1=\"4.93\" x2=\"19.07\" y2=\"19.07\"></line></svg>') no-repeat center/20px !important}#chat-container #chat-content .chat .messages .messages-border table td:has(img[src*=exclamation]) img{opacity:0 !important;width:35px !important;height:35px !important}#recent-games-container{background:hsl(0,0%,15%) !important}#recent-games-container #recent-games{display:flex !important;flex-direction:row !important;justify-content:start !important;align-items:start !important;flex-wrap:wrap !important;gap:5px !important}#recent-games-container #recent-games .recent-game{border:1px solid hsl(210,5%,40%) !important;border-radius:5px !important;background:hsl(0,0%,10%) !important;margin:0 !important;transition:background .1s ease-in-out,border-color .1s ease-in-out !important}#recent-games-container #recent-games .recent-game .recent-game-handle{background:rgba(0,0,0,0) url('data:image/svg+xml,<svg width=\"24\" height=\"24\" viewBox=\"0 0 6 6\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\" xmlns:serif=\"http://www.serif.com/\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;\"><path fill=\"hsl(0, 0%, 70%)\" d=\"M0.96,0.24c0.397,0 0.72,0.323 0.72,0.72c0,0.397 -0.323,0.72 -0.72,0.72c-0.397,0 -0.72,-0.323 -0.72,-0.72c0,-0.397 0.323,-0.72 0.72,-0.72Zm1.92,0c0.397,0 0.72,0.323 0.72,0.72c0,0.397 -0.323,0.72 -0.72,0.72c-0.397,0 -0.72,-0.323 -0.72,-0.72c0,-0.397 0.323,-0.72 0.72,-0.72Zm1.92,0c0.397,0 0.72,0.323 0.72,0.72c0,0.397 -0.323,0.72 -0.72,0.72c-0.397,0 -0.72,-0.323 -0.72,-0.72c0,-0.397 0.323,-0.72 0.72,-0.72Zm-1.92,1.92c0.397,0 0.72,0.323 0.72,0.72c0,0.397 -0.323,0.72 -0.72,0.72c-0.397,0 -0.72,-0.323 -0.72,-0.72c0,-0.397 0.323,-0.72 0.72,-0.72Zm-1.92,0c0.397,0 0.72,0.323 0.72,0.72c0,0.397 -0.323,0.72 -0.72,0.72c-0.397,0 -0.72,-0.323 -0.72,-0.72c0,-0.397 0.323,-0.72 0.72,-0.72Zm0,1.92c0.397,0 0.72,0.323 0.72,0.72c0,0.397 -0.323,0.72 -0.72,0.72c-0.397,0 -0.72,-0.323 -0.72,-0.72c0,-0.397 0.323,-0.72 0.72,-0.72Z\"/></svg>') no-repeat center/10px !important}#recent-games-container #recent-games .recent-game .recent-game-handle img{display:none !important}#recent-games-container #recent-games .recent-game .recent-game-buttons{overflow:hidden !important;border-radius:3px 3px 0 0 !important;transform:translateY(-100%) scale(0) !important;transform-origin:bottom center !important;right:5px !important;width:fit-content !important;height:24px !important;opacity:0 !important;transition:opacity .15s ease-in-out .5s,transform .15s ease-in-out .5s !important;display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:center !important}#recent-games-container #recent-games .recent-game .recent-game-buttons .recent-game-pin,#recent-games-container #recent-games .recent-game .recent-game-buttons .recent-game-delete{float:unset !important;width:24px !important;height:24px !important;background-color:hsl(210,5%,40%) !important;background-repeat:no-repeat !important;background-size:16px !important;background-position:center !important;top:unset !important;left:unset !important;bottom:0 !important;margin:0 !important;padding:0 !important;transition:background-color .1s ease-in-out !important}#recent-games-container #recent-games .recent-game .recent-game-buttons .recent-game-pin:hover,#recent-games-container #recent-games .recent-game .recent-game-buttons .recent-game-delete:hover{background-color:#689 !important}#recent-games-container #recent-games .recent-game .recent-game-buttons .recent-game-pin img,#recent-games-container #recent-games .recent-game .recent-game-buttons .recent-game-delete img{opacity:0 !important;width:24px !important;max-width:24px !important;height:24px !important;max-height:24px !important;clip:unset !important}#recent-games-container #recent-games .recent-game .recent-game-buttons .recent-game-pin{right:24px !important;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"3\" y=\"11\" width=\"18\" height=\"11\" rx=\"2\" ry=\"2\"></rect><path d=\"M7 11V7a5 5 0 0 1 10 0v4\"></path></svg>') !important}#recent-games-container #recent-games .recent-game .recent-game-buttons .recent-game-delete{right:0 !important;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"3 6 5 6 21 6\"></polyline><path d=\"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2\"></path></svg>') !important}#recent-games-container #recent-games .recent-game a .recent-game-name{font:600 14px \"Montserrat\",sans-serif !important}#recent-games-container #recent-games .recent-game a .recent-game-description{color:hsl(0,0%,70%) !important;font:400 12px \"Montserrat\",sans-serif !important}#recent-games-container #recent-games .recent-game:hover{border-color:hsl(200,40%,60%) !important;background:hsl(0,0%,5%) !important}#recent-games-container #recent-games .recent-game:hover .recent-game-buttons{opacity:1 !important;transform:translateY(-100%) scale(1) !important}#recent-games-options{display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:center !important;font-size:0 !important;overflow:hidden !important;border-radius:5px !important}#recent-games-options span{display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:center !important;width:35px !important;height:35px !important;background-color:hsl(210,5%,40%) !important;margin:0 !important;color:hsl(0,0%,5%) !important}#recent-games-options span:first-child,#recent-games-options span:last-child{background-repeat:no-repeat !important;background-position:center !important;background-size:20px !important;transition:background-color .15s ease-in-out !important}#recent-games-options span:first-child:hover,#recent-games-options span:last-child:hover{background-color:#689 !important}#recent-games-options #recent-games-count-dec{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 10%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"15 18 9 12 15 6\"></polyline></svg>') !important}#recent-games-options #recent-games-count{font:600 16px \"Montserrat\",sans-serif !important}#recent-games-options #recent-games-count-inc{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 10%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"9 18 15 12 9 6\"></polyline></svg>') !important}#head #recent-games-container{position:fixed !important;left:0 !important;right:0 !important;bottom:0 !important;z-index:1000 !important;width:100vw !important}#chat-container #chat-content .chat .messages .messages-border table td:has(input[value*=BBCode]){width:35px !important;height:35px !important;background:hsl(210,5%,40%) url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"></path><rect x=\"8\" y=\"2\" width=\"8\" height=\"4\" rx=\"1\" ry=\"1\"></rect></svg>') no-repeat center/20px !important;border-radius:5px !important;margin:0 5px 0 0 !important;transition:background .1s ease-out !important}#chat-container #chat-content .chat .messages .messages-border table td:has(input[value*=BBCode]):hover{background:#689 url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"hsl(0, 0%, 5%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"></path><rect x=\"8\" y=\"2\" width=\"8\" height=\"4\" rx=\"1\" ry=\"1\"></rect></svg>') no-repeat center/20px !important}#chat-container #chat-content .chat .messages .messages-border table td:has(input[value*=BBCode]) input[value*=BBCode]{opacity:0 !important;width:35px !important;height:35px !important;padding:0 !important;border:none !important;outline:none !important}#popalert #popalert-content #chat2BBcode_textarea{margin-bottom:10px !important}\n";

  // ===== INITIALIZATION =====

  function initializeApp() {
    // Call the functions directly
    loadDarkTheme(cssContent);
    applyAvatarBiggener();
    addViewportMeta();
    initializeUsernameColorCalibrator(); // Uses mutation observer with helper functions
    initializeSpanColorCalibrator(); // One-time calibration on DOMContentLoaded with helper functions
    initializeSpeedometerArrow(); // Speedometer arrow for specific URL
  }

  // Execute immediately if possible
  if (document.head) {
    initializeApp();
  } else {
    // Wait for head to be available
    const observer = new MutationObserver((mutations, obs) => {
      if (document.head) {
        initializeApp();
        obs.disconnect();
      }
    });
    observer.observe(document.documentElement, {
      childList: true,
      subtree: true
    });
  }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址