您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Load dark theme CSS
// ==UserScript== // @name KG_Dark_Theme // @namespace klavogonki // @version 1.0.30 // @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'; // Include themeLoader.js content directly 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); } // Include avatarBiggener.js content directly function replaceBigAvatars() { const selectors = [ '.info[style*="avatars/"]', '.user-content dd[style*="avatars/"]', '#live .user-link[style*="avatars/"]', '#top td[style*="avatars/"]', '#top15 td[style*="avatars/"]', '#records td[style*="avatars/"]', '#toplist td[style*="avatars/"]', '.chat .userlist a.name[style*="avatars/"]' ]; document.querySelectorAll(selectors.join(", ")).forEach(element => { const style = element.getAttribute('style'); const newStyle = style.replace(/avatars\/(\d+)\.png/g, 'avatars/$1_big.png'); element.setAttribute('style', newStyle); 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 }); } // Add viewport meta tag - only for mobile devices 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 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}pre{background-color:hsl(0,0%,10%) !important;border-color:#689 !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 #reformal_tab,#reformal_tab{top:25% !important;bottom:0 !important;box-sizing:content-box !important;margin-top:0 !important;padding:0 !important;background-color:rgba(0,0,0,0) !important;background:hsl(0,0%,10%) url(\"https://i.imgur.com/YWgo8Ox.png\") no-repeat !important;border:none !important;border-left:2px solid #689 !important;height:46px !important;width:46px !important;transform:translateY(-50%) !important;transition:all .2s !important}body #reformal_tab:hover,#reformal_tab:hover{top:25% !important;box-sizing:content-box !important;border-radius:50% !important;transform:rotate(180deg) translateY(50%) !important;background-color:rgba(0,0,0,0) !important;border:2px solid hsl(30,65%,50%) !important;background:hsl(0,0%,5%) url(\"https://i.imgur.com/QQTyaUz.png\") no-repeat !important;transition:all .2s !important}body #reformal_tab img,#reformal_tab img{display:none !important}img[src*=\"/img/yellow_cros\"]{box-sizing:border-box;padding-left:17px;height:17px;width:17px;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, 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;position:relative;top:0 !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{display:none !important}#head #logo{z-index:120 !important;width:150px !important;height:45px !important;padding:0 !important;float:none !important;position:fixed !important;background-color:hsl(0,0%,15%) !important;border-radius:0 0 6px 6px !important;box-shadow:0 1px 6px rgba(0,0,0,.7) !important}#head #logo a{display:block !important;width:150px !important;height:45px !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;\"><g id=\"Logo-Klavogonki\"><g id=\"logo-wrapper\"><path d=\"M200,0.5L0,0.5L0,35.5L200,35.5L200,0.5Z\" style=\"fill:none;\"/></g><g id=\"_1_K\" serif:id=\"1_K\"><g id=\"_10\" serif:id=\"10\"><path d=\"M15.51,27.32L19.24,27.32C19.61,27.32 19.91,27.63 19.91,28L19.91,31.73C19.91,32.1 19.61,32.41 19.24,32.41L15.51,32.41C15.13,32.41 14.83,32.1 14.83,31.73L14.83,28C14.83,27.63 15.13,27.32 15.51,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_9\" serif:id=\"9\"><path d=\"M12.54,21.39L16.27,21.39C16.64,21.39 16.95,21.69 16.95,22.07L16.95,25.8C16.95,26.17 16.64,26.47 16.27,26.47L12.54,26.47C12.17,26.47 11.86,26.17 11.86,25.8L11.86,22.07C11.86,21.69 12.17,21.39 12.54,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_8\" serif:id=\"8\"><path d=\"M15.51,3.59L19.24,3.59C19.61,3.59 19.91,3.9 19.91,4.27L19.91,8C19.91,8.37 19.61,8.68 19.24,8.68L15.51,8.68C15.13,8.68 14.83,8.37 14.83,8L14.83,4.27C14.83,3.9 15.13,3.59 15.51,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_7\" serif:id=\"7\"><path d=\"M12.54,9.53L16.27,9.53C16.64,9.53 16.95,9.83 16.95,10.2L16.95,13.93C16.95,14.31 16.64,14.61 16.27,14.61L12.54,14.61C12.17,14.61 11.86,14.31 11.86,13.93L11.86,10.2C11.86,9.83 12.17,9.53 12.54,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_6\" serif:id=\"6\"><path d=\"M9.58,15.46L13.31,15.46C13.68,15.46 13.98,15.76 13.98,16.14L13.98,19.87C13.98,20.24 13.68,20.54 13.31,20.54L9.58,20.54C9.2,20.54 8.9,20.24 8.9,19.87L8.9,16.14C8.9,15.76 9.2,15.46 9.58,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_5\" serif:id=\"5\"><path d=\"M3.64,27.32L7.37,27.32C7.75,27.32 8.05,27.63 8.05,28L8.05,31.73C8.05,32.1 7.75,32.41 7.37,32.41L3.64,32.41C3.27,32.41 2.97,32.1 2.97,31.73L2.97,28C2.97,27.63 3.27,27.32 3.64,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_4\" serif:id=\"4\"><path d=\"M3.64,21.39L7.37,21.39C7.75,21.39 8.05,21.69 8.05,22.07L8.05,25.8C8.05,26.17 7.75,26.47 7.37,26.47L3.64,26.47C3.27,26.47 2.97,26.17 2.97,25.8L2.97,22.07C2.97,21.69 3.27,21.39 3.64,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_3\" serif:id=\"3\"><path d=\"M3.64,15.46L7.37,15.46C7.75,15.46 8.05,15.76 8.05,16.14L8.05,19.87C8.05,20.24 7.75,20.54 7.37,20.54L3.64,20.54C3.27,20.54 2.97,20.24 2.97,19.87L2.97,16.14C2.97,15.76 3.27,15.46 3.64,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_2\" serif:id=\"2\"><path d=\"M3.64,9.53L7.37,9.53C7.75,9.53 8.05,9.83 8.05,10.2L8.05,13.93C8.05,14.31 7.75,14.61 7.37,14.61L3.64,14.61C3.27,14.61 2.97,14.31 2.97,13.93L2.97,10.2C2.97,9.83 3.27,9.53 3.64,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_1\" serif:id=\"1\"><path d=\"M3.64,3.59L7.37,3.59C7.75,3.59 8.05,3.9 8.05,4.27L8.05,8C8.05,8.37 7.75,8.68 7.37,8.68L3.64,8.68C3.27,8.68 2.97,8.37 2.97,8L2.97,4.27C2.97,3.9 3.27,3.59 3.64,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g></g><g id=\"_2_L\" serif:id=\"2_L\"><g id=\"_91\" serif:id=\"9\"><path d=\"M35,27.32L38.73,27.32C39.1,27.32 39.41,27.63 39.41,28L39.41,31.73C39.41,32.1 39.1,32.41 38.73,32.41L35,32.41C34.63,32.41 34.32,32.1 34.32,31.73L34.32,28C34.32,27.63 34.63,27.32 35,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_81\" serif:id=\"8\"><path d=\"M35,21.39L38.73,21.39C39.1,21.39 39.41,21.69 39.41,22.07L39.41,25.8C39.41,26.17 39.1,26.47 38.73,26.47L35,26.47C34.63,26.47 34.32,26.17 34.32,25.8L34.32,22.07C34.32,21.69 34.63,21.39 35,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_71\" serif:id=\"7\"><path d=\"M35,15.46L38.73,15.46C39.1,15.46 39.41,15.76 39.41,16.14L39.41,19.87C39.41,20.24 39.1,20.54 38.73,20.54L35,20.54C34.63,20.54 34.32,20.24 34.32,19.87L34.32,16.14C34.32,15.76 34.63,15.46 35,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_61\" serif:id=\"6\"><path d=\"M35,9.53L38.73,9.53C39.1,9.53 39.41,9.83 39.41,10.2L39.41,13.93C39.41,14.31 39.1,14.61 38.73,14.61L35,14.61C34.63,14.61 34.32,14.31 34.32,13.93L34.32,10.2C34.32,9.83 34.63,9.53 35,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_51\" serif:id=\"5\"><path d=\"M29.07,3.59L32.8,3.59C33.17,3.59 33.47,3.9 33.47,4.27L33.47,8C33.47,8.37 33.17,8.68 32.8,8.68L29.07,8.68C28.69,8.68 28.39,8.37 28.39,8L28.39,4.27C28.39,3.9 28.69,3.59 29.07,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_41\" serif:id=\"4\"><path d=\"M23.13,9.53L26.86,9.53C27.24,9.53 27.54,9.83 27.54,10.2L27.54,13.93C27.54,14.31 27.24,14.61 26.86,14.61L23.13,14.61C22.76,14.61 22.46,14.31 22.46,13.93L22.46,10.2C22.46,9.83 22.76,9.53 23.13,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_31\" serif:id=\"3\"><path d=\"M23.13,15.46L26.86,15.46C27.24,15.46 27.54,15.76 27.54,16.14L27.54,19.87C27.54,20.24 27.24,20.54 26.86,20.54L23.13,20.54C22.76,20.54 22.46,20.24 22.46,19.87L22.46,16.14C22.46,15.76 22.76,15.46 23.13,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_21\" serif:id=\"2\"><path d=\"M23.13,21.39L26.86,21.39C27.24,21.39 27.54,21.69 27.54,22.07L27.54,25.8C27.54,26.17 27.24,26.47 26.86,26.47L23.13,26.47C22.76,26.47 22.46,26.17 22.46,25.8L22.46,22.07C22.46,21.69 22.76,21.39 23.13,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_11\" serif:id=\"1\"><path d=\"M23.13,27.32L26.86,27.32C27.24,27.32 27.54,27.63 27.54,28L27.54,31.73C27.54,32.1 27.24,32.41 26.86,32.41L23.13,32.41C22.76,32.41 22.46,32.1 22.46,31.73L22.46,28C22.46,27.63 22.76,27.32 23.13,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g></g><g id=\"_3_A\" serif:id=\"3_A\"><g id=\"_101\" serif:id=\"10\"><path d=\"M48.56,15.46L52.29,15.46C52.66,15.46 52.97,15.76 52.97,16.14L52.97,19.87C52.97,20.24 52.66,20.54 52.29,20.54L48.56,20.54C48.19,20.54 47.88,20.24 47.88,19.87L47.88,16.14C47.88,15.76 48.19,15.46 48.56,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_92\" serif:id=\"9\"><path d=\"M54.49,27.32L58.22,27.32C58.59,27.32 58.9,27.63 58.9,28L58.9,31.73C58.9,32.1 58.59,32.41 58.22,32.41L54.49,32.41C54.12,32.41 53.81,32.1 53.81,31.73L53.81,28C53.81,27.63 54.12,27.32 54.49,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_82\" serif:id=\"8\"><path d=\"M54.49,21.39L58.22,21.39C58.59,21.39 58.9,21.69 58.9,22.07L58.9,25.8C58.9,26.17 58.59,26.47 58.22,26.47L54.49,26.47C54.12,26.47 53.81,26.17 53.81,25.8L53.81,22.07C53.81,21.69 54.12,21.39 54.49,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_72\" serif:id=\"7\"><path d=\"M54.49,15.46L58.22,15.46C58.59,15.46 58.9,15.76 58.9,16.14L58.9,19.87C58.9,20.24 58.59,20.54 58.22,20.54L54.49,20.54C54.12,20.54 53.81,20.24 53.81,19.87L53.81,16.14C53.81,15.76 54.12,15.46 54.49,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_62\" serif:id=\"6\"><path d=\"M54.49,9.53L58.22,9.53C58.59,9.53 58.9,9.83 58.9,10.2L58.9,13.93C58.9,14.31 58.59,14.61 58.22,14.61L54.49,14.61C54.12,14.61 53.81,14.31 53.81,13.93L53.81,10.2C53.81,9.83 54.12,9.53 54.49,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_52\" serif:id=\"5\"><path d=\"M48.56,3.59L52.29,3.59C52.66,3.59 52.97,3.9 52.97,4.27L52.97,8C52.97,8.37 52.66,8.68 52.29,8.68L48.56,8.68C48.19,8.68 47.88,8.37 47.88,8L47.88,4.27C47.88,3.9 48.19,3.59 48.56,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_42\" serif:id=\"4\"><path d=\"M42.63,9.53L46.36,9.53C46.73,9.53 47.03,9.83 47.03,10.2L47.03,13.93C47.03,14.31 46.73,14.61 46.36,14.61L42.63,14.61C42.25,14.61 41.95,14.31 41.95,13.93L41.95,10.2C41.95,9.83 42.25,9.53 42.63,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_32\" serif:id=\"3\"><path d=\"M42.63,15.46L46.36,15.46C46.73,15.46 47.03,15.76 47.03,16.14L47.03,19.87C47.03,20.24 46.73,20.54 46.36,20.54L42.63,20.54C42.25,20.54 41.95,20.24 41.95,19.87L41.95,16.14C41.95,15.76 42.25,15.46 42.63,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_22\" serif:id=\"2\"><path d=\"M42.63,21.39L46.36,21.39C46.73,21.39 47.03,21.69 47.03,22.07L47.03,25.8C47.03,26.17 46.73,26.47 46.36,26.47L42.63,26.47C42.25,26.47 41.95,26.17 41.95,25.8L41.95,22.07C41.95,21.69 42.25,21.39 42.63,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_12\" serif:id=\"1\"><path d=\"M42.63,27.32L46.36,27.32C46.73,27.32 47.03,27.63 47.03,28L47.03,31.73C47.03,32.1 46.73,32.41 46.36,32.41L42.63,32.41C42.25,32.41 41.95,32.1 41.95,31.73L41.95,28C41.95,27.63 42.25,27.32 42.63,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g></g><g id=\"_4_B\" serif:id=\"4_B\"><g id=\"_111\" serif:id=\"11\"><path d=\"M73.98,21.39L77.71,21.39C78.08,21.39 78.39,21.69 78.39,22.07L78.39,25.8C78.39,26.17 78.08,26.47 77.71,26.47L73.98,26.47C73.61,26.47 73.3,26.17 73.3,25.8L73.3,22.07C73.3,21.69 73.61,21.39 73.98,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_102\" serif:id=\"10\"><path d=\"M73.98,15.46L77.71,15.46C78.08,15.46 78.39,15.76 78.39,16.14L78.39,19.87C78.39,20.24 78.08,20.54 77.71,20.54L73.98,20.54C73.61,20.54 73.3,20.24 73.3,19.87L73.3,16.14C73.3,15.76 73.61,15.46 73.98,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_93\" serif:id=\"9\"><path d=\"M73.98,9.53L77.71,9.53C78.08,9.53 78.39,9.83 78.39,10.2L78.39,13.93C78.39,14.31 78.08,14.61 77.71,14.61L73.98,14.61C73.61,14.61 73.3,14.31 73.3,13.93L73.3,10.2C73.3,9.83 73.61,9.53 73.98,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_83\" serif:id=\"8\"><path d=\"M68.05,27.32L71.78,27.32C72.15,27.32 72.46,27.63 72.46,28L72.46,31.73C72.46,32.1 72.15,32.41 71.78,32.41L68.05,32.41C67.68,32.41 67.37,32.1 67.37,31.73L67.37,28C67.37,27.63 67.68,27.32 68.05,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_73\" serif:id=\"7\"><path d=\"M68.05,15.46L71.78,15.46C72.15,15.46 72.46,15.76 72.46,16.14L72.46,19.87C72.46,20.24 72.15,20.54 71.78,20.54L68.05,20.54C67.68,20.54 67.37,20.24 67.37,19.87L67.37,16.14C67.37,15.76 67.68,15.46 68.05,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_63\" serif:id=\"6\"><path d=\"M68.05,3.59L71.78,3.59C72.15,3.59 72.46,3.9 72.46,4.27L72.46,8C72.46,8.37 72.15,8.68 71.78,8.68L68.05,8.68C67.68,8.68 67.37,8.37 67.37,8L67.37,4.27C67.37,3.9 67.68,3.59 68.05,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_53\" serif:id=\"5\"><path d=\"M62.12,3.59L65.85,3.59C66.22,3.59 66.52,3.9 66.52,4.27L66.52,8C66.52,8.37 66.22,8.68 65.85,8.68L62.12,8.68C61.74,8.68 61.44,8.37 61.44,8L61.44,4.27C61.44,3.9 61.74,3.59 62.12,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_43\" serif:id=\"4\"><path d=\"M62.12,9.53L65.85,9.53C66.22,9.53 66.52,9.83 66.52,10.2L66.52,13.93C66.52,14.31 66.22,14.61 65.85,14.61L62.12,14.61C61.74,14.61 61.44,14.31 61.44,13.93L61.44,10.2C61.44,9.83 61.74,9.53 62.12,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_33\" serif:id=\"3\"><path d=\"M62.12,15.46L65.85,15.46C66.22,15.46 66.52,15.76 66.52,16.14L66.52,19.87C66.52,20.24 66.22,20.54 65.85,20.54L62.12,20.54C61.74,20.54 61.44,20.24 61.44,19.87L61.44,16.14C61.44,15.76 61.74,15.46 62.12,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_23\" serif:id=\"2\"><path d=\"M62.12,21.39L65.85,21.39C66.22,21.39 66.52,21.69 66.52,22.07L66.52,25.8C66.52,26.17 66.22,26.47 65.85,26.47L62.12,26.47C61.74,26.47 61.44,26.17 61.44,25.8L61.44,22.07C61.44,21.69 61.74,21.39 62.12,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_13\" serif:id=\"1\"><path d=\"M62.12,27.32L65.85,27.32C66.22,27.32 66.52,27.63 66.52,28L66.52,31.73C66.52,32.1 66.22,32.41 65.85,32.41L62.12,32.41C61.74,32.41 61.44,32.1 61.44,31.73L61.44,28C61.44,27.63 61.74,27.32 62.12,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g></g><g id=\"_5_O\" serif:id=\"5_O\"><g id=\"_84\" serif:id=\"8\"><path d=\"M93.47,21.39L97.2,21.39C97.58,21.39 97.88,21.69 97.88,22.07L97.88,25.8C97.88,26.17 97.58,26.47 97.2,26.47L93.47,26.47C93.1,26.47 92.8,26.17 92.8,25.8L92.8,22.07C92.8,21.69 93.1,21.39 93.47,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_74\" serif:id=\"7\"><path d=\"M93.47,15.46L97.2,15.46C97.58,15.46 97.88,15.76 97.88,16.14L97.88,19.87C97.88,20.24 97.58,20.54 97.2,20.54L93.47,20.54C93.1,20.54 92.8,20.24 92.8,19.87L92.8,16.14C92.8,15.76 93.1,15.46 93.47,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_64\" serif:id=\"6\"><path d=\"M93.47,9.53L97.2,9.53C97.58,9.53 97.88,9.83 97.88,10.2L97.88,13.93C97.88,14.31 97.58,14.61 97.2,14.61L93.47,14.61C93.1,14.61 92.8,14.31 92.8,13.93L92.8,10.2C92.8,9.83 93.1,9.53 93.47,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_54\" serif:id=\"5\"><path d=\"M87.54,3.59L91.27,3.59C91.64,3.59 91.95,3.9 91.95,4.27L91.95,8C91.95,8.37 91.64,8.68 91.27,8.68L87.54,8.68C87.17,8.68 86.86,8.37 86.86,8L86.86,4.27C86.86,3.9 87.17,3.59 87.54,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_44\" serif:id=\"4\"><path d=\"M81.61,9.53L85.34,9.53C85.71,9.53 86.02,9.83 86.02,10.2L86.02,13.93C86.02,14.31 85.71,14.61 85.34,14.61L81.61,14.61C81.24,14.61 80.93,14.31 80.93,13.93L80.93,10.2C80.93,9.83 81.24,9.53 81.61,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_34\" serif:id=\"3\"><path d=\"M81.61,15.46L85.34,15.46C85.71,15.46 86.02,15.76 86.02,16.14L86.02,19.87C86.02,20.24 85.71,20.54 85.34,20.54L81.61,20.54C81.24,20.54 80.93,20.24 80.93,19.87L80.93,16.14C80.93,15.76 81.24,15.46 81.61,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_24\" serif:id=\"2\"><path d=\"M81.61,21.39L85.34,21.39C85.71,21.39 86.02,21.69 86.02,22.07L86.02,25.8C86.02,26.17 85.71,26.47 85.34,26.47L81.61,26.47C81.24,26.47 80.93,26.17 80.93,25.8L80.93,22.07C80.93,21.69 81.24,21.39 81.61,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_14\" serif:id=\"1\"><path d=\"M87.54,27.32L91.27,27.32C91.64,27.32 91.95,27.63 91.95,28L91.95,31.73C91.95,32.1 91.64,32.41 91.27,32.41L87.54,32.41C87.17,32.41 86.86,32.1 86.86,31.73L86.86,28C86.86,27.63 87.17,27.32 87.54,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g></g><g id=\"_6_G\" serif:id=\"6_G\"><g id=\"_75\" serif:id=\"7\"><path d=\"M112.97,3.59L116.7,3.59C117.07,3.59 117.37,3.9 117.37,4.27L117.37,8C117.37,8.37 117.07,8.68 116.7,8.68L112.97,8.68C112.59,8.68 112.29,8.37 112.29,8L112.29,4.27C112.29,3.9 112.59,3.59 112.97,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_65\" serif:id=\"6\"><path d=\"M107.03,3.59L110.76,3.59C111.14,3.59 111.44,3.9 111.44,4.27L111.44,8C111.44,8.37 111.14,8.68 110.76,8.68L107.03,8.68C106.66,8.68 106.36,8.37 106.36,8L106.36,4.27C106.36,3.9 106.66,3.59 107.03,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_55\" serif:id=\"5\"><path d=\"M101.1,3.59L104.83,3.59C105.2,3.59 105.51,3.9 105.51,4.27L105.51,8C105.51,8.37 105.2,8.68 104.83,8.68L101.1,8.68C100.73,8.68 100.42,8.37 100.42,8L100.42,4.27C100.42,3.9 100.73,3.59 101.1,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_45\" serif:id=\"4\"><path d=\"M101.1,9.53L104.83,9.53C105.2,9.53 105.51,9.83 105.51,10.2L105.51,13.93C105.51,14.31 105.2,14.61 104.83,14.61L101.1,14.61C100.73,14.61 100.42,14.31 100.42,13.93L100.42,10.2C100.42,9.83 100.73,9.53 101.1,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_35\" serif:id=\"3\"><path d=\"M101.1,15.46L104.83,15.46C105.2,15.46 105.51,15.76 105.51,16.14L105.51,19.87C105.51,20.24 105.2,20.54 104.83,20.54L101.1,20.54C100.73,20.54 100.42,20.24 100.42,19.87L100.42,16.14C100.42,15.76 100.73,15.46 101.1,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_25\" serif:id=\"2\"><path d=\"M101.1,21.39L104.83,21.39C105.2,21.39 105.51,21.69 105.51,22.07L105.51,25.8C105.51,26.17 105.2,26.47 104.83,26.47L101.1,26.47C100.73,26.47 100.42,26.17 100.42,25.8L100.42,22.07C100.42,21.69 100.73,21.39 101.1,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_15\" serif:id=\"1\"><path d=\"M101.1,27.32L104.83,27.32C105.2,27.32 105.51,27.63 105.51,28L105.51,31.73C105.51,32.1 105.2,32.41 104.83,32.41L101.1,32.41C100.73,32.41 100.42,32.1 100.42,31.73L100.42,28C100.42,27.63 100.73,27.32 101.1,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g></g><g id=\"_7_O\" serif:id=\"7_O\"><g id=\"_85\" serif:id=\"8\"><path d=\"M130.76,21.39L134.49,21.39C134.87,21.39 135.17,21.69 135.17,22.07L135.17,25.8C135.17,26.17 134.87,26.47 134.49,26.47L130.76,26.47C130.39,26.47 130.08,26.17 130.08,25.8L130.08,22.07C130.08,21.69 130.39,21.39 130.76,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_76\" serif:id=\"7\"><path d=\"M130.76,15.46L134.49,15.46C134.87,15.46 135.17,15.76 135.17,16.14L135.17,19.87C135.17,20.24 134.87,20.54 134.49,20.54L130.76,20.54C130.39,20.54 130.08,20.24 130.08,19.87L130.08,16.14C130.08,15.76 130.39,15.46 130.76,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_66\" serif:id=\"6\"><path d=\"M130.76,9.53L134.49,9.53C134.87,9.53 135.17,9.83 135.17,10.2L135.17,13.93C135.17,14.31 134.87,14.61 134.49,14.61L130.76,14.61C130.39,14.61 130.08,14.31 130.08,13.93L130.08,10.2C130.08,9.83 130.39,9.53 130.76,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_56\" serif:id=\"5\"><path d=\"M124.83,3.59L128.56,3.59C128.93,3.59 129.24,3.9 129.24,4.27L129.24,8C129.24,8.37 128.93,8.68 128.56,8.68L124.83,8.68C124.46,8.68 124.15,8.37 124.15,8L124.15,4.27C124.15,3.9 124.46,3.59 124.83,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_46\" serif:id=\"4\"><path d=\"M118.9,9.53L122.63,9.53C123,9.53 123.3,9.83 123.3,10.2L123.3,13.93C123.3,14.31 123,14.61 122.63,14.61L118.9,14.61C118.52,14.61 118.22,14.31 118.22,13.93L118.22,10.2C118.22,9.83 118.52,9.53 118.9,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_36\" serif:id=\"3\"><path d=\"M118.9,15.46L122.63,15.46C123,15.46 123.3,15.76 123.3,16.14L123.3,19.87C123.3,20.24 123,20.54 122.63,20.54L118.9,20.54C118.52,20.54 118.22,20.24 118.22,19.87L118.22,16.14C118.22,15.76 118.52,15.46 118.9,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_26\" serif:id=\"2\"><path d=\"M118.9,21.39L122.63,21.39C123,21.39 123.3,21.69 123.3,22.07L123.3,25.8C123.3,26.17 123,26.47 122.63,26.47L118.9,26.47C118.52,26.47 118.22,26.17 118.22,25.8L118.22,22.07C118.22,21.69 118.52,21.39 118.9,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_16\" serif:id=\"1\"><path d=\"M124.83,27.32L128.56,27.32C128.93,27.32 129.24,27.63 129.24,28L129.24,31.73C129.24,32.1 128.93,32.41 128.56,32.41L124.83,32.41C124.46,32.41 124.15,32.1 124.15,31.73L124.15,28C124.15,27.63 124.46,27.32 124.83,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g></g><g id=\"_8_N\" serif:id=\"8_N\"><g id=\"_112\" serif:id=\"11\"><path d=\"M150.25,27.32L153.98,27.32C154.36,27.32 154.66,27.63 154.66,28L154.66,31.73C154.66,32.1 154.36,32.41 153.98,32.41L150.25,32.41C149.88,32.41 149.58,32.1 149.58,31.73L149.58,28C149.58,27.63 149.88,27.32 150.25,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_103\" serif:id=\"10\"><path d=\"M150.25,21.39L153.98,21.39C154.36,21.39 154.66,21.69 154.66,22.07L154.66,25.8C154.66,26.17 154.36,26.47 153.98,26.47L150.25,26.47C149.88,26.47 149.58,26.17 149.58,25.8L149.58,22.07C149.58,21.69 149.88,21.39 150.25,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_94\" serif:id=\"9\"><path d=\"M150.25,15.46L153.98,15.46C154.36,15.46 154.66,15.76 154.66,16.14L154.66,19.87C154.66,20.24 154.36,20.54 153.98,20.54L150.25,20.54C149.88,20.54 149.58,20.24 149.58,19.87L149.58,16.14C149.58,15.76 149.88,15.46 150.25,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_86\" serif:id=\"8\"><path d=\"M150.25,9.53L153.98,9.53C154.36,9.53 154.66,9.83 154.66,10.2L154.66,13.93C154.66,14.31 154.36,14.61 153.98,14.61L150.25,14.61C149.88,14.61 149.58,14.31 149.58,13.93L149.58,10.2C149.58,9.83 149.88,9.53 150.25,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_77\" serif:id=\"7\"><path d=\"M150.25,3.59L153.98,3.59C154.36,3.59 154.66,3.9 154.66,4.27L154.66,8C154.66,8.37 154.36,8.68 153.98,8.68L150.25,8.68C149.88,8.68 149.58,8.37 149.58,8L149.58,4.27C149.58,3.9 149.88,3.59 150.25,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_67\" serif:id=\"6\"><path d=\"M144.32,15.46L148.05,15.46C148.42,15.46 148.73,15.76 148.73,16.14L148.73,19.87C148.73,20.24 148.42,20.54 148.05,20.54L144.32,20.54C143.95,20.54 143.64,20.24 143.64,19.87L143.64,16.14C143.64,15.76 143.95,15.46 144.32,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_57\" serif:id=\"5\"><path d=\"M138.39,27.32L142.12,27.32C142.49,27.32 142.8,27.63 142.8,28L142.8,31.73C142.8,32.1 142.49,32.41 142.12,32.41L138.39,32.41C138.02,32.41 137.71,32.1 137.71,31.73L137.71,28C137.71,27.63 138.02,27.32 138.39,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_47\" serif:id=\"4\"><path d=\"M138.39,21.39L142.12,21.39C142.49,21.39 142.8,21.69 142.8,22.07L142.8,25.8C142.8,26.17 142.49,26.47 142.12,26.47L138.39,26.47C138.02,26.47 137.71,26.17 137.71,25.8L137.71,22.07C137.71,21.69 138.02,21.39 138.39,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_37\" serif:id=\"3\"><path d=\"M138.39,15.46L142.12,15.46C142.49,15.46 142.8,15.76 142.8,16.14L142.8,19.87C142.8,20.24 142.49,20.54 142.12,20.54L138.39,20.54C138.02,20.54 137.71,20.24 137.71,19.87L137.71,16.14C137.71,15.76 138.02,15.46 138.39,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_27\" serif:id=\"2\"><path d=\"M138.39,9.53L142.12,9.53C142.49,9.53 142.8,9.83 142.8,10.2L142.8,13.93C142.8,14.31 142.49,14.61 142.12,14.61L138.39,14.61C138.02,14.61 137.71,14.31 137.71,13.93L137.71,10.2C137.71,9.83 138.02,9.53 138.39,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_17\" serif:id=\"1\"><path d=\"M138.39,3.59L142.12,3.59C142.49,3.59 142.8,3.9 142.8,4.27L142.8,8C142.8,8.37 142.49,8.68 142.12,8.68L138.39,8.68C138.02,8.68 137.71,8.37 137.71,8L137.71,4.27C137.71,3.9 138.02,3.59 138.39,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g></g><g id=\"_9_K\" serif:id=\"9_K\"><g id=\"_104\" serif:id=\"10\"><path d=\"M169.74,27.32L173.47,27.32C173.85,27.32 174.15,27.63 174.15,28L174.15,31.73C174.15,32.1 173.85,32.41 173.47,32.41L169.74,32.41C169.37,32.41 169.07,32.1 169.07,31.73L169.07,28C169.07,27.63 169.37,27.32 169.74,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_95\" serif:id=\"9\"><path d=\"M166.78,21.39L170.51,21.39C170.88,21.39 171.19,21.69 171.19,22.07L171.19,25.8C171.19,26.17 170.88,26.47 170.51,26.47L166.78,26.47C166.41,26.47 166.1,26.17 166.1,25.8L166.1,22.07C166.1,21.69 166.41,21.39 166.78,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_87\" serif:id=\"8\"><path d=\"M169.74,3.59L173.47,3.59C173.85,3.59 174.15,3.9 174.15,4.27L174.15,8C174.15,8.37 173.85,8.68 173.47,8.68L169.74,8.68C169.37,8.68 169.07,8.37 169.07,8L169.07,4.27C169.07,3.9 169.37,3.59 169.74,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_78\" serif:id=\"7\"><path d=\"M166.78,9.53L170.51,9.53C170.88,9.53 171.19,9.83 171.19,10.2L171.19,13.93C171.19,14.31 170.88,14.61 170.51,14.61L166.78,14.61C166.41,14.61 166.1,14.31 166.1,13.93L166.1,10.2C166.1,9.83 166.41,9.53 166.78,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_68\" serif:id=\"6\"><path d=\"M163.81,15.46L167.54,15.46C167.92,15.46 168.22,15.76 168.22,16.14L168.22,19.87C168.22,20.24 167.92,20.54 167.54,20.54L163.81,20.54C163.44,20.54 163.14,20.24 163.14,19.87L163.14,16.14C163.14,15.76 163.44,15.46 163.81,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_58\" serif:id=\"5\"><path d=\"M157.88,27.32L161.61,27.32C161.98,27.32 162.29,27.63 162.29,28L162.29,31.73C162.29,32.1 161.98,32.41 161.61,32.41L157.88,32.41C157.51,32.41 157.2,32.1 157.2,31.73L157.2,28C157.2,27.63 157.51,27.32 157.88,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_48\" serif:id=\"4\"><path d=\"M157.88,21.39L161.61,21.39C161.98,21.39 162.29,21.69 162.29,22.07L162.29,25.8C162.29,26.17 161.98,26.47 161.61,26.47L157.88,26.47C157.51,26.47 157.2,26.17 157.2,25.8L157.2,22.07C157.2,21.69 157.51,21.39 157.88,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_38\" serif:id=\"3\"><path d=\"M157.88,15.46L161.61,15.46C161.98,15.46 162.29,15.76 162.29,16.14L162.29,19.87C162.29,20.24 161.98,20.54 161.61,20.54L157.88,20.54C157.51,20.54 157.2,20.24 157.2,19.87L157.2,16.14C157.2,15.76 157.51,15.46 157.88,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_28\" serif:id=\"2\"><path d=\"M157.88,9.53L161.61,9.53C161.98,9.53 162.29,9.83 162.29,10.2L162.29,13.93C162.29,14.31 161.98,14.61 161.61,14.61L157.88,14.61C157.51,14.61 157.2,14.31 157.2,13.93L157.2,10.2C157.2,9.83 157.51,9.53 157.88,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_18\" serif:id=\"1\"><path d=\"M157.88,3.59L161.61,3.59C161.98,3.59 162.29,3.9 162.29,4.27L162.29,8C162.29,8.37 161.98,8.68 161.61,8.68L157.88,8.68C157.51,8.68 157.2,8.37 157.2,8L157.2,4.27C157.2,3.9 157.51,3.59 157.88,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g></g><g id=\"_10_I\" serif:id=\"10_I\"><g id=\"_131\" serif:id=\"13\"><path d=\"M192.63,27.32L196.36,27.32C196.73,27.32 197.03,27.63 197.03,28L197.03,31.73C197.03,32.1 196.73,32.41 196.36,32.41L192.63,32.41C192.25,32.41 191.95,32.1 191.95,31.73L191.95,28C191.95,27.63 192.25,27.32 192.63,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_121\" serif:id=\"12\"><path d=\"M192.63,21.39L196.36,21.39C196.73,21.39 197.03,21.69 197.03,22.07L197.03,25.8C197.03,26.17 196.73,26.47 196.36,26.47L192.63,26.47C192.25,26.47 191.95,26.17 191.95,25.8L191.95,22.07C191.95,21.69 192.25,21.39 192.63,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_113\" serif:id=\"11\"><path d=\"M192.63,15.46L196.36,15.46C196.73,15.46 197.03,15.76 197.03,16.14L197.03,19.87C197.03,20.24 196.73,20.54 196.36,20.54L192.63,20.54C192.25,20.54 191.95,20.24 191.95,19.87L191.95,16.14C191.95,15.76 192.25,15.46 192.63,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_105\" serif:id=\"10\"><path d=\"M192.63,9.53L196.36,9.53C196.73,9.53 197.03,9.83 197.03,10.2L197.03,13.93C197.03,14.31 196.73,14.61 196.36,14.61L192.63,14.61C192.25,14.61 191.95,14.31 191.95,13.93L191.95,10.2C191.95,9.83 192.25,9.53 192.63,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_96\" serif:id=\"9\"><path d=\"M192.63,3.59L196.36,3.59C196.73,3.59 197.03,3.9 197.03,4.27L197.03,8C197.03,8.37 196.73,8.68 196.36,8.68L192.63,8.68C192.25,8.68 191.95,8.37 191.95,8L191.95,4.27C191.95,3.9 192.25,3.59 192.63,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_88\" serif:id=\"8\"><path d=\"M186.69,9.53L190.42,9.53C190.8,9.53 191.1,9.83 191.1,10.2L191.1,13.93C191.1,14.31 190.8,14.61 190.42,14.61L186.69,14.61C186.32,14.61 186.02,14.31 186.02,13.93L186.02,10.2C186.02,9.83 186.32,9.53 186.69,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_79\" serif:id=\"7\"><path d=\"M185,15.46L188.73,15.46C189.1,15.46 189.41,15.76 189.41,16.14L189.41,19.87C189.41,20.24 189.1,20.54 188.73,20.54L185,20.54C184.63,20.54 184.32,20.24 184.32,19.87L184.32,16.14C184.32,15.76 184.63,15.46 185,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_69\" serif:id=\"6\"><path d=\"M183.3,21.39L187.03,21.39C187.41,21.39 187.71,21.69 187.71,22.07L187.71,25.8C187.71,26.17 187.41,26.47 187.03,26.47L183.3,26.47C182.93,26.47 182.63,26.17 182.63,25.8L182.63,22.07C182.63,21.69 182.93,21.39 183.3,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_59\" serif:id=\"5\"><path d=\"M177.37,27.32L181.1,27.32C181.47,27.32 181.78,27.63 181.78,28L181.78,31.73C181.78,32.1 181.47,32.41 181.1,32.41L177.37,32.41C177,32.41 176.69,32.1 176.69,31.73L176.69,28C176.69,27.63 177,27.32 177.37,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_49\" serif:id=\"4\"><path d=\"M177.37,21.39L181.1,21.39C181.47,21.39 181.78,21.69 181.78,22.07L181.78,25.8C181.78,26.17 181.47,26.47 181.1,26.47L177.37,26.47C177,26.47 176.69,26.17 176.69,25.8L176.69,22.07C176.69,21.69 177,21.39 177.37,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_39\" serif:id=\"3\"><path d=\"M177.37,15.46L181.1,15.46C181.47,15.46 181.78,15.76 181.78,16.14L181.78,19.87C181.78,20.24 181.47,20.54 181.1,20.54L177.37,20.54C177,20.54 176.69,20.24 176.69,19.87L176.69,16.14C176.69,15.76 177,15.46 177.37,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_29\" serif:id=\"2\"><path d=\"M177.37,9.53L181.1,9.53C181.47,9.53 181.78,9.83 181.78,10.2L181.78,13.93C181.78,14.31 181.47,14.61 181.1,14.61L177.37,14.61C177,14.61 176.69,14.31 176.69,13.93L176.69,10.2C176.69,9.83 177,9.53 177.37,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_19\" serif:id=\"1\"><path d=\"M177.37,3.59L181.1,3.59C181.47,3.59 181.78,3.9 181.78,4.27L181.78,8C181.78,8.37 181.47,8.68 181.1,8.68L177.37,8.68C177,8.68 176.69,8.37 176.69,8L176.69,4.27C176.69,3.9 177,3.59 177.37,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g></g></g></svg>') no-repeat center/130px !important;width:450px;height:180px;background-image:linear-gradient(hsl(0, 50%, 70%), hsl(0, 50%, 70%)),linear-gradient(hsl(30, 50%, 70%), hsl(30, 50%, 70%)),linear-gradient(hsl(60, 50%, 70%), hsl(60, 50%, 70%)),linear-gradient(hsl(120, 50%, 70%), hsl(120, 50%, 70%)),linear-gradient(hsl(180, 50%, 70%), hsl(180, 50%, 70%)),linear-gradient(hsl(240, 50%, 70%), hsl(240, 50%, 70%)),linear-gradient(hsl(273, 50%, 70%), hsl(273, 50%, 70%)),linear-gradient(hsl(328, 50%, 70%), hsl(328, 50%, 70%)),linear-gradient(hsl(0, 50%, 70%), hsl(0, 50%, 70%)),linear-gradient(hsl(30, 50%, 70%), hsl(30, 50%, 70%)),linear-gradient(hsl(60, 50%, 70%), hsl(60, 50%, 70%)),linear-gradient(hsl(120, 50%, 70%), hsl(120, 50%, 70%)),linear-gradient(hsl(180, 50%, 70%), hsl(180, 50%, 70%)),linear-gradient(hsl(240, 50%, 70%), hsl(240, 50%, 70%)),linear-gradient(hsl(273, 50%, 70%), hsl(273, 50%, 70%)),linear-gradient(hsl(328, 50%, 70%), hsl(328, 50%, 70%)),linear-gradient(hsl(0, 50%, 70%), hsl(0, 50%, 70%)),linear-gradient(hsl(30, 50%, 70%), hsl(30, 50%, 70%)),linear-gradient(hsl(60, 50%, 70%), hsl(60, 50%, 70%)),linear-gradient(hsl(120, 50%, 70%), hsl(120, 50%, 70%)),linear-gradient(hsl(180, 50%, 70%), hsl(180, 50%, 70%)),linear-gradient(hsl(240, 50%, 70%), hsl(240, 50%, 70%)),linear-gradient(hsl(273, 50%, 70%), hsl(273, 50%, 70%)),linear-gradient(hsl(328, 50%, 70%), hsl(328, 50%, 70%)),linear-gradient(hsl(0, 50%, 70%), hsl(0, 50%, 70%)),linear-gradient(hsl(30, 50%, 70%), hsl(30, 50%, 70%)),linear-gradient(hsl(60, 50%, 70%), hsl(60, 50%, 70%)),linear-gradient(hsl(120, 50%, 70%), hsl(120, 50%, 70%)),linear-gradient(hsl(180, 50%, 70%), hsl(180, 50%, 70%)),linear-gradient(hsl(240, 50%, 70%), hsl(240, 50%, 70%)),linear-gradient(hsl(273, 50%, 70%), hsl(273, 50%, 70%)),linear-gradient(hsl(328, 50%, 70%), hsl(328, 50%, 70%)),linear-gradient(hsl(0, 50%, 70%), hsl(0, 50%, 70%)),linear-gradient(hsl(30, 50%, 70%), hsl(30, 50%, 70%)),linear-gradient(hsl(60, 50%, 70%), hsl(60, 50%, 70%)),linear-gradient(hsl(120, 50%, 70%), hsl(120, 50%, 70%)),linear-gradient(hsl(180, 50%, 70%), hsl(180, 50%, 70%)),linear-gradient(hsl(240, 50%, 70%), hsl(240, 50%, 70%)),linear-gradient(hsl(273, 50%, 70%), hsl(273, 50%, 70%)),linear-gradient(hsl(328, 50%, 70%), hsl(328, 50%, 70%)),linear-gradient(hsl(0, 50%, 70%), hsl(0, 50%, 70%)),linear-gradient(hsl(30, 50%, 70%), hsl(30, 50%, 70%)),linear-gradient(hsl(60, 50%, 70%), hsl(60, 50%, 70%)),linear-gradient(hsl(120, 50%, 70%), hsl(120, 50%, 70%)),linear-gradient(hsl(180, 50%, 70%), hsl(180, 50%, 70%)),linear-gradient(hsl(240, 50%, 70%), hsl(240, 50%, 70%)),linear-gradient(hsl(273, 50%, 70%), hsl(273, 50%, 70%)),linear-gradient(hsl(328, 50%, 70%), hsl(328, 50%, 70%)),linear-gradient(hsl(0, 50%, 70%), hsl(0, 50%, 70%)),linear-gradient(hsl(30, 50%, 70%), hsl(30, 50%, 70%)),linear-gradient(hsl(60, 50%, 70%), hsl(60, 50%, 70%)),linear-gradient(hsl(120, 50%, 70%), hsl(120, 50%, 70%)),linear-gradient(hsl(180, 50%, 70%), hsl(180, 50%, 70%)),linear-gradient(hsl(240, 50%, 70%), hsl(240, 50%, 70%)),linear-gradient(hsl(273, 50%, 70%), hsl(273, 50%, 70%)),linear-gradient(hsl(328, 50%, 70%), hsl(328, 50%, 70%)),linear-gradient(hsl(0, 50%, 70%), hsl(0, 50%, 70%)),linear-gradient(hsl(30, 50%, 70%), hsl(30, 50%, 70%)),linear-gradient(hsl(60, 50%, 70%), hsl(60, 50%, 70%)),linear-gradient(hsl(120, 50%, 70%), hsl(120, 50%, 70%)),linear-gradient(hsl(180, 50%, 70%), hsl(180, 50%, 70%)),linear-gradient(hsl(240, 50%, 70%), hsl(240, 50%, 70%)),linear-gradient(hsl(273, 50%, 70%), hsl(273, 50%, 70%)),linear-gradient(hsl(328, 50%, 70%), hsl(328, 50%, 70%)),linear-gradient(hsl(0, 50%, 70%), hsl(0, 50%, 70%)),linear-gradient(hsl(30, 50%, 70%), hsl(30, 50%, 70%)),linear-gradient(hsl(60, 50%, 70%), hsl(60, 50%, 70%)),linear-gradient(hsl(120, 50%, 70%), hsl(120, 50%, 70%)),linear-gradient(hsl(180, 50%, 70%), hsl(180, 50%, 70%)),linear-gradient(hsl(240, 50%, 70%), hsl(240, 50%, 70%)),linear-gradient(hsl(273, 50%, 70%), hsl(273, 50%, 70%)),linear-gradient(hsl(328, 50%, 70%), hsl(328, 50%, 70%)),linear-gradient(hsl(0, 50%, 70%), hsl(0, 50%, 70%)),linear-gradient(hsl(30, 50%, 70%), hsl(30, 50%, 70%)),linear-gradient(hsl(60, 50%, 70%), hsl(60, 50%, 70%)),linear-gradient(hsl(120, 50%, 70%), hsl(120, 50%, 70%)),linear-gradient(hsl(180, 50%, 70%), hsl(180, 50%, 70%)),linear-gradient(hsl(240, 50%, 70%), hsl(240, 50%, 70%)),linear-gradient(hsl(273, 50%, 70%), hsl(273, 50%, 70%)),linear-gradient(hsl(328, 50%, 70%), hsl(328, 50%, 70%)),linear-gradient(hsl(0, 50%, 70%), hsl(0, 50%, 70%)),linear-gradient(hsl(30, 50%, 70%), hsl(30, 50%, 70%)),linear-gradient(hsl(60, 50%, 70%), hsl(60, 50%, 70%)),linear-gradient(hsl(120, 50%, 70%), hsl(120, 50%, 70%)),linear-gradient(hsl(180, 50%, 70%), hsl(180, 50%, 70%)),linear-gradient(hsl(240, 50%, 70%), hsl(240, 50%, 70%)),linear-gradient(hsl(273, 50%, 70%), hsl(273, 50%, 70%)),linear-gradient(hsl(328, 50%, 70%), hsl(328, 50%, 70%)),linear-gradient(hsl(0, 50%, 70%), hsl(0, 50%, 70%)),linear-gradient(hsl(30, 50%, 70%), hsl(30, 50%, 70%));background-position:0px 0px,30px 0px,60px 0px,90px 0px,120px 0px,150px 0px,180px 0px,210px 0px,240px 0px,270px 0px,300px 0px,330px 0px,360px 0px,390px 0px,420px 0px,0px 30px,30px 30px,60px 30px,90px 30px,120px 30px,150px 30px,180px 30px,210px 30px,240px 30px,270px 30px,300px 30px,330px 30px,360px 30px,390px 30px,420px 30px,0px 60px,30px 60px,60px 60px,90px 60px,120px 60px,150px 60px,180px 60px,210px 60px,240px 60px,270px 60px,300px 60px,330px 60px,360px 60px,390px 60px,420px 60px,0px 90px,30px 90px,60px 90px,90px 90px,120px 90px,150px 90px,180px 90px,210px 90px,240px 90px,270px 90px,300px 90px,330px 90px,360px 90px,390px 90px,420px 90px,0px 120px,30px 120px,60px 120px,90px 120px,120px 120px,150px 120px,180px 120px,210px 120px,240px 120px,270px 120px,300px 120px,330px 120px,360px 120px,390px 120px,420px 120px,0px 150px,30px 150px,60px 150px,90px 150px,120px 150px,150px 150px,180px 150px,210px 150px,240px 150px,270px 150px,300px 150px,330px 150px,360px 150px,390px 150px,420px 150px;background-size:30px 30px;background-repeat:no-repeat;height:45px !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;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;\"><g id=\"Logo-Klavogonki-small\"><g id=\"logo-wrapper\" transform=\"matrix(0.225,0,0,1,0,-0.5)\"><rect x=\"0\" y=\"0.5\" width=\"200\" height=\"35\" style=\"fill:none;\"/></g><g id=\"_1_K\" serif:id=\"1_K\" transform=\"matrix(1,0,0,1,1.31,0)\"><g id=\"_10\" serif:id=\"10\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M15.51,27.32L19.24,27.32C19.61,27.32 19.91,27.63 19.91,28L19.91,31.73C19.91,32.1 19.61,32.41 19.24,32.41L15.51,32.41C15.13,32.41 14.83,32.1 14.83,31.73L14.83,28C14.83,27.63 15.13,27.32 15.51,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_9\" serif:id=\"9\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M12.54,21.39L16.27,21.39C16.64,21.39 16.95,21.69 16.95,22.07L16.95,25.8C16.95,26.17 16.64,26.47 16.27,26.47L12.54,26.47C12.17,26.47 11.86,26.17 11.86,25.8L11.86,22.07C11.86,21.69 12.17,21.39 12.54,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_8\" serif:id=\"8\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M15.51,3.59L19.24,3.59C19.61,3.59 19.91,3.9 19.91,4.27L19.91,8C19.91,8.37 19.61,8.68 19.24,8.68L15.51,8.68C15.13,8.68 14.83,8.37 14.83,8L14.83,4.27C14.83,3.9 15.13,3.59 15.51,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_7\" serif:id=\"7\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M12.54,9.53L16.27,9.53C16.64,9.53 16.95,9.83 16.95,10.2L16.95,13.93C16.95,14.31 16.64,14.61 16.27,14.61L12.54,14.61C12.17,14.61 11.86,14.31 11.86,13.93L11.86,10.2C11.86,9.83 12.17,9.53 12.54,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_6\" serif:id=\"6\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M9.58,15.46L13.31,15.46C13.68,15.46 13.98,15.76 13.98,16.14L13.98,19.87C13.98,20.24 13.68,20.54 13.31,20.54L9.58,20.54C9.2,20.54 8.9,20.24 8.9,19.87L8.9,16.14C8.9,15.76 9.2,15.46 9.58,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_5\" serif:id=\"5\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M3.64,27.32L7.37,27.32C7.75,27.32 8.05,27.63 8.05,28L8.05,31.73C8.05,32.1 7.75,32.41 7.37,32.41L3.64,32.41C3.27,32.41 2.97,32.1 2.97,31.73L2.97,28C2.97,27.63 3.27,27.32 3.64,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_4\" serif:id=\"4\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M3.64,21.39L7.37,21.39C7.75,21.39 8.05,21.69 8.05,22.07L8.05,25.8C8.05,26.17 7.75,26.47 7.37,26.47L3.64,26.47C3.27,26.47 2.97,26.17 2.97,25.8L2.97,22.07C2.97,21.69 3.27,21.39 3.64,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_3\" serif:id=\"3\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M3.64,15.46L7.37,15.46C7.75,15.46 8.05,15.76 8.05,16.14L8.05,19.87C8.05,20.24 7.75,20.54 7.37,20.54L3.64,20.54C3.27,20.54 2.97,20.24 2.97,19.87L2.97,16.14C2.97,15.76 3.27,15.46 3.64,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_2\" serif:id=\"2\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M3.64,9.53L7.37,9.53C7.75,9.53 8.05,9.83 8.05,10.2L8.05,13.93C8.05,14.31 7.75,14.61 7.37,14.61L3.64,14.61C3.27,14.61 2.97,14.31 2.97,13.93L2.97,10.2C2.97,9.83 3.27,9.53 3.64,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_1\" serif:id=\"1\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M3.64,3.59L7.37,3.59C7.75,3.59 8.05,3.9 8.05,4.27L8.05,8C8.05,8.37 7.75,8.68 7.37,8.68L3.64,8.68C3.27,8.68 2.97,8.37 2.97,8L2.97,4.27C2.97,3.9 3.27,3.59 3.64,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g></g><g id=\"_6_G\" serif:id=\"6_G\" transform=\"matrix(1,0,0,1,-76.65,0)\"><g id=\"_71\" serif:id=\"7\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M112.97,3.59L116.7,3.59C117.07,3.59 117.37,3.9 117.37,4.27L117.37,8C117.37,8.37 117.07,8.68 116.7,8.68L112.97,8.68C112.59,8.68 112.29,8.37 112.29,8L112.29,4.27C112.29,3.9 112.59,3.59 112.97,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_61\" serif:id=\"6\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M107.03,3.59L110.76,3.59C111.14,3.59 111.44,3.9 111.44,4.27L111.44,8C111.44,8.37 111.14,8.68 110.76,8.68L107.03,8.68C106.66,8.68 106.36,8.37 106.36,8L106.36,4.27C106.36,3.9 106.66,3.59 107.03,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_51\" serif:id=\"5\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M101.1,3.59L104.83,3.59C105.2,3.59 105.51,3.9 105.51,4.27L105.51,8C105.51,8.37 105.2,8.68 104.83,8.68L101.1,8.68C100.73,8.68 100.42,8.37 100.42,8L100.42,4.27C100.42,3.9 100.73,3.59 101.1,3.59Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_41\" serif:id=\"4\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M101.1,9.53L104.83,9.53C105.2,9.53 105.51,9.83 105.51,10.2L105.51,13.93C105.51,14.31 105.2,14.61 104.83,14.61L101.1,14.61C100.73,14.61 100.42,14.31 100.42,13.93L100.42,10.2C100.42,9.83 100.73,9.53 101.1,9.53Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_31\" serif:id=\"3\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M101.1,15.46L104.83,15.46C105.2,15.46 105.51,15.76 105.51,16.14L105.51,19.87C105.51,20.24 105.2,20.54 104.83,20.54L101.1,20.54C100.73,20.54 100.42,20.24 100.42,19.87L100.42,16.14C100.42,15.76 100.73,15.46 101.1,15.46Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_21\" serif:id=\"2\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M101.1,21.39L104.83,21.39C105.2,21.39 105.51,21.69 105.51,22.07L105.51,25.8C105.51,26.17 105.2,26.47 104.83,26.47L101.1,26.47C100.73,26.47 100.42,26.17 100.42,25.8L100.42,22.07C100.42,21.69 100.73,21.39 101.1,21.39Z\" style=\"fill:rgb(55,52,53);\"/></g><g id=\"_11\" serif:id=\"1\" transform=\"matrix(1,0,0,1,0,-0.5)\"><path d=\"M101.1,27.32L104.83,27.32C105.2,27.32 105.51,27.63 105.51,28L105.51,31.73C105.51,32.1 105.2,32.41 104.83,32.41L101.1,32.41C100.73,32.41 100.42,32.1 100.42,31.73L100.42,28C100.42,27.63 100.73,27.32 101.1,27.32Z\" style=\"fill:rgb(55,52,53);\"/></g></g></g></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:35px 15px 15px 15px !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;margin:30px 12px 12px 12px !important}.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;margin:25px 10px 10px 10px !important}.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}.userpanel::before{content:\"\";position:absolute;bottom:-61px !important;left:0;width:100%;height:60px !important;background:linear-gradient(to bottom, hsl(0, 0%, 15%) 0%, hsl(0, 0%, 15%) 80%, transparent 100%) !important;z-index:-1 !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;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:rgba(0,0,0,0) url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='hsl(50, 80%, 50%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-console.log-circle'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E\") center no-repeat !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:rgba(0,0,0,0) url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='hsl(120, 50%, 50%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check-circle'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E\") center no-repeat !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;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;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:block !important;box-sizing:border-box !important;width:20px !important;height:20px !important;background:rgba(0,0,0,0) url(\"data:image/svg+xml,%3Csvg 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-anchor'%3E%3Ccircle cx='12' cy='5' r='3'%3E%3C/circle%3E%3Cline x1='12' y1='22' x2='12' y2='8'%3E%3C/line%3E%3Cpath d='M5 12H2a10 10 0 0 0 20 0h-3'%3E%3C/path%3E%3C/svg%3E\") center no-repeat !important;z-index:1 !important}.userpanel #pin.active{display:block !important;box-sizing:border-box !important;width:20px !important;height:20px !important;background:rgba(0,0,0,0) url(\"data:image/svg+xml,%3Csvg 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-anchor'%3E%3Ccircle cx='12' cy='5' r='3'%3E%3C/circle%3E%3Cline x1='12' y1='22' x2='12' y2='8'%3E%3C/line%3E%3Cpath d='M5 12H2a10 10 0 0 0 20 0h-3'%3E%3C/path%3E%3C/svg%3E\") center no-repeat !important;z-index:1 !important;border:1px solid hsl(210,5%,40%) !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;justify-content:center !important;align-items:center !important;font:bold 1.5em \"Montserrat\",sans-serif !important;color:gold !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){.userpanel .user-block{order:2 !important;position:relative !important;display:inline-flex !important;justify-content:center !important;right:0 !important;width:100vw !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: 800px){#head.green-back .right:before{content:\"\" !important;width:45px !important;height:45px !important;position:fixed !important;top:88px !important;right:0 !important;color:#689 !important;cursor:pointer !important;z-index:10000 !important;border-radius:3px !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=\"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/25px !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}#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}#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 !important}#content .menu .trimenu li:nth-child(4),#content .content-col .trimenu li:nth-child(4){border-radius:0 5px 5px 0 !important;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}#recent-games-options{display:inline-flex !important;width:105px !important;height:35px !important;justify-content:center !important;align-items:center !important;color:rgba(0,0,0,0) !important;margin-left:0 !important;font-size:0}#recent-games-count-dec,#recent-games-count-inc,#recent-games-count{color:rgba(0,0,0,0) !important;height:35px !important;width:35px !important;display:inline-flex;border:none !important;outline:none !important;transition:background-color .3s !important}#recent-games-count-dec{background-image:url(\"data:image/svg+xml,%3Csvg 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-chevron-left'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E\");background-repeat:no-repeat;background-position:center !important;border-radius:5px 0 0 5px !important;background-color:rgba(200,200,200,.3) !important;border-left:2px solid rgba(200,200,200,.3) !important;border-bottom:2px solid rgba(200,200,200,.3) !important;border-top:2px solid rgba(200,200,200,.3) !important}#recent-games-count-dec:hover{background-color:rgba(200,200,200,.5) !important}#recent-games-count-inc{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(0, 0%, 70%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevrons-right\"><polyline points=\"13 17 18 12 13 7\"></polyline><polyline points=\"6 17 11 12 6 7\"></polyline></svg>');background-repeat:no-repeat;background-position:center !important;border-radius:0 5px 5px 0 !important;background-color:rgba(200,200,200,.3) !important;border-right:2px solid rgba(200,200,200,.3) !important;border-bottom:2px solid rgba(200,200,200,.3) !important;border-top:2px solid rgba(200,200,200,.3) !important}#recent-games-count-inc:hover{background-color:rgba(200,200,200,.5) !important}#recent-games-count{font-family:\"Consolas\",sans-serif !important;color:hsl(210,5%,40%) !important;font-size:19px !important;margin:0 !important;padding:0 5px !important;font-weight:bold !important;justify-content:center !important;align-items:center !important;border-top:2px solid rgba(200,200,200,.5) !important;border-bottom:2px solid rgba(200,200,200,.5) !important}#recent-games-container{background:rgba(0,0,0,0) !important}body .gamelist-create #recent-games-container{margin-top:0 !important;overflow-y:auto !important;height:auto !important;padding-top:15px !important;max-height:20vh !important}#head #recent-games-container{height:200px !important;width:100% !important;position:fixed !important;bottom:0 !important;overflow-y:auto !important}#head #recent-games-container #recent-games{margin-top:10px !important}body .recent-game-buttons{position:absolute !important;top:0 !important;left:-1px !important;right:-1px !important}body .recent-game-handle{left:-1px !important;top:-15px !important;width:51% !important;height:15px !important;background:hsl(210,5%,40%) url(\"https://i.imgur.com/0lVhZRk.png\") no-repeat 50% !important;opacity:.4 !important}body .recent-game-handle:hover{opacity:1 !important}body .recent-game-pin,body .recent-game-delete{margin:0 !important;height:15px !important;width:50% !important;float:unset !important;position:absolute !important;bottom:0 !important}body .recent-game-pin img,body .recent-game-delete img{max-width:unset !important;max-height:unset !important;height:15px !important;width:100% !important;opacity:0 !important;display:block !important;clip:unset !important}body .recent-game-pin{bottom:0 !important;background:hsl(120,50%,50%) url(\"https://i.imgur.com/k5Ih6ut.png\") no-repeat 50% !important;filter:brightness(0.7) !important}body .recent-game-pin:hover{filter:brightness(1) !important}body .recent-game-delete{left:50% !important;top:unset !important;bottom:0 !important;background:#c68 url(\"https://i.imgur.com/B6eH1ag.png\") no-repeat 50% !important;filter:brightness(0.7) !important}body .recent-game-delete:hover{filter:brightness(1) !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 !important;font-size:0 !important;transition:all .15s ease !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,#bb_tools_fast-reply tr{display:inline-flex !important;flex-wrap:wrap !important}#fast-reply-controls img[src*=rte-background],#bb_tools_fast-reply img[src*=rte-background]{background:url(\"https://i.imgur.com/ehrkyDk.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-bold],#bb_tools_fast-reply img[src*=rte-bold]{background:url(\"https://i.imgur.com/9OK8lhQ.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-center],#bb_tools_fast-reply img[src*=rte-center]{background:url(\"https://i.imgur.com/7MKySx7.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-code],#bb_tools_fast-reply img[src*=rte-code]{background:url(\"https://i.imgur.com/8RjyCqp.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-color],#bb_tools_fast-reply img[src*=rte-color]{background:url(\"https://i.imgur.com/rlm02Hi.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-hide],#bb_tools_fast-reply img[src*=rte-hide]{background:url(\"https://i.imgur.com/xDm3rUs.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-html],#bb_tools_fast-reply img[src*=rte-html]{background:url(\"https://i.imgur.com/OgwovGX.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-image],#bb_tools_fast-reply img[src*=rte-image]{background:url(\"https://i.imgur.com/CPXb6fF.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-italic],#bb_tools_fast-reply img[src*=rte-italic]{background:url(\"https://i.imgur.com/5ocDivo.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-left],#bb_tools_fast-reply img[src*=rte-left]{background:url(\"https://i.imgur.com/mhGYxF3.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-link],#bb_tools_fast-reply img[src*=rte-link]{background:url(\"https://i.imgur.com/3EKme2P.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-list_0],#bb_tools_fast-reply img[src*=rte-list_0]{background:url(\"https://i.imgur.com/wrRH3HC.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-list_1],#bb_tools_fast-reply img[src*=rte-list_1]{background:url(\"https://i.imgur.com/OHdzZda.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-quote],#bb_tools_fast-reply img[src*=rte-quote]{background:url(\"https://i.imgur.com/5lXzkq5.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-quotesel],#bb_tools_fast-reply img[src*=rte-quotesel]{background:url(\"https://i.imgur.com/UfiGb5M.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-right],#bb_tools_fast-reply img[src*=rte-right]{background:url(\"https://i.imgur.com/qV4lUmE.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-size],#bb_tools_fast-reply img[src*=rte-size]{background:url(\"https://i.imgur.com/QTu5Xbu.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-strike],#bb_tools_fast-reply img[src*=rte-strike]{background:url(\"https://i.imgur.com/6AyRP37.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-sub],#bb_tools_fast-reply img[src*=rte-sub]{background:url(\"https://i.imgur.com/K1PKT3j.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-sup],#bb_tools_fast-reply img[src*=rte-sup]{background:url(\"https://i.imgur.com/rDf6r46.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-tab],#bb_tools_fast-reply img[src*=rte-tab]{background:url(\"https://i.imgur.com/xuyw8TO.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-underlined],#bb_tools_fast-reply img[src*=rte-underlined]{background:url(\"https://i.imgur.com/vPgSVYU.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[src*=rte-youtube],#bb_tools_fast-reply img[src*=rte-youtube]{background:url(\"https://i.imgur.com/usx9mk9.png\") no-repeat !important;background-position:center !important}#fast-reply-controls img[onclick*=rte-smileTab],#bb_tools_fast-reply img[onclick*=rte-smileTab]{background:url(\"https://i.imgur.com/QKGLj9X.png\") no-repeat !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],#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]{border-radius:5px !important;box-sizing:border-box !important;padding-left:32px !important;width:32px !important;height:32px !important;image-rendering:crisp-edges !important;transition:all .15s !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,#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{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 !important;background-size:18px !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 !important;background-size:18px !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{opacity:.5 !important;color:hsl(0,0%,70%) !important;background:rgba(0,0,0,0) !important;margin:10px !important;position:fixed !important;top:45px !important;right:0px !important;z-index:120 !important;transition:opacity .2s !important;display:flex !important;gap:5px !important;padding-top:unset !important}.pages:hover{opacity:1 !important;transition:opacity .2s !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}.pages .paginator .ctrls i{display:none !important}.pages .paginator .ctrl{margin:0 !important;width:30px !important;height:30px !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;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,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='hsl(0, 0%, 5%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-right'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E\") !important;border-radius:0 3px 3px 0 !important}.pages .paginator .ctrl a:nth-child(2){background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='hsl(0, 0%, 5%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-left'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E\") !important;border-radius:3px 0 0 3px !important}.pages .paginator .ctrl a:hover{background-color:#689 !important;transition:all .1s !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 .l,#popup .r,#popup .t,#popup .b,#popup .tr,#popup .tl,#popup .bl,#popup .br{display:none !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 .r,.popup_message .t,.popup_message .b,.popup_message .tr,.popup_message .tl,.popup_message .bl,.popup_message .br,#drop_message .r,#drop_message .t,#drop_message .b,#drop_message .tr,#drop_message .tl,#drop_message .bl,#drop_message .br{display:none !important}.popup_message textarea,#drop_message textarea{width:100% !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,#drop_message .btn{margin:0 .5em !important;height:30px !important;line-height:15px !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 td.write,#content dl.write{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 td.write #write-block,#content dl.write #write-block{opacity:0 !important;height:100% !important;display:flex !important;flex-direction:column !important;box-sizing:border-box !important;gap:10px !important}#content td.write:hover #write-block,#content td.write:focus-within #write-block,#content dl.write:hover #write-block,#content dl.write:focus-within #write-block{opacity:1 !important}#content td.write:hover,#content td.write:focus,#content td.write:focus-within,#content dl.write:hover,#content dl.write:focus,#content dl.write: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 td.write textarea,#content dl.write 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 td.write p,#content dl.write p{margin:0 !important;padding:0 !important;display:none !important}#content td.write p:has(input),#content dl.write p:has(input){display:flex !important;flex-shrink:0 !important}#content td.write p:has(input) input,#content dl.write p:has(input) input{border:none !important;color:hsl(0,0%,70%) !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}#content td.write p:has(input) input[name=send],#content dl.write 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,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='hsl(0, 0%, 15%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-send'%3E%3Cline x1='22' y1='2' x2='11' y2='13'%3E%3C/line%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2'%3E%3C/polygon%3E%3C/svg%3E\") no-repeat 15px center/24px !important}#content td.write p:has(input) input[name=send]:hover,#content dl.write p:has(input) input[name=send]:hover{background-color:#689 !important}#content td.write p:has(input) input[name=preview],#content dl.write 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%, 15%)\" 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 td.write p:has(input) input[name=preview]:hover,#content dl.write p:has(input) input[name=preview]:hover{background-color:#689 !important}#content td.write .g-recaptcha,#content dl.write .g-recaptcha{position:absolute !important;padding-top:10px !important;bottom:0 !important;left:-2px !important;transform:translateY(100%) !important}#content td.write div[style*=\"#e00\"],#content dl.write div[style*=\"#e00\"]{position:absolute !important;bottom:-20px !important;font-weight:bold !important}body:has(td.write:focus-within) #posts-list{position:absolute !important;left:10px !important;width:calc(60vw - 50px) !important;transition:width .25s ease,left .25s ease !important}body:has(dl.write:focus-within) #profile-block{position:absolute !important;left:10px !important;width:calc(60vw - 50px) !important;transition:width .25s ease,left .25s ease !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 td.write,#content dl.write{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 td.write:hover,#content td.write:focus,#content td.write:focus-within,#content dl.write:hover,#content dl.write:focus,#content dl.write:focus-within{width:100vw !important;height:40vh !important;transform:translateX(0) !important}.g-recaptcha{top:0 !important;transform:translateY(-100%) !important}div[style*=\"#e00\"]{top:-20px !important}body:has(td.write:focus-within) #posts-list{margin-bottom:40vh !important;transition:margin-bottom .25s ease !important;position:static !important;left:auto !important;width:auto !important}body:has(dl.write:focus-within) #profile-block{margin-bottom:40vh !important;transition:margin-bottom .25s ease !important;position:static !important;left:auto !important;width:auto !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%, 15%)\" 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 #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-position:left center !important;background-size:24px !important;padding-left:30px !important}#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,50%,50%) !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 .r,#content #index .secondrow .col3 #top .tl,#content #index .secondrow .col3 #top .tr,#content #index .secondrow .col3 #top .bl,#content #index .secondrow .col3 #top .br{background:none !important;border:none !important;border-radius:0 !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}#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;align-items:center !important;justify-content:center !important;height:45px !important;width:45px !important;padding:0 !important;color:rgba(0,0,0,0) !important;right:0 !important;top:0 !important;background:rgba(200,200,200,.2) !important;transition:background .3s !important}.login-block:hover{background:rgba(200,200,200,.4) !important}.login-block a{cursor:pointer !important;padding-left:unset !important;background:rgba(0,0,0,0) url(\"data:image/svg+xml,%3Csvg 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-key'%3E%3Cpath 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'%3E%3C/path%3E%3C/svg%3E\") no-repeat center center !important;text-decoration:none !important;height:45px !important;position:absolute !important;width:45px !important}.login-block a span{display:none !important}.login-block .error{color:#c68 !important;margin-right:0 !important;position:absolute !important;top:0px !important}#username,#password{color:hsl(0,0%,70%) !important;background:hsl(0,0%,15%) !important;border:none !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 .c{background:hsl(210,5%,20%) !important;padding:0 !important;height:300px !important;width:250px !important;border-radius:5px !important}#login-form .c form{margin-top:45px;padding-right:0 !important;height:300px !important}#login-form dt,#login-form .tl,#login-form .t,#login-form .tr,#login-form .l,#login-form .r,#login-form .bl,#login-form .b,#login-form .br{display:none !important}#login-form dt,#login-form dl,#login-form dd{margin:0 !important;padding:0 !important}#login-form dd,#login-form dl,#login-form input{width:100% !important}#login-form #username,#login-form #password{background-color:#689 !important;height:45px !important;padding:10px !important;color:hsl(0,0%,10%) !important;text-align:center !important}#login-form #username:active,#login-form #username:focus,#login-form #password:active,#login-form #password:focus{background-color:hsl(200,40%,60%) !important;transition:background-color .3s !important}#login-form #username{border-bottom:1px solid #484a4e !important;background-image:url(\"data:image/svg+xml,%3Csvg 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' class='feather feather-user'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E\") !important;background-position:10px !important;background-repeat:no-repeat !important}#login-form #password{margin-bottom:10px !important;background-image:url(\"data:image/svg+xml,%3Csvg 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' class='feather feather-lock'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E\") !important;background-position:10px !important;background-repeat:no-repeat !important}#login-form #login_form_submit{width:200px !important;transform:translate(25px);height:45px !important;border:2px solid #689 !important;border-radius:25px !important;background-color:hsl(0,0%,10%) !important;color:#689 !important;text-transform:uppercase !important;transition:all .15s !important}#login-form #login_form_submit:hover{color:hsl(200,40%,60%) !important;border:2px solid hsl(200,40%,60%) !important}#login-form .close{top:0 !important;right:0 !important;height:45px !important;width:45px !important;background-color:#484a4e !important;background-image:url(\"data:image/svg+xml,%3Csvg 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' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important;transition:background-color .3s !important}#login-form .close:hover{background-color:#626468 !important}#login-form .close ins{display:none !important}#login-form table label{font-weight:lighter !important}#login-form .navigation{display:inline-flex !important;width:100% !important;justify-content:center !important}#login-form .navigation li{margin-bottom:0 !important}#login-form .navigation li a{border-radius:50% !important;background-color:rgba(200,200,200,.3) !important;display:block !important;width:35px !important;height:35px !important;font-size:0 !important;border:2px solid gray;transition:background-color .3s !important}#login-form .navigation li a:hover{background-color:rgba(200,200,200,.5) !important;border:2px solid #d3d3d3}#login-form .navigation li:nth-child(1) a{margin-right:10px !important;background-image:url(\"data:image/svg+xml,%3Csvg 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'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='8.5' cy='7' r='4'%3E%3C/circle%3E%3Cline x1='20' y1='8' x2='20' y2='14'%3E%3C/line%3E%3Cline x1='23' y1='11' x2='17' y2='11'%3E%3C/line%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important}#login-form .navigation li:nth-child(2) a{margin-left:10px !important;background-image:url(\"data:image/svg+xml,%3Csvg 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'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='8.5' cy='7' r='4'%3E%3C/circle%3E%3Cpolyline points='17 11 19 13 23 9'%3E%3C/polyline%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !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}#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}#content .voclist .content-col input[type=submit]{display:none !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,%3Csvg 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' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E\") 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:lighter !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 .user-title{grid-area:title;width:100% !important;display:flex !important;justify-content:center !important}#content #profile-block .user-title .btn_fav{filter:invert(1) !important}#content #profile-block .user-title .remove{color:hsl(200,40%,60%) !important;background:url(\"data:image/svg+xml,%3Csvg 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' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E\") no-repeat left center/contain !important;filter:hue-rotate(150deg) !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}#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;top:0;left:0;width:32px;height:32px;background:hsl(0,0%,5%);mask:url(\"data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27><rect width=%2732%27 height=%2732%27 rx=%274%27 ry=%274%27 fill=%27black%27/></svg>\") no-repeat,linear-gradient(#000 0 0);mask-composite:exclude}#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}#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%, 15%)\" 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%, 15%)\" 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}#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 .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}#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;top:0;left:0;width:32px;height:32px;background:hsl(0,0%,15%);mask:url(\"data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27><rect width=%2732%27 height=%2732%27 rx=%274%27 ry=%274%27 fill=%27black%27/></svg>\") no-repeat,linear-gradient(#000 0 0);mask-composite:exclude}#content #profile-block .user-content dl:not(.write):not(:has(.title)) dd{margin-left:120px !important;background-color:rgba(0,0,0,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}.user-content .comments{display:flex !important;flex-direction:column !important;gap:12px !important}.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}.user-content .comments .comment:hover{border-color:hsl(200,40%,60%) !important;background-color:hsl(0,0%,10%) !important}.user-content .comments .comment dl{margin:0 !important;display:flex !important;gap:12px !important;align-items:flex-start !important}.user-content .comments .comment dl dt{width:60px !important;height:60px !important;flex-shrink:0 !important;margin:0 !important}.user-content .comments .comment dl dt img{width:60px !important;height:60px !important;border-radius:5px !important;object-fit:cover !important}.user-content .comments .comment dl dd{flex:1 !important}.user-content .comments .comment .title{display:flex !important;align-items:center !important;flex-wrap:wrap !important;gap:10px !important;margin-bottom:5px !important}.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}.user-content .comments .comment .title .name:hover{color:hsl(200,40%,60%) !important}.user-content .comments .comment .title .date{margin:0 !important;color:hsl(210,5%,40%) !important;font-size:1em !important}.user-content .comments .comment .text{color:hsl(0,0%,70%) !important;line-height:1.5 !important;font-size:1em !important;margin:0 !important}.user-content .comments .comment .text b{color:hsl(120,50%,50%) !important;font-weight:600 !important}.r .tr,.r .bl,.r .br,.r.tl{margin-bottom:0 !important;background:none !important}.gamelist-create{margin-bottom:0 !important;background:none !important}.gamelist-create .rc{padding:10px 0 !important}.gamelist-create #savedModes{margin-right:10px !important}.gamelist-create form{display:inline-flex;font-size:0;color:hsl(0,0%,70%) !important}.gamelist-create form input#create_game,.gamelist-create form input#delete{color:rgba(0,0,0,0) !important;border:none !important;background-color:rgba(200,200,200,.3) !important;padding:0 !important;display:inline-flex !important;width:35px !important;height:35px !important;border-radius:50% !important;cursor:pointer !important;transition:background-color .3s !important;background-position:center center;background-repeat:no-repeat;margin-right:5px !important}.gamelist-create form input#create_game{background-image:url(\"data:image/svg+xml,%3Csvg 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-plus'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E\")}.gamelist-create form input#create_game:hover{background-color:rgba(134,226,213,.5) !important}.gamelist-create form input#delete{background-image:url(\"data:image/svg+xml,%3Csvg 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-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E\")}.gamelist-create form input#delete:hover{background-color:rgba(240,52,52,.5) !important}.gamelist-create form span input[type=button]{margin-right:5px !important;background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='hsl(0, 0%, 70%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-eye-off'%3E%3Cpath 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'%3E%3C/path%3E%3Cline x1='1' y1='1' x2='23' y2='23'%3E%3C/line%3E%3C/svg%3E\");background-position:center center;background-repeat:no-repeat}#gamelist .tl{display:none !important}#gamelist td.enter{padding:0 !important;margin:0 !important}#gamelist td.enter div.enter{padding:0 !important;margin:0 5px 0 0 !important}#gamelist 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\") no-repeat !important;background-size:contain !important;padding-left:63px !important;filter:brightness(0.8) !important}#gamelist td.enter a:hover{display:block !important;box-sizing:border-box !important;width:63px !important;height:63px !important;padding-left:63px !important}#gamelist 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\") no-repeat !important;background-size:contain !important;padding-left:63px !important}#gamelist 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}#gamelist td.sign{padding:0 4px 0 8px !important}#gamelist .remain span{color:hsl(0,0%,70%) !important;background-position:0 -25px !important}#gamelist .custominfo{color:hsl(0,0%,70%) !important}#gamelist .item td{border-top:none !important}#gamelist #gamelist-active .item td{border:none !important}div#gamelist .name a{border-bottom-style:solid !important}div#gamelist .item td{border-top:none !important}div#gamelist .custominfo{color:hsl(0,0%,70%) !important}#gamelist-active{background:hsl(0,0%,15%) !important;border-top:1px solid hsl(210,5%,40%) !important}#gamelist-active button.hide-btn{background:hsl(0,0%,15%) !important;border:1px solid hsl(210,5%,40%) !important;color:hsl(210,5%,40%) !important}#gamelist-active button.hide-btn:hover{background:hsl(0,0%,10%) !important;border:1px solid #689 !important;color:#689 !important}#gamelist-active button.hide-btn .glyphicon{display:none !important}#gamelist-active.hide-block{background-color:hsl(0,0%,15%) !important;border:none !important;margin:0 !important}#gamelist-active.hide-block h3,#gamelist-active.hide-block h4{color:hsl(210,5%,40%) !important}#gamelist-active.hide-block button{background:hsl(0,0%,15%) !important;color:hsl(210,5%,40%) !important;border:1px solid hsl(210,5%,40%) !important}#gamelist-active.hide-block button:hover{background:hsl(0,0%,10%) !important;color:#689 !important;border:1px solid #689 !important}.recent-game{margin:4px 4px !important;border:1px solid hsl(210,5%,40%) !important;transition:all .2s !important}.recent-game:hover{border:1px solid #689 !important;background:hsl(0,0%,10%) !important;transition:all .2s !important}#recent-games .recent-game-description,#recent-games .recent-game-levels,#recent-games .recent-game-name{color:hsl(0,0%,70%) !important}#gametype-select .gametype-normal,#content .gametype-normal,#popup .gametype-normal{color:hsl(0,0%,70%) !important}#gametype-select a.gametype-normal,#content a.gametype-normal,#popup a.gametype-normal{border-color:hsl(0,0%,70%) !important}#gametype-select .gametype-quote,#content .gametype-quote,#popup .gametype-quote{color:hsl(280,50%,70%) !important}#gametype-select a.gametype-quote,#content a.gametype-quote,#popup a.gametype-quote{border-color:hsl(280,50%,70%) !important}#gametype-select .gametype-sprint,#content .gametype-sprint,#popup .gametype-sprint{color:hsl(5,55%,65%) !important}#gametype-select a.gametype-sprint,#content a.gametype-sprint,#popup a.gametype-sprint{border-color:hsl(5,55%,65%) !important}#gametype-select .gametype-marathon,#content .gametype-marathon,#popup .gametype-marathon{color:hsl(335,90%,70%) !important}#gametype-select a.gametype-marathon,#content a.gametype-marathon,#popup a.gametype-marathon{border-color:hsl(335,90%,70%) !important}#gametype-select .gametype-noerror,#content .gametype-noerror,#popup .gametype-noerror{color:hsl(210,50%,65%) !important}#gametype-select a.gametype-noerror,#content a.gametype-noerror,#popup a.gametype-noerror{border-color:hsl(210,50%,65%) !important}#gametype-select .gametype-noerrorcnt,#content .gametype-noerrorcnt,#popup .gametype-noerrorcnt{color:hsl(210,50%,65%) !important}#gametype-select a.gametype-noerrorcnt,#content a.gametype-noerrorcnt,#popup a.gametype-noerrorcnt{border-color:hsl(210,50%,65%) !important}#gametype-select .gametype-abra,#content .gametype-abra,#popup .gametype-abra{color:hsl(220,25%,65%) !important}#gametype-select a.gametype-abra,#content a.gametype-abra,#popup a.gametype-abra{border-color:hsl(220,25%,65%) !important}#gametype-select .gametype-abra-premium,#content .gametype-abra-premium,#popup .gametype-abra-premium{color:hsl(50,80%,55%) !important}#gametype-select a.gametype-abra-premium,#content a.gametype-abra-premium,#popup a.gametype-abra-premium{border-color:hsl(50,80%,55%) !important}#gametype-select .gametype-digits,#content .gametype-digits,#popup .gametype-digits{color:hsl(180,80%,55%) !important}#gametype-select a.gametype-digits,#content a.gametype-digits,#popup a.gametype-digits{border-color:hsl(180,80%,55%) !important}#gametype-select .gametype-referats,#content .gametype-referats,#popup .gametype-referats{color:hsl(85,40%,55%) !important}#gametype-select a.gametype-referats,#content a.gametype-referats,#popup a.gametype-referats{border-color:hsl(85,40%,55%) !important}#gametype-select .gametype-voc,#content .gametype-voc,#popup .gametype-voc{color:#689 !important}#gametype-select a.gametype-voc,#content a.gametype-voc,#popup a.gametype-voc{border-color:#689 !important}#gametype-select .gametype-chars,#content .gametype-chars,#popup .gametype-chars{color:hsl(35,80%,55%) !important}#gametype-select a.gametype-chars,#content a.gametype-chars,#popup a.gametype-chars{border-color:hsl(35,80%,55%) !important}#gametype-select .gametype-qual,#content .gametype-qual,#popup .gametype-qual{color:#f66 !important}#gametype-select a.gametype-qual,#content a.gametype-qual,#popup a.gametype-qual{border-color:#f66 !important}#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;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\") no-repeat !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\") no-repeat !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\") no-repeat !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\") no-repeat !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\") no-repeat !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\") no-repeat !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\") no-repeat !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\") no-repeat !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\") no-repeat !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\") no-repeat !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\") no-repeat !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:6px !important;left:6px !important;width:100% !important;height:100% !important;background:url(\"data:image/svg+xml,<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" xml:space=\\\"preserve\\\" width=\\\"24px\\\" height=\\\"24px\\\" version=\\\"1.1\\\" style=\\\"shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd\\\" viewBox=\\\"0 0 24 24\\\"><g id=\\\"qualification\\\"><%21-- background circle --><path id=\\\"background\\\" d=\\\"M12 1c6.08,0 11,4.92 11,11 0,6.08 -4.92,11 -11,11 -6.08,0 -11,-4.92 -11,-11 0,-6.08 4.92,-11 11,-11z\\\" fill=\\\"%23695C0E\\\" stroke=\\\"%23CCAA00\\\" stroke-width=\\\"1.2\\\" stroke-miterlimit=\\\"2\\\"/><%21-- award inner circle --><path id=\\\"award-circle\\\" d=\\\"M16.35 9.51c0,-2.42 -1.96,-4.37 -4.38,-4.37 -2.42,0 -4.37,1.95 -4.37,4.37 0,2.42 1.95,4.38 4.37,4.38 2.42,0 4.38,-1.96 4.38,-4.38z\\\" fill=\\\"none\\\" stroke=\\\"%23FFD401\\\" stroke-width=\\\"1.2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"2\\\"/><%21-- award ribbon --><polyline id=\\\"award-line\\\" points=\\\"9.6,13.19 8.85,18.88 11.97,17.01 15.1,18.88 14.34,13.18\\\" fill=\\\"none\\\" stroke=\\\"%23FFD401\\\" stroke-width=\\\"1.2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"2\\\"/></g></svg>\") bottom right no-repeat !important}#create .gametypes tr.active{background:hsl(0,0%,10%) !important}.gametypes tr:hover{background:hsl(0,0%,10%) !important}.gametypes .note{color:hsl(0,0%,70%) !important}.gametypes td{border-bottom:1px solid hsl(210,5%,40%) !important}.gametypes h4{color:#689 !important}#premium_abra input{top:2px !important;left:2px !important}#premium_abra label{vertical-align:middle !important;background:none !important}#premium_abra,#premium_abra a{color:#689 !important}#premium_abra a:hover{color:hsl(200,40%,60%) !important}#create h3{margin:0 5px 15px !important}#create dd{width:525px !important}#create *:not(select){padding:2px !important}#create .buttons{display:flex !important;justify-content:space-between !important;gap:10px !important;margin-top:8px !important}#create .buttons input{transition:background .15s ease-out !important;padding:0 !important;margin:0 !important;width:50% !important;height:50px !important;border-radius:5px !important}#create .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 .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 .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 .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 dd .params{background-color:rgba(0,0,0,0) !important;border:1px solid hsl(210,5%,40%) !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:262px !important;height:87px !important;width:262px !important;background:url(\"https://i.imgur.com/Qg4ztHC.png\") no-repeat !important}#content .play-wrapper .play-overall-table #play-overall #status-block #speedpanel #speed-label,#content .play-wrapper .play-overall-table #play-overall #status-block #speedpanel #errors-label{color:hsl(200,40%,60%) !important}#content .play-wrapper .play-overall-table #play-overall #status-block #speedpanel #speed-label{top:60px !important}#content .play-wrapper .play-overall-table #play-overall #status-block #speedpanel #errors-label{top:35px !important}#content .play-wrapper .play-overall-table #play-overall #status-block #speedpanel #speedpanel-back,#content .play-wrapper .play-overall-table #play-overall #status-block #speedpanel #speedpanel-top,#content .play-wrapper .play-overall-table #play-overall #status-block #speedpanel #speedpanel-arrow{display:none !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}#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 .tl,#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock .tr,#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock .bl,#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock .br{background:none !important}#content .play-wrapper .play-overall-table #play-overall #main-block #typeblock #hiddentext{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(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/45px !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\") no-repeat;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:coral !important;color:hsl(0,0%,5%) !important}#content .play-wrapper .play-overall-table #play-overall #errors_text p.premium_abra_errors a{color:gold !important}#content .play-wrapper .play-overall-table #play-overall #errors_text p.premium_abra_errors a:hover{color:#ccac00 !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:silver !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, 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 !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 .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 .play-wrapper #play-right{display:flex !important;flex-direction:column !important;gap:1em !important;position:absolute !important;margin-left:0 !important;padding:1em !important;left:0 !important;transform:translate(0) !important;transition:opacity 1s ease-in-out,.3s ease-in-out !important}#content .play-wrapper #play-right[style*=\"margin-right: 0\"] #invite{right:1058px !important}#content .play-wrapper #play-right[style*=\"position: absolute\"] #invite,#content .play-wrapper #play-right[style*=\"margin-right: -\"] #invite{right:1363px !important}#content .play-wrapper #play-right>div.play-right-toggle{background:hsl(210,5%,40%) !important;color:hsl(0,0%,10%) !important;transition:all .2s !important;top:325px !important}#content .play-wrapper #play-right>div.play-right-toggle:hover{background:#689 !important}#content .play-wrapper #play-right>div.play-right-toggle .glyphicon{top:0 !important}#content .play-wrapper #play-right #playads{display:none !important}#content .play-wrapper #play-right #params{order:1 !important;width:270px !important;background:hsl(0,0%,15%) !important;border:1px solid hsl(210,5%,40%) !important;color:hsl(0,0%,70%) !important;opacity:.2 !important;transition:opacity .2s !important}#content .play-wrapper #play-right #params:hover{opacity:1 !important;transition:opacity .2s !important}#content .play-wrapper #play-right #params a{text-decoration:underline !important;border-bottom:none !important}#content .play-wrapper #play-right #params .slider{background:hsl(0,0%,10%) !important;border:2px solid hsl(210,5%,40%) !important;border-radius:10px !important;box-sizing:content-box !important}#content .play-wrapper #play-right #params .slider.off{background:hsl(0,0%,15%) !important}#content .play-wrapper #play-right #params .slider .handle{background:hsl(0,0%,70%) !important;border:2px solid hsl(0,0%,70%) !important;border-radius:50% !important;height:14px !important;width:14px !important;margin:1px !important;transition:all .2s !important}#content .play-wrapper #play-right #params .slider .handle:hover{background:hsl(210,5%,40%) !important}#content .play-wrapper #play-right #invite{order:0 !important;width:270px !important;background:hsl(0,0%,15%) !important;border:1px solid hsl(210,5%,40%) !important;color:hsl(0,0%,70%) !important;opacity:.2 !important;transition:opacity .2s !important}#content .play-wrapper #play-right #invite:hover{opacity:1 !important;transition:opacity .2s !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-link{color:#689 !important;border:none !important;border-bottom:1px solid hsl(210,5%,40%) !important;background:none !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 .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 .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 #sort-panel .sort-button{text-align:center !important;width:60px !important;padding-top:20px !important}#content #sort-panel div[style*=\"float: left\"]{display:flex !important;justify-content:center !important;align-items:center !important;width:175px !important;text-align:center !important}#content #sort-panel div[style*=\"float: left\"] label,#content #sort-panel div[style*=\"float: left\"] input{margin:0 !important}#content label[for=autosort]{color:hsl(0,0%,70%) !important}#content #position,#content #nickname,#content #errorscount,#content #errors,#content #rating{color:#689 !important}#content #position:hover,#content #nickname:hover,#content #errorscount:hover,#content #errors:hover,#content #rating:hover{color:hsl(200,40%,60%) !important}#content #spectrumcanvas{background:hsl(0,0%,10%) !important;filter:contrast(2) !important}#content #statistics{width:270px !important;margin-top:10px !important;margin-bottom:0 !important;color:hsl(0,0%,70%) !important;background:hsl(0,0%,15%) !important;border:1px solid hsl(210,5%,40%) !important;opacity:.7 !important;transition:opacity .2s !important}#content #statistics:hover{opacity:1 !important;transition:opacity .2s !important}#content #statistics span{color:#689 !important}#content #complexity-panel{opacity:.7 !important;transition:opacity .2s !important}#content #complexity-panel:hover{opacity:1 !important;transition:opacity .2s !important}#content #complexity-panel label{font-size:10px !important;margin-right:8px !important}#content #complexity-panel #spectrumCanvas{margin:10px 0 10px !important}input#title-input{background:hsl(0,0%,15%) !important;width:100% !important;padding:10px !important}#add-topic #text-controls{position:absolute !important;margin-bottom:100px !important;bottom:0 !important;left:0 !important;right:0 !important;display:block !important}#add-topic #text-controls tbody{display:flex !important;justify-content:center !important}#add-topic dd{margin:10px 0 !important}#add-topic dt{display:none !important}#posts-list .post input[type=button]{color:hsl(0,0%,70%) !important;width:50% !important;height:35px !important;background:#3b3b3b !important;border:1px solid hsl(210,5%,40%) !important;transition:all .1s !important}#posts-list .post input[type=button]:hover{background:hsl(0,0%,10%) !important;color:hsl(0,0%,70%) !important;border:1px solid hsl(0,0%,70%) !important;transition:all .1s !important}#posts-list .post input[type=button][onclick*=submit]{float:left !important}#posts-list .post .post-container{padding-right:100px !important}#posts-list .post .post-container .text{color:hsl(0,0%,70%)}#posts-list .post .post-container .text img:hover{transition:all .2s !important;opacity:1 !important}#posts-list .post th{width:100% !important;padding:10px !important;display:flex !important;justify-content:center !important;border:none !important}#posts-list .post td{border:none !important;border-bottom:none !important}#posts-list .post .post-opts a{border-bottom:unset !important}#posts-list .post .post-opts a[onclick*=edit]{display:inline-flex !important;font-size:0 !important;width:35px !important;height:35px !important;border-radius:50% !important;background-color:rgba(200,200,200,.3) !important;transition:all .15s !important;background-image:url(\"data:image/svg+xml,%3Csvg 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-edit'%3E%3Cpath d='M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'%3E%3C/path%3E%3Cpath d='M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z'%3E%3C/path%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important}#posts-list .post .post-opts a[onclick*=edit]:hover{background-color:rgba(134,226,213,.5) !important}#posts-list .post .post-opts a[onclick*=reply]{display:inline-flex !important;font-size:0 !important;width:35px !important;height:35px !important;border-radius:50% !important;background-color:rgba(200,200,200,.3) !important;transition:all .15s !important;background-image:url(\"data:image/svg+xml,%3Csvg 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-corner-down-left'%3E%3Cpolyline points='9 10 4 15 9 20'%3E%3C/polyline%3E%3Cpath d='M20 4v7a4 4 0 0 1-4 4H4'%3E%3C/path%3E%3C/svg%3E\") !important;background-repeat:no-repeat !important;background-position:center !important}#posts-list .post .post-opts a[onclick*=reply]:hover{background-color:rgba(245,215,110,.5) !important}#posts-list .post-moved th,#posts-list .post-moved td{color:hsl(0,0%,70%) !important;background:none !important}#posts-list .posth{background:rgba(0,0,0,0) !important;border-bottom:1px solid hsl(210,5%,40%) !important}#posts-list .posth.admin{color:#90ee90 !important;background:rgba(0,0,0,0) !important;border-bottom:1px solid #90ee90 !important}#posts-list .posth th,#posts-list .posth td{border:none !important}#posts-list .posth .moved{color:hsl(0,0%,70%) !important}#posts-list table.foot{margin-bottom:80px !important}#posts-list table.foot td.pages{display:none !important}#posts-list a[rel=nofollow]{text-decoration:none !important}#posts-list a[rel=nofollow]:hover{text-decoration:none !important;filter:invert(0.3) !important}#posts-list span[style*=background-color]{background-color:hsl(0,0%,15%) !important}#topics-list .item,#topics-list .even{border:none !important;background:hsl(0,0%,15%) !important}#topics-list .item.even td,#topics-list .even.even td{border:none !important;background:hsl(0,0%,15%) !important}#topics-list .item td,#topics-list .even td{border-bottom:1px solid hsl(210,5%,40%) !important}#topics-list .item td.last-post,#topics-list .even td.last-post{display:inline-flex !important;align-items:center !important;justify-content:space-between !important;width:100% !important;min-height:47px !important}#topics-list .item td.last-post .go,#topics-list .even td.last-post .go{display:inline-flex !important;font-size:0 !important;width:35px !important;height:35px !important;border-radius:50% !important;background-color:rgba(200,200,200,.3) !important;transition:all .15s !important;top:0 !important;margin-left:10px !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(0, 0%, 70%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevrons-right\"><polyline points=\"13 17 18 12 13 7\"></polyline><polyline points=\"6 17 11 12 6 7\"></polyline></svg>') !important;background-repeat:no-repeat !important;background-position:center center !important}#topics-list .item td.last-post .go:hover,#topics-list .even td.last-post .go:hover{background-color:rgba(134,255,249,.5) !important;background-position:10px center !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\" class=\"feather feather-chevrons-right\"><polyline points=\"13 17 18 12 13 7\"></polyline><polyline points=\"6 17 11 12 6 7\"></polyline></svg>') !important}#topics-list .item td.last-post .go img,#topics-list .even td.last-post .go img{height:0 !important}#forums-list .item td{padding:0 !important;height:75px !important;position:relative !important;border:none !important}#forums-list .item td.last-post .go{display:inline-flex !important;font-size:0 !important;width:35px !important;height:35px !important;border-radius:50% !important;background-color:rgba(200,200,200,.3) !important;transition:all .15s !important;position:absolute !important;top:50% !important;right:0 !important;transform:translateY(-50%) !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(0, 0%, 70%)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-chevrons-right\"><polyline points=\"13 17 18 12 13 7\"></polyline><polyline points=\"6 17 11 12 6 7\"></polyline></svg>') !important;background-repeat:no-repeat !important;background-position:center center !important}#forums-list .item td.last-post .go:hover{background-color:rgba(134,255,249,.5) !important;background-position:10px center !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\" class=\"feather feather-chevrons-right\"><polyline points=\"13 17 18 12 13 7\"></polyline><polyline points=\"6 17 11 12 6 7\"></polyline></svg>') !important}#forums-list .item td.last-post .go img{height:0 !important}#forums-list .item td.last-post .title{margin-right:50px !important}#forums-list .item a.short-description{color:#689 !important;text-decoration:none !important;display:block !important;position:absolute !important;left:0 !important;right:0 !important;top:0 !important;bottom:0 !important;padding-left:10px !important;padding-top:5px !important;z-index:1 !important}#forums-list .item a.short-description:hover{color:hsl(200,40%,60%) !important;background-color:rgba(0,0,0,.15) !important}#forums-list .item .long-description{position:absolute !important;color:hsl(0,0%,70%) !important;margin-top:0px !important;margin-left:10px !important}#forums-list .feed-link a{color:#689 !important}#forums-list .feed-link a:hover{color:hsl(200,40%,60%) !important}#profile-block .user-content{margin-top:15px !important}#profile-block .user-content .comments .title a.name:not(:hover){color:#689 !important}.quotemain{background:rgba(200,200,200,.05) !important;color:hsl(30,65%,50%) !important;border:1px solid #4d4d4d !important}.hidemain{margin:15px 0 !important;border-color:hsl(210,5%,40%) !important;background:hsl(0,0%,10%) !important}.hidemain .hidetop{font-size:0 !important;padding-left:0 !important;background:none !important;background-color:hsl(210,5%,40%) !important;height:15px !important;margin:5px !important}.hidemain .hidetop.expanded{font-size:0 !important;padding-left:0 !important;background:none !important;background-color:#c68 !important;height:15px !important;margin:5px !important}body #topic-title-block img[src*=\"/img/pencil\"]{display:inline-block !important;box-sizing:border-box !important;height:16px !important;width:16px !important;padding-left:16px !important;background:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='hsl(200, 40%, 60%)' stroke='transparent' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z'%3E%3C/path%3E%3C/svg%3E\") no-repeat !important}body .codemain{color:#90ee90 !important;border:1px dashed #90ee90 !important;border-left:3px solid #90ee90 !important}#fast-reply-controls td{opacity:.8 !important}.topic-cnt,.post-cnt{color:hsl(0,0%,70%) !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}#chat-fixed-placeholder table{user-select:none !important}#chat-fixed-placeholder .messages p,#chat-fixed-placeholder .userlist a{user-select:text !important}#chat-container .messages-content>div{overflow:hidden !important;margin-bottom:50px !important}#chat-title span.new{background:orange !important;padding:0 !important;display:flex !important;justify-content:center !important;align-items:center !important;position:absolute !important;top:0 !important;left:0 !important;right:0 !important;bottom:0 !important;color:hsl(0,0%,10%) !important;transition:.2s !important}#chat-title table .c{background:hsl(0,0%,10%) !important;color:hsl(0,0%,70%) !important}#chat-title table .c span{padding:0 !important}#chat-title table .c:hover{background:hsl(0,0%,5%) !important}#chat-title table .c.active{background:#689 !important;filter:brightness(0.8) !important;color:hsl(0,0%,10%) !important}#chat-title table .pin,#chat-title table .height-btn{position:absolute !important;right:18px !important;background:rgba(0,0,0,0) !important;transition:filter .15s !important;filter:brightness(0.5) !important;background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='hsl(0, 0%, 70%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-maximize'%3E%3Cpath 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'%3E%3C/path%3E%3C/svg%3E\") !important;background-position:center !important;background-repeat:no-repeat !important}#chat-title table .pin:hover,#chat-title table .height-btn:hover{background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='hsl(0, 0%, 70%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-maximize'%3E%3Cpath 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'%3E%3C/path%3E%3C/svg%3E\") !important;filter:brightness(1.2) !important}#chat-title table .height-btn.height-btn-max{position:absolute !important;right:18px !important;background:rgba(0,0,0,0) !important;transition:filter .15s !important;filter:brightness(0.5) !important;background:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='hsl(0, 0%, 70%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-minimize'%3E%3Cpath d='M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3'%3E%3C/path%3E%3C/svg%3E\") no-repeat center/contain !important}#chat-title table .height-btn.height-btn-max:hover{background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='hsl(0, 0%, 70%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-minimize'%3E%3Cpath d='M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3'%3E%3C/path%3E%3C/svg%3E\") !important;filter:brightness(1.2) !important}#chat-title table .mostright{position:absolute !important;right:0 !important;background-color:rgba(0,0,0,0) !important;filter:brightness(0.5) !important;transition:filter .15s !important;background:url(\"data:image/svg+xml,%3Csvg 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' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E\") no-repeat center/contain !important}#chat-title table .mostright:hover{background-image:url(\"data:image/svg+xml,%3Csvg 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' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E\");filter:brightness(1.2) !important}#chat-title table .dummy{background:hsl(0,0%,10%) !important}#chat-title table .active.mostleft.l,#chat-title table .active.r,#chat-title table .mostleft.l,#chat-title table .active.l,#chat-title table .r,#chat-title table .l{display:none !important}#chat-title table th{padding-right:0 !important}.chat{background:hsl(0,0%,15%) !important;border:1px solid hsl(210,5%,40%) !important}.chat .userlist{background:hsl(0,0%,15%) !important}.chat .userlist .smile-content{margin:12px 0px 0px 0px !important}.chat .userlist ins{display:flex !important;min-height:26px !important;align-items:center !important}.chat .userlist ins.revoked a{text-decoration:none !important;color:#c68 !important}.chat .userlist ins a.info{margin-left:5px !important;display:inline-block !important;width:8px !important;height:8px !important;border-radius:50% !important;background:radial-gradient(ellipse at center, #baf2ba 0%, #2ef459 49%, #26ef80 52%, #1e894b 100%) !important}.chat .userlist ins a.info img{display:block !important;height:8px !important;width:8px !important;opacity:0 !important}.chat .userlist ins.revoked a.info{margin-left:5px !important;display:inline-block !important;width:8px !important;height:8px !important;background:radial-gradient(ellipse at center, #f2baba 0%, #f42e2e 49%, #ef2626 52%, #891e1e 100%) !important;border-radius:50% !important}.chat .userlist ins a.name{text-decoration:none !important;background-size:24px !important;min-height:24px !important;display:inline-flex !important;align-items:center !important;padding-left:30px !important;position:relative !important}.chat .userlist ins a.name:hover{text-decoration:underline !important}.chat .userlist img[src=\"/img/moderator_icon-2.gif\"]{margin-left:5px !important;box-sizing:border-box !important;display:inline-block !important;width:21px !important;padding-left:21px !important;background:url(\"https://i.imgur.com/aW1ZXJc.png\") no-repeat !important;height:28px !important}.chat .userlist a[data-user=\"474104\"]{color:#fff !important}.chat .userlist .smile-groups{background:hsl(0,0%,15%) !important}.chat .userlist .smile-groups-action{font:bold 12px \"Montserrat\",sans-serif !important;color:hsl(0,0%,15%) !important;background-color:#689;border-top-left-radius:unset !important;border-top-right-radius:unset !important;padding:4px 10px !important;border-radius:0 0 4px 4px !important;border:none !important;opacity:.6 !important}.chat .userlist .smile-groups-action.active{color:hsl(0,0%,10%) !important;background-color:hsl(200,40%,60%) !important;opacity:1 !important}.chat .panel-btn{background:hsl(0,0%,15%) !important}.chat .panel-btn:hover{background:hsl(0,0%,10%) !important}.chat .panel-btn i{border:3px solid hsl(30,65%,50%) !important;height:20px !important;border-radius:5px !important;border-radius:3px !important}.chat .messages{background:hsl(0,0%,15%) !important;font-size:14px !important;padding:4px !important}.chat .messages-content{color:hsl(0,0%,70%) !important}.chat .messages-border{background:hsl(0,0%,15%) !important}.chat .messages div{border:none !important}.chat .messages .chat-header{display:none !important}.chat .messages .chat-guest{background-color:hsl(0,0%,15%) !important;color:#565656 !important;border:none !important;font-weight:lighter !important;padding:4px !important}.chat .messages .chat-guest a{display:none !important}.chat .messages .private{color:hsl(30,65%,50%) !important;font-weight:lighter !important;font-size:14px !important;padding:3px !important}.chat .messages .private.room{filter:hue-rotate(20deg) !important;font-size:16px !important}.chat .messages .username{visibility:hidden !important}.chat .messages .username span[data-user]{visibility:visible !important;filter:invert(100%) !important}.chat .messages .time{visibility:hidden !important}.chat .messages .time span{cursor:pointer !important;visibility:visible !important;color:#689 !important}.chat .messages .time .clickable:hover{color:hsl(200,40%,60%) !important;text-decoration:none !important}.chat .messages .time[style*=\"background-color: yellow\"]{background:rgba(0,0,0,0) !important}.chat .messages .time[style*=\"background-color: yellow\"] .clickable{visibility:visible;color:#689 !important}.chat .messages table tr{display:flex !important;border-top:1px solid hsl(210,5%,40%) !important}.chat .messages table td:nth-child(2){width:35px !important;height:35px !important;display:inline-flex !important}.chat .messages table td:nth-child(2):after{position:relative !important;left:-26px !important;z-index:0 !important;content:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='hsl(0, 0%, 15%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-send'%3E%3Cline x1='22' y1='2' x2='11' y2='13'%3E%3C/line%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2'%3E%3C/polygon%3E%3C/svg%3E\");font:26px Consolas !important;color:#fff !important;display:flex !important;align-items:center !important}.chat .messages table td:nth-child(3),.chat .messages table td:nth-child(4),.chat .messages table td:nth-child(5){display:inline-flex !important;flex-direction:row-reverse !important;height:35px !important;background-color:#3b3b3b !important}.chat .messages table td div:nth-child(1){width:0 !important;height:0 !important}.chat .messages table td .chat-opt-btn{display:flex !important;justify-content:center !important;align-items:center !important;width:35px !important;height:35px !important;margin:0 !important;padding:0 !important;background:#3b3b3b !important;border:none !important}.chat .messages table td .chat-opt-btn:hover,.chat .messages table td .chat-opt-btn.active{background:#4b4b4b !important;border:none !important}.chat .messages table td .chat-opt-btn img[src=\"/img/smilies/smile.gif\"]{box-sizing:border-box !important;padding-left:20px !important;height:20px !important;width:20px !important;background:url(\"data:image/svg+xml,%3Csvg 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-meh'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='8' y1='15' x2='16' y2='15'%3E%3C/line%3E%3Cline x1='9' y1='9' x2='9.01' y2='9'%3E%3C/line%3E%3Cline x1='15' y1='9' x2='15.01' y2='9'%3E%3C/line%3E%3C/svg%3E\") 2px 2px no-repeat !important}.chat .messages table td .chat-opt-btn.active img[src=\"/img/smilies/smile.gif\"]{box-sizing:border-box !important;padding-left:20px !important;height:20px !important;width:20px !important;background:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='hsl(50, 80%, 50%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-smile'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='M8 14s1.5 2 4 2 4-2 4-2'%3E%3C/path%3E%3Cline x1='9' y1='9' x2='9.01' y2='9'%3E%3C/line%3E%3Cline x1='15' y1='9' x2='15.01' y2='9'%3E%3C/line%3E%3C/svg%3E\") 2px 2px no-repeat !important}.chat .messages table td img[src*=exclamation]{box-sizing:border-box !important;padding-left:35px !important;margin-top:8px !important;width:35px !important;background:url(\"https://i.imgur.com/bUkrOi5.png\") no-repeat !important;position:relative !important;left:7px !important}.chat .messages table input.send{display:block !important;color:rgba(0,0,0,0) !important;background:rgba(128,128,128,.19) !important;border:none !important;width:35px !important;height:35px !important;margin:0 !important;padding:0 !important;z-index:1 !important}.chat .messages table input.send:hover{background:rgba(128,128,128,.39) !important}.chat .messages table input.text{border:none !important;background:hsl(0,0%,15%) !important;font:14px Tahoma !important;color:hsl(0,0%,70%);line-height:25px !important}.chat .messages table input[value=BBCode]{color:hsl(0,0%,70%) !important;background:#3b3b3b !important;border:none !important}.chat .messages table input[value=BBCode]:hover{color:hsl(0,0%,70%) !important;background:#4b4b4b !important;border:none !important}.chat .messages img[src=\"/img/filter.png\"]{box-sizing:border-box !important;padding-left:20px !important;height:20px !important;width:20px !important;background:url(\"data:image/svg+xml,%3Csvg 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-filter'%3E%3Cpolygon points='22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3'%3E%3C/polygon%3E%3C/svg%3E\") 2px 2px no-repeat !important;top:0 !important;left:0 !important}.chat .messages .active img[src=\"/img/filter.png\"]{box-sizing:border-box !important;padding-left:20px !important;height:20px !important;width:20px !important;background:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='hsl(120, 50%, 50%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-filter'%3E%3Cpolygon points='22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3'%3E%3C/polygon%3E%3C/svg%3E\") 2px 2px no-repeat !important;top:0 !important;left:0 !important}.chat .messages .active img[src*=exclamation]{box-sizing:border-box !important;padding-left:20px !important;height:20px !important;width:20px !important;background:url(\"https://i.imgur.com/wh9L78a.png\") no-repeat !important}.system-message{color:#f08080 !important;font-size:14px !important;background:hsl(0,0%,10%) !important;border:1px solid rgba(240,128,128,.4) !important;padding:6px !important;border-radius:4px !important}p:has(.system-message){margin:12px 0 !important}code{color:#c68 !important;filter:hue-rotate(120deg) !important;font-size:14px !important;background:hsl(0,0%,10%) !important;border:1px solid rgba(225,20,0,.5) !important;padding:0 10px !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:450px !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}#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-prize{background:url(\"data:image/svg+xml,%3Csvg width=%27800px%27 height=%27800px%27 viewBox=%270 0 120 120%27 version=%271.1%27 xml:space=%27preserve%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23FFC54D;%7D .st1%7Bfill:%237A9FFF;%7D .st2%7Bfill:%23EDB248;%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3Cpath class=%27st0%27 d=%27M74.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%27/%3E%3Cpath class=%27st0%27 d=%27M75.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%27/%3E%3Cpath class=%27st0%27 d=%27M48.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%27/%3E%3C/g%3E%3Cg%3E%3Cpolygon class=%27st1%27 points=%2781.3,30.1 81.3,93.1 88.4,87.1 95.5,93.1 95.5,30.1 %27/%3E%3Cpolygon class=%27st1%27 points=%2724.4,93.1 31.5,87.1 38.6,93.1 38.6,30.1 24.4,30.1 %27/%3E%3C/g%3E%3Cpath class=%27st0%27 d=%27M60,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%27/%3E%3Cpath class=%27st2%27 d=%27M60.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%27/%3E%3C/g%3E%3C/svg%3E\") no-repeat center/cover !important;width:40px !important;height:40px !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}}@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(200,20%,80%) !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(200,20%,80%) !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=\\\"lightblue\\\" 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 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(0,0%,30%) !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:hsl(280,50%,30%) !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(5,55%,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(335,90%,30%) !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:hsl(210,50%,25%) !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:hsl(210,50%,25%) !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(220,25%,25%) !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,80%,15%) !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(180,80%,15%) !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(85,40%,15%) !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(200,20%,10%) !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(35,80%,15%) !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,50%,50%) !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 !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{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: 1075px){#chat-container{left:0 !important;right:0 !important}}@media only screen and (max-width: 840px){.chat .messages .time[style*=\"background-color: yellow\"]{width:50% !important;margin-left:25% !important;margin-right:25% !important}.chat .messages p,.chat .messages .time,.chat .messages .username,.chat .messages .room.private{width:100% !important;text-align:center !important;display:block !important}.chat .messages .time{margin-top:10px !important}}@media only screen and (max-width: 1300px){#play-right{transform:translate(-90%) !important;opacity:0 !important}#play-right:hover{transform:translate(0) !important;opacity:1 !important}}@media only screen and (max-width: 750px){#speedpanel-canvas,#speed-label,#errors-label{display:none !important}#status table{display:flex !important;justify-content:center !important}#status table tr:nth-child(1){width:100% !important}.gameblock,#typeblock{width:90vw !important}#inputtext{width:100% !important}#errors_tab{float:left !important;width:50% !important;padding:5px !important}#errorwork{float:right !important;width:50% !important;padding:5px !important;text-align:center !important}}@media only screen and (max-width: 1075px){#play-right{display:none !important}.minwidth_container{height:0 !important}body .play-wrapper{display:flex !important;justify-content:center !important;margin:25px 0 0 0 !important}body .play-overall-table{margin:0 !important}}@media only screen and (max-width: 750px){.player{width:90vw !important;overflow:hidden !important}.player .rating{font-size:12px !important;margin-right:8px !important}.player .rating .delresult{left:75px !important;margin:0 !important}.player .rating .stats{left:115px !important}}@media only screen and (max-width: 700px){#gametype-select{top:100px !important;left:0 !important;height:300px !important}}@media only screen and (max-width: 1300px){.minwidth,.minwidth_holyhack,.minwidth_container{width:100% !important;max-width:100% !important;min-width:100% !important}}#head .minwidth_holyhack{display:flex;justify-content:center !important}#head .minwidth_holyhack .minwidth_container{width:1300px !important}#content{display:flex !important;justify-content:center !important;padding:0 !important;margin-top:50px !important}#content .minwidth_holyhack,#content .minwidth_container{width:1300px;min-width:1300px;max-width:1300px}@media(max-width: 1000px){#content{margin-top:90px !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(220,25%,65%) !important}#BBtools_color option[value=\"698725\"]{color:hsl(85,40%,55%) !important}#BBtools_color option[value=\"4692AA\"]{color:hsl(210,50%,65%) !important}#BBtools_color option[value=D43E68]{color:hsl(335,90%,70%) !important}#BBtools_color option[value=B55900]{color:hsl(35,80%,55%) !important}#BBtools_color option[value=\"833F3A\"]{color:hsl(5,55%,65%) !important}#BBtools_color option[value=\"524CA7\"]{color:#689 !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,%3Csvg 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' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E\") no-repeat center/16px !important}#table_smiles table tr .tl,#table_smiles table tr .t,#table_smiles table tr .tr,#table_smiles table tr .l,#table_smiles table tr .r,#table_smiles table tr .bl,#table_smiles table tr .b,#table_smiles table tr .br{display:none !important}#table_smiles table tr .c{background:rgba(0,0,0,0) !important;display:inline-flex !important;flex-wrap:wrap !important;gap:5px !important}\n"; function initializeApp() { // Call the functions directly loadDarkTheme(cssContent); applyAvatarBiggener(); addViewportMeta(); } // 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或关注我们的公众号极客氢云获取最新地址