diff --git a/CHANGELOG.md b/CHANGELOG.md index d769df3..63ea283 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,25 @@ # Changelog +## 1.0.1 - Initiative first ! +- Added initiative system : + - Now use the score rule (the real one if you prefer) + - Added global modifiers for Characters, Adversary and Minons in the combat tracker : Confrontation types, Prepared + - Added sheet modifiers for Characters and Adversary: Prepared + - Initiative buttons in character sheet now display the DicePicker and do the initiative roll +- Spanish real translation by Alejabar (thanks !) +- Added a GM Dialog Tool for setting global difficulty (TN) value / hidden (with DicePicker live refresh) +- Compendium now display Ring and Rank if any in list view + ## 1.0.0 - First public release - Removed the 0ds if no skill point - Added initiative roll (only tactics for the moment) - Change color of keikogi and add on compendium - Machine translation for ES - Update Translation for 1.0.0 Release -- 20Q added step 7 and 17 no point rule +- 20Q added step 7 and 17 no point rule - Add price icon - Set vigilance to 1 if compromised -- Seamless update for 20Q (deleted refresh button) +- Seamless update for 20Q (deleted refresh button) - Update translation for npc + fix h1 - Update compendium : Remove accent on uppercase 1st letter @@ -43,7 +53,7 @@ - Added babele french translation into system - Removed DicePiker bulk macro as it was unnecessary now - Fix for Q13: "skill and disadv" OR "adv" -- Added some text for 20Q 2dn dice +- Added some text for 20Q 2dn dice - Stop some missing propagation - Fix adv tooltip - Fix 20Q wrong var for summary diff --git a/system/lang/en-en.json b/system/lang/en-en.json index c5f7bc3..b5840a6 100644 --- a/system/lang/en-en.json +++ b/system/lang/en-en.json @@ -283,7 +283,11 @@ "intrigue": "Intrigue", "duel": "Duel", "skirmish": "Skirmish", - "mass_battle": "Mass Battle" + "mass_battle": "Mass Battle", + "prepared_true": "Prepared", + "prepared_false": "Surprised", + "prepared_null": "Defined in the character sheet (default)", + "already_set": "Your initiative has already been drawn" } }, "advancements": { @@ -299,11 +303,10 @@ "curriculum": "In curriculum", "curriculum_validate": "Complete this rank" }, - "npc": { - "types": { - "adversary": "Adversary", - "minion": "Minion" - } + "character_types": { + "character": "Player Character", + "adversary": "Adversary", + "minion": "Minion" }, "twenty_questions": { "title": "Twenty questions", diff --git a/system/lang/es-es.json b/system/lang/es-es.json index bbd7b8c..7fac393 100644 --- a/system/lang/es-es.json +++ b/system/lang/es-es.json @@ -283,7 +283,11 @@ "intrigue": "Intriga", "duel": "Duelo", "skirmish": "Escaramuza", - "mass_battle": "Batalla a gran escala" + "mass_battle": "Batalla a gran escala", + "prepared_true": "Prepared", + "prepared_false": "Surprised", + "prepared_null": "Defined in the character sheet (default)", + "already_set": "Your initiative has already been drawn" } }, "advancements": { @@ -299,11 +303,10 @@ "curriculum": "En programa de estudio", "curriculum_validate": "Completar este rango" }, - "npc": { - "types": { - "adversary": "Adversario", - "minion": "Esbirro" - } + "character_types": { + "character": "Personaje jugador", + "adversary": "Adversario", + "minion": "Esbirro" }, "twenty_questions": { "title": "Veinte preguntas", diff --git a/system/lang/fr-fr.json b/system/lang/fr-fr.json index 8798c42..81a4571 100644 --- a/system/lang/fr-fr.json +++ b/system/lang/fr-fr.json @@ -283,7 +283,11 @@ "intrigue": "Intrigue", "duel": "Duel", "skirmish": "Escarmouche", - "mass_battle": "Bataille rangée" + "mass_battle": "Bataille rangée", + "prepared_true": "Prêt(e)", + "prepared_false": "Surpris(e)", + "prepared_null": "Défini par la fiche de personnage (défaut)", + "already_set": "Votre initiative a déjà été tirée" } }, "advancements": { @@ -299,11 +303,10 @@ "curriculum": "Inclus dans le cursus", "curriculum_validate": "Valider la progression" }, - "npc": { - "types": { - "adversary": "Antagoniste", - "minion": "Sous-fifre" - } + "character_types": { + "character": "Personnage Joueur", + "adversary": "Antagoniste", + "minion": "Sous-fifre" }, "twenty_questions": { "title": "Le jeu des Vingt questions", diff --git a/system/scripts/actor.js b/system/scripts/actor.js index 438253c..a61f581 100644 --- a/system/scripts/actor.js +++ b/system/scripts/actor.js @@ -96,6 +96,12 @@ export class ActorL5r5e extends Actor { if (data.void_points.value > data.void_points.max) { data.void_points.value = data.void_points.max; } + + // *** Migration stuff *** + // TODO remove in patch 1.1+ + if (data.prepared === undefined) { + data.prepared = true; + } } } } diff --git a/system/scripts/actors/base-sheet.js b/system/scripts/actors/base-sheet.js index 634c007..5221e91 100644 --- a/system/scripts/actors/base-sheet.js +++ b/system/scripts/actors/base-sheet.js @@ -175,6 +175,7 @@ export class BaseSheetL5r5e extends ActorSheet { new game.l5r5e.DicePickerDialog({ skillId: li.data("skill") || null, skillCatId: li.data("skillcat") || null, + isInitiativeRoll: li.data("initiative") || false, actor: this.actor, }).render(true); }); @@ -186,6 +187,16 @@ export class BaseSheetL5r5e extends ActorSheet { event.target.select(); }); + // Prepared (Initiative) + html.find(".prepared-control").on("click", (event) => { + event.preventDefault(); + event.stopPropagation(); + const preparedId = $(event.currentTarget).data("id"); + if (["adversary", "character"].includes(preparedId)) { + this._switchPrepared(); + } + }); + // *** Items : add, edit, delete *** html.find(".item-add").on("click", (event) => { event.preventDefault(); @@ -204,6 +215,20 @@ export class BaseSheetL5r5e extends ActorSheet { }); } + /** + * Switch the state "prepared" (initiative) + * @private + */ + _switchPrepared() { + this.actor.data.data.prepared = !this.actor.data.data.prepared; + this.actor.update({ + data: { + prepared: this.actor.data.data.prepared, + }, + }); + this.render(false); + } + /** * Add a generic item with sub type * @private diff --git a/system/scripts/actors/npc-sheet.js b/system/scripts/actors/npc-sheet.js index 2605e52..a02ffa3 100644 --- a/system/scripts/actors/npc-sheet.js +++ b/system/scripts/actors/npc-sheet.js @@ -21,7 +21,7 @@ export class NpcSheetL5r5e extends BaseSheetL5r5e { sheetData.data.types = NpcSheetL5r5e.types.map((e) => ({ id: e, - label: game.i18n.localize("l5r5e.npc.types." + e), + label: game.i18n.localize("l5r5e.character_types." + e), })); return sheetData; diff --git a/system/scripts/combat.js b/system/scripts/combat.js index b84e61f..cc36158 100644 --- a/system/scripts/combat.js +++ b/system/scripts/combat.js @@ -22,57 +22,90 @@ export class CombatL5r5e extends Combat { ids = [ids]; } - // Make combatants array - const combatants = []; - ids.forEach((combatantId) => { - const combatant = game.combat.combatants.find((c) => c._id === combatantId); - if (combatant && combatant.actor) { - combatants.push(combatant); - } - }); + // Get global modifiers + const cfg = { + difficulty: game.settings.get("l5r5e", "initiative.difficulty.value"), + difficultyHidden: game.settings.get("l5r5e", "initiative.difficulty.hidden"), + prepared: { + character: game.settings.get("l5r5e", "initiative.prepared.character"), + adversary: game.settings.get("l5r5e", "initiative.prepared.adversary"), + minion: game.settings.get("l5r5e", "initiative.prepared.minion"), + }, + }; - // Get modifiers - const difficulty = game.settings.get("l5r5e", "initiative.difficulty.value"); - const difficultyHidden = game.settings.get("l5r5e", "initiative.difficulty.hidden"); - const skillId = CONFIG.l5r5e.initiativeSkills[game.settings.get("l5r5e", "initiative.encounter")]; + // SkillId from DicePicker or global + const skillId = messageOptions.skillId + ? messageOptions.skillId + : CONFIG.l5r5e.initiativeSkills[game.settings.get("l5r5e", "initiative.encounter")]; const skillCat = CONFIG.l5r5e.skills.get(skillId); // Get score for each combatant const updatedCombatants = []; - combatants.forEach((combatant) => { + ids.forEach((combatantId) => { + const combatant = game.combat.combatants.find((c) => c._id === combatantId); + if (!combatant || !combatant.actor) { + return; + } + + // shortcut to data const data = combatant.actor.data.data; // A character’s initiative value is based on their state of preparedness when the conflict began. // If the character was ready for the conflict, their base initiative value is their focus attribute. // If the character was unprepared (such as when surprised), their base initiative value is their vigilance attribute. - const isPrepared = true; // TODO in actor ? (pc and npc) - let initiative = isPrepared ? data.focus : data.vigilance; + let initiative = 0; - // PC and Adversary - // (minion NPCs can generate initiative value without a check, using their focus or vigilance attribute) - if (combatant.actor.data.type !== "npc" || combatant.actor.data.data.type === "minion") { - const formula = [`${data.rings[data.stance]}dr`]; - const skillValue = - combatant.actor.data.type === "npc" ? data.skills[skillCat] : data.skills[skillCat][skillId]; - if (skillValue > 0) { - formula.push(`${skillValue}ds`); + if (combatant.actor.data.type === "npc" && combatant.actor.data.data.type === "minion") { + // Minion NPCs can generate initiative value without a check, using their focus or vigilance attribute + initiative = cfg.prepared.minion ? data.focus : data.vigilance; + } else { + // PC and Adversary + const isPc = combatant.actor.data.type === "character"; + + // prepared is a boolean or if null we get the info in the actor sheet + let isPrepared = isPc ? cfg.prepared.character : cfg.prepared.adversary; + if (isPrepared === "null") { + isPrepared = data.prepared; + } + initiative = isPrepared ? data.focus : data.vigilance; + + // Roll formula + if (!formula) { + const createFormula = [`${data.rings[data.stance]}dr`]; + const skillValue = isPc ? data.skills[skillCat][skillId] : data.skills[skillCat]; + if (skillValue > 0) { + createFormula.push(`${skillValue}ds`); + } + formula = createFormula.join("+"); } - const roll = new game.l5r5e.RollL5r5e(formula.join("+")); - + const roll = new game.l5r5e.RollL5r5e(formula); roll.actor = combatant.actor; roll.l5r5e.stance = data.stance; roll.l5r5e.skillId = skillId; - roll.l5r5e.summary.difficulty = difficulty; - roll.l5r5e.summary.difficultyHidden = difficultyHidden; + roll.l5r5e.skillCatId = skillCat; + roll.l5r5e.summary.difficulty = + messageOptions.difficulty !== undefined ? messageOptions.difficulty : cfg.difficulty; + roll.l5r5e.summary.difficultyHidden = + messageOptions.difficultyHidden !== undefined + ? messageOptions.difficultyHidden + : cfg.difficultyHidden; + roll.l5r5e.summary.voidPointUsed = !!messageOptions.useVoidPoint; roll.roll(); - roll.toMessage({ flavor: game.i18n.localize("l5r5e.chatdices.initiative_roll") }); + roll.toMessage({ + flavor: + game.i18n.localize("l5r5e.chatdices.initiative_roll") + + " (" + + game.i18n.localize(`l5r5e.conflict.initiative.prepared_${isPrepared}`) + + ")", + }); // if the character succeeded on their Initiative check, they add 1 to their base initiative value, // plus an additional amount equal to their bonus successes. - if (roll.l5r5e.summary.success >= difficulty) { - initiative = initiative + 1 + Math.max(roll.l5r5e.summary.success - difficulty, 0); + if (roll.l5r5e.summary.success >= roll.l5r5e.summary.difficulty) { + initiative = + initiative + 1 + Math.max(roll.l5r5e.summary.success - roll.l5r5e.summary.difficulty, 0); } } diff --git a/system/scripts/dice/dice-picker-dialog.js b/system/scripts/dice/dice-picker-dialog.js index 3d8d003..a9b1b59 100644 --- a/system/scripts/dice/dice-picker-dialog.js +++ b/system/scripts/dice/dice-picker-dialog.js @@ -5,6 +5,8 @@ export class DicePickerDialog extends FormApplication { /** * Current Actor + * @type {Actor} + * @private */ _actor = null; @@ -29,6 +31,7 @@ export class DicePickerDialog extends FormApplication { add_void_point: true, }, useVoidPoint: false, + isInitiativeRoll: false, }; /** @@ -84,8 +87,9 @@ export class DicePickerDialog extends FormApplication { * skillCatId string (artisan) * difficulty number (0-9) * difficultyHidden boolean + * isInitiativeRoll boolean * - * @param options actor, actorId, ringId, actorName, skillId, skillCatId, difficulty, difficultyHidden + * @param options actor, actorId, ringId, actorName, skillId, skillCatId, difficulty, difficultyHidden, isInitiativeRoll */ constructor(options = {}) { super({}, options); @@ -104,33 +108,38 @@ export class DicePickerDialog extends FormApplication { }); // Ring - if (options?.ringId) { + if (options.ringId) { this.ringId = options.ringId; } // Skill / SkillCategory - if (options?.skillId) { + if (options.skillId) { this.skillId = options.skillId; } // SkillCategory skillCatId - if (options?.skillCatId) { + if (options.skillCatId) { this.skillCatId = options.skillCatId; } // Difficulty - if (options?.difficulty) { + if (options.difficulty) { this.difficulty = options.difficulty; } else { this.difficulty = game.settings.get("l5r5e", "initiative.difficulty.value"); } - // difficultyHidden - if (options?.difficultyHidden) { + // DifficultyHidden + if (options.difficultyHidden) { this.difficultyHidden = options.difficultyHidden; } else { this.difficultyHidden = game.settings.get("l5r5e", "initiative.difficulty.hidden"); } + + // InitiativeRoll + if (options.isInitiativeRoll) { + this.object.isInitiativeRoll = !!options.isInitiativeRoll; + } } /** @@ -355,12 +364,13 @@ export class DicePickerDialog extends FormApplication { return false; } - let formula = []; - if (this.object.ring.value > 0) { - formula.push(`${this.object.ring.value}dr`); - } - if (this.object.skill.value > 0) { - formula.push(`${this.object.skill.value}ds`); + // If initiative roll, check if player already have + if (this.object.isInitiativeRoll) { + const combatant = game.combat.combatants.find((c) => c.actor._id === this._actor._id && c.initiative > 0); + if (combatant) { + ui.notifications.error(game.i18n.localize("l5r5e.conflict.initiative.already_set")); + return this.close(); + } } // Update Actor @@ -381,24 +391,50 @@ export class DicePickerDialog extends FormApplication { } // Update actor - this._actor.update({ + await this._actor.update({ data: diffObject(this._actor.data.data, actorData), }); } - // Let's roll ! - const roll = await new game.l5r5e.RollL5r5e(formula.join("+")); + // Build the formula + let formula = []; + if (this.object.ring.value > 0) { + formula.push(`${this.object.ring.value}dr`); + } + if (this.object.skill.value > 0) { + formula.push(`${this.object.skill.value}ds`); + } - roll.actor = this._actor; - roll.l5r5e.stance = this.object.ring.id; - roll.l5r5e.skillId = this.object.skill.id; - roll.l5r5e.skillCatId = this.object.skill.cat; - roll.l5r5e.summary.difficulty = this.object.difficulty.value; - roll.l5r5e.summary.difficultyHidden = this.object.difficulty.hidden; - roll.l5r5e.summary.voidPointUsed = this.object.useVoidPoint; + if (this.object.isInitiativeRoll) { + // Initiative roll + this._actor.rollInitiative({ + initiativeOptions: { + formula: formula.join("+"), + // updateTurn: true, + messageOptions: { + skillId: this.object.skill.id, + difficulty: this.object.difficulty.value, + difficultyHidden: this.object.difficulty.hidden, + useVoidPoint: this.object.useVoidPoint, + }, + }, + }); + } else { + // Regular roll, so let's roll ! + const roll = await new game.l5r5e.RollL5r5e(formula.join("+")); + + roll.actor = this._actor; + roll.l5r5e.stance = this.object.ring.id; + roll.l5r5e.skillId = this.object.skill.id; + roll.l5r5e.skillCatId = this.object.skill.cat; + roll.l5r5e.summary.difficulty = this.object.difficulty.value; + roll.l5r5e.summary.difficultyHidden = this.object.difficulty.hidden; + roll.l5r5e.summary.voidPointUsed = this.object.useVoidPoint; + + await roll.roll(); + await roll.toMessage(); + } - await roll.roll(); - await roll.toMessage(); return this.close(); } diff --git a/system/scripts/dice/gm-tools-dialog.js b/system/scripts/dice/gm-tools-dialog.js index 05319c7..8294d41 100644 --- a/system/scripts/dice/gm-tools-dialog.js +++ b/system/scripts/dice/gm-tools-dialog.js @@ -109,7 +109,7 @@ export class GmToolsDialog extends FormApplication { break; case 3: // right clic - minus 1 - this.object.difficulty = Math.max(1, this.object.difficulty - 1); + this.object.difficulty = Math.max(0, this.object.difficulty - 1); break; } game.settings.set("l5r5e", "initiative.difficulty.value", this.object.difficulty).then(() => this.submit()); diff --git a/system/scripts/hooks.js b/system/scripts/hooks.js index b94a9c1..5549f63 100644 --- a/system/scripts/hooks.js +++ b/system/scripts/hooks.js @@ -61,63 +61,80 @@ export default class HooksL5r5e { * Combat tracker */ static async renderCombatTracker(app, html, data) { - // TODO do this in partial - let bar = ""; + // Display Combat bar (only for GMs) + await this._gmCombatBar(app, html, data); + } - // *** Encounter Type *** - const encounterIcons = { - intrigue: "i_courtier", - duel: "fas fa-tint", // fa-tint / fa-blind - skirmish: "i_bushi", - mass_battle: "fa fa-users", - }; - const encounterType = game.settings.get("l5r5e", "initiative.encounter"); - Object.entries(CONFIG.l5r5e.initiativeSkills).forEach(([id, skill]) => { - bar = - bar + - `` + - `` + - ``; - }); - - // *** Prepared *** - // TODO - // const encounterType = game.settings.get("l5r5e", "initiative.prepared"); - bar = - bar + - `` + - `` + - ``; - - const elmt = html.find("#l5r5e_encounter"); - if (elmt.length > 0) { - elmt.html(bar); - } else { - html.find("#combat-round").append(``); + /** + * Display a GM bar for Combat/Initiative + * @private + */ + static async _gmCombatBar(app, html, data) { + // Only for GMs + if (!game.user.isGM) { + return; } - // Buttons Listener + // *** Conf *** + const encounterTypeList = Object.keys(CONFIG.l5r5e.initiativeSkills); + const prepared = { + character: game.settings.get("l5r5e", "initiative.prepared.character"), + adversary: game.settings.get("l5r5e", "initiative.prepared.adversary"), + minion: game.settings.get("l5r5e", "initiative.prepared.minion"), + }; + + // *** Template *** + const tpl = await renderTemplate(`${CONFIG.l5r5e.paths.templates}gm/combat-tracker-bar.html`, { + encounterType: game.settings.get("l5r5e", "initiative.encounter"), + encounterTypeList, + prepared, + }); + + // Add/replace in bar + const elmt = html.find("#l5r5e_gm_combat_tracker_bar"); + if (elmt.length > 0) { + elmt.replaceWith(tpl); + } else { + html.find("#combat-round").append(tpl); + } + + // Buttons Listeners + // TODO event for multiple GM html.find(".encounter-control").on("click", (event) => { event.preventDefault(); event.stopPropagation(); const encounter = $(event.currentTarget).data("id"); + if (!encounterTypeList.includes(encounter)) { + return; + } game.settings .set("l5r5e", "initiative.encounter", encounter) - .then(() => HooksL5r5e.renderCombatTracker(app, html, data)); + .then(() => HooksL5r5e._gmCombatBar(app, html, data)); }); - // html.find(".prepared-control").on("click", (event) => { - // event.preventDefault(); - // event.stopPropagation(); - // let prepared = $(event.currentTarget).data('id'); - // // if same, unset it - // if (prepared === encounterType) { - // prepared = ""; - // } - // game.settings.set("l5r5e", "initiative.prepared", prepared).then(() => HooksL5r5e.renderCombatTracker(app, html, data)); - // }); + html.find(".prepared-control").on("click", (event) => { + event.preventDefault(); + event.stopPropagation(); + let preparedId = $(event.currentTarget).data("id"); + if (!Object.hasOwnProperty.call(prepared, preparedId)) { + return; + } + let value = prepared[preparedId]; + switch (value) { + case "false": + value = "true"; + break; + case "true": + value = preparedId === "minion" ? "false" : "null"; + break; + case "null": + value = "false"; + break; + } + game.settings + .set("l5r5e", `initiative.prepared.${preparedId}`, value) + .then(() => HooksL5r5e._gmCombatBar(app, html, data)); + }); } /** diff --git a/system/scripts/preloadTemplates.js b/system/scripts/preloadTemplates.js index d4a9deb..d157c1a 100644 --- a/system/scripts/preloadTemplates.js +++ b/system/scripts/preloadTemplates.js @@ -21,6 +21,7 @@ export const PreloadTemplates = async function () { "systems/l5r5e/templates/actors/npc/social.html", "systems/l5r5e/templates/actors/npc/rings.html", "systems/l5r5e/templates/actors/npc/attributes.html", + "systems/l5r5e/templates/actors/npc/conflict.html", "systems/l5r5e/templates/actors/npc/skill.html", "systems/l5r5e/templates/actors/npc/techniques.html", // items diff --git a/system/scripts/settings.js b/system/scripts/settings.js index db04197..141adbb 100644 --- a/system/scripts/settings.js +++ b/system/scripts/settings.js @@ -26,11 +26,25 @@ export const RegisterSettings = function () { type: String, default: "skirmish", }); - game.settings.register("l5r5e", "initiative.prepared", { - name: "Initiative NPC prepared or not", + game.settings.register("l5r5e", "initiative.prepared.character", { + name: "Initiative PC prepared or not", scope: "world", config: false, - type: Boolean, - default: true, + type: String, + default: "null", + }); + game.settings.register("l5r5e", "initiative.prepared.adversary", { + name: "Initiative NPC adversary are prepared or not", + scope: "world", + config: false, + type: String, + default: "null", + }); + game.settings.register("l5r5e", "initiative.prepared.minion", { + name: "Initiative NPC minion are prepared or not", + scope: "world", + config: false, + type: String, + default: "true", }); }; diff --git a/system/styles/l5r5e.css b/system/styles/l5r5e.css index 0a96fe0..8a076cd 100644 --- a/system/styles/l5r5e.css +++ b/system/styles/l5r5e.css @@ -1 +1 @@ -body{background:url("../assets/imgs/bg-table.webp") no-repeat center;background-size:cover}body>*{scrollbar-width:thin}.window-app .window-content{z-index:1;position:relative;background:#fffae6 url("../assets/imgs/bg-l5r.webp") no-repeat;background-size:cover;scrollbar-width:thin;padding:0}.window-app .window-content>form,.window-app .window-content>div{padding:0.5rem}.window-app .window-content .compendium,.window-app .window-content .help-dialog{background-position:top;background-size:100%;background:url("../assets/ui/bgSidebar.webp") no-repeat;border:1px solid #c3a582;border-radius:0;color:#fff}.window-app .window-content .compendium ol,.window-app .window-content .help-dialog ol{padding-right:0.25rem}.window-app .window-content .compendium ol li,.window-app .window-content .help-dialog ol li{border-bottom:1px solid rgba(255,255,255,0.25)}.window-app .window-content .compendium .directory-header,.window-app .window-content .help-dialog .directory-header{padding:0.25rem 0}.window-app .window-content .help-dialog{padding:0.5rem 1.5rem}.window-app .window-content .help-dialog button{cursor:default;color:#fff;background:linear-gradient(#5f2841, #411928, #5f2841);background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image-width:0.5rem;border-image-outset:0px}.window-app .window-content .help-dialog button:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}.window-app.sheet .window-content,.window-app.npc .window-content,.window-app.advancement .window-content,.window-app.armor .window-content,.window-app.item .window-content,.window-app.peculiarity .window-content,.window-app.property .window-content,.window-app.technique .window-content,.window-app.weapon .window-content,.window-app.twenty-questions-dialog .window-content{overflow-y:scroll}.window-app .window-resizable-handle{z-index:2;background:rgba(0,0,0,0.75)}.window-app.twenty-questions-dialog .window-content{background:#fffae6 url("../assets/imgs/bg-scroll.webp") no-repeat;background-size:cover}#l5r5e-twenty-questions-dialog{min-height:800px;min-width:600px}*{transition-property:background, color, border-color, text-shadow, box-shadow;transition-duration:0.5s;transition-timing-function:ease}input[type="text"]:focus,input[type="number"]:focus,input[type="password"]:focus,input[type="date"]:focus,input[type="time"]:focus{box-shadow:0 0 6px red}.tabs .item.active{text-shadow:0 0 10px red}#controls .scene-control.active,#controls .control-tool.active,#controls .scene-control:hover,#controls .control-tool:hover{box-shadow:0 0 10px red}#sidebar #settings button,#sidebar .sidebar-tab .action-buttons button{height:2rem;line-height:initial}button:hover{box-shadow:0 0 10px red}button:focus{box-shadow:0 0 10px red}option{font-size:1rem;line-height:1.5rem;padding:0.25rem;color:rgba(0,0,0,0.75)}ul,li{list-style-type:none;margin:0;padding:0}.item-list>li{padding:0.25rem;border:1px solid rgba(0,0,0,0.05);border-bottom:0 none}.item-list>li:nth-child(odd){background:rgba(186,187,177,0.2)}.item-list>li:nth-child(even){background:rgba(186,187,177,0.1)}.item-list>li:last-child{border-bottom:1px solid rgba(0,0,0,0.05)}fieldset{flex:1;display:flex;margin:0 0.25rem;padding:0.25rem 0.5rem;border:1px solid rgba(186,187,177,0.5)}fieldset legend{color:#5a6e5a}fieldset .editor{height:100%}input[type="text"],input[type="number"],input[type="password"],input[type="date"],input[type="time"]{text-align:center;padding:0.25rem;background:rgba(255,255,255,0.5);border:1px solid rgba(186,187,177,0.5);color:#764f40}input[type="text"][disabled],input[type="number"][disabled],input[type="password"][disabled],input[type="date"][disabled],input[type="time"][disabled]{background:rgba(255,255,255,0.25)}.editor,.editor-content{flex:1;height:100%;min-height:5rem}.earth{color:#699678}.air{color:#917896}.water{color:#5f919b}.fire{color:#9b7350}.void{color:#4b4641}table{text-align:center;background:transparent;border:1px solid rgba(186,187,177,0.5)}table thead{background:rgba(186,187,177,0.5);color:#5a6e5a;text-shadow:none;border-bottom:rgba(186,187,177,0.5)}table tr:nth-child(odd){background:rgba(186,187,177,0.2)}table tr:nth-child(even){background:rgba(186,187,177,0.1)}sub,sup{color:rgba(0,0,0,0.5)}.sheet nav.sheet-tabs{font-size:0.75rem}.editor-content ul,.item-description ul{margin:0.5rem 0}.editor-content ul li,.item-description ul li{list-style-type:initial;margin:0.5rem 0 0.5rem 1.5rem;padding:0}.window-draggable-handle{z-index:2}@font-face{font-family:"LogotypeL5r";src:url("../fonts/LogotypeL5r.ttf") format("truetype")}@font-face{font-family:"BrushtipTexe";src:url("../fonts/BrushtipTexe.ttf") format("truetype")}@font-face{font-family:"PatrickHand";src:url("../fonts/PatrickHand.ttf") format("truetype")}@font-face{font-family:"ManoNegra";src:url("../fonts/ManoNegra.ttf") format("truetype")}@font-face{font-family:"ArchitectsDaughter";src:url("../fonts/ArchitectsDaughter.ttf") format("truetype")}body{font:16px "PatrickHand",sans-serif;letter-spacing:0.05rem}h1,h4{font-family:"BrushtipTexe",sans-serif}h1{font-size:2rem}h2{font-size:1.5rem}h3{font-size:1.25rem}h4{font-size:1.25rem}p{font-family:"ArchitectsDaughter",sans-serif}i.i_strife,i.i_success,i.i_explosive,i.i_opportunity,i.i_earth,i.i_water,i.i_fire,i.i_air,i.i_void,i.i_kiho,i.i_maho,i.i_ninjitsu,i.i_prerequisite_exemption,i.i_rituals,i.i_shuji,i.i_invocations,i.i_kata,i.i_imperial,i.i_crab,i.i_crane,i.i_dragon,i.i_lion,i.i_mantis,i.i_phoenix,i.i_scorpion,i.i_tortoise,i.i_unicorn,i.i_bushi,i.i_courtier,i.i_shugenja,i.i_ring,i.i_skill{font-family:"LogotypeL5r",sans-serif;line-height:1rem;font-size:1.25rem;font-style:normal;font-weight:normal;vertical-align:middle;text-shadow:0 0 0 rgba(0,0,0,0.5)}i.i_strife:before{content:"\E91B";color:#cd0000}i.i_success:before{content:"\E91C";color:#cd0000}i.i_explosive:before{content:"\E91D";color:#cd0000}i.i_opportunity:before{content:"\E91A";color:#cd0000}i.i_earth:before{content:"\E90C";color:#699678}i.i_air:before{content:"\E90B";color:#917896}i.i_water:before{content:"\E90A";color:#5f919b}i.i_fire:before{content:"\E908";color:#9b7350}i.i_void:before{content:"\E909";color:#4b4641}i.i_invocations:before{content:"\E906";color:#ff6400}i.i_kata:before{content:"\E907";color:red}i.i_kiho:before{content:"\E900";color:#009632}i.i_maho:before{content:"\E901";color:#c83200}i.i_ninjitsu:before{content:"\E902";color:#343434}i.i_prerequisite_exemption:before{content:"\E903";color:#343434}i.i_rituals:before{content:"\E904";color:#0096ff}i.i_shuji:before{content:"\E905";color:#00ff96}i.i_crab:before{content:"\E914";color:#82828c}i.i_crane:before{content:"\E915";color:#789191}i.i_dragon:before{content:"\E916";color:#55826e}i.i_lion:before{content:"\E90E";color:#a08c50}i.i_mantis:before{content:"\E90F";color:#2d551e}i.i_phoenix:before{content:"\E910";color:#91784b}i.i_scorpion:before{content:"\E911";color:#9b463c}i.i_tortoise:before{content:"\E912";color:#b4c82d}i.i_unicorn:before{content:"\E913";color:#785a87}i.i_imperial:before{content:"\E90D";color:#78ffb4}i.i_bushi:before{content:"\E917";color:#a55a5a}i.i_courtier:before{content:"\E918";color:#6982a5}i.i_shugenja:before{content:"\E919";color:#5aa582}i.i_ring{content:"";background:transparent url("../assets/dices/default/ring_blank.svg") no-repeat 0 center;display:inline-block;height:1rem;width:0.75rem}i.i_skill{content:"";background:transparent url("../assets/dices/default/skill_blank.svg") no-repeat 0 0;display:inline-block;height:1rem;width:1rem}body,#navigation #scene-list .scene.view,#navigation #scene-list .scene.context,#navigation #nav-toggle,#navigation #scene-list .scene.nav-item,#controls .scene-control.active,#controls .control-tool.active,#controls .scene-control:hover,#controls .control-tool:hover,#client-settings .window-content form .form-group>label,#client-settings .window-content form .form-group select,#client-settings .form-group input,.app.window-app .form-group label,#sidebar .sidebar-tab #chat-controls div.roll-type-select select,#sidebar .sidebar-tab #chat-controls div.roll-type-select i.fas{cursor:url("../assets/cursors/normal.webp"),default !important}a,#logo,#hotbar .macro,#playlists-popout .global-volume::-webkit-slider-thumb,#sidebar #playlists .global-volume::-webkit-slider-thumb,#playlists-popout li.playlist:not(:first-of-type) li.sound .sound-volume::-webkit-slider-thumb,#sidebar #playlists li.playlist:not(:first-of-type) li.sound .sound-volume::-webkit-slider-thumb,#sidebar #settings button,.app.window-app.sheet.wfrp4e.actor.character-sheet .tab.main.active .main-row .movement.row-section .move-value .auto-calc-toggle,.app.window-app.sheet.wfrp4e.actor.npc-sheet .main-row .movement.row-section .move-value .auto-calc-toggle,.app.window-app.sheet.wfrp4e.actor.creature-sheet .main-row .movement.row-section .move-value .auto-calc-toggle,.app.window-app .form-group input[type="range"]::-webkit-slider-thumb,.token-sheet .tab[data-tab="image"] input[type="range"]::-webkit-slider-thumb,#drawing-config .tab[data-tab="image"] input[type="range"]::-webkit-slider-thumb,.metacurrency-value,.overcast-button,.chargen-button,#controls .scene-control,#controls .control-tool,#effects-config .flex2::-webkit-slider-thumb,#client-settings section.content .submenu>button,#client-settings .window-content button label,form .form-group .form-fields button,.sidebar-tab .action-buttons button,.dialog .dialog-buttons button,.item-edit,.item-delete,.technique-edit,.technique-delete,.peculiarity-edit,.peculiarity-delete,.attribute-dtype,form button,label{cursor:url("../assets/cursors/pointer.webp"),pointer !important}.draggable{cursor:url("../assets/cursors/drag.webp"),move !important}.dice-roll .dice-formula,.dice-roll .dice-total{background:rgba(255,255,255,0.1);border:rgba(255,255,255,0.75)}.chat-dice>img{border:1px solid transparent;background-repeat:no-repeat;background-position:center;background-size:100%;height:44px;width:44px;outline:none;margin:0;flex:0 0 20px;display:inline-block}.chat-profil{text-align:center;vertical-align:middle}.chat-profil-stance{font-size:40px;position:relative;top:8px;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}.chat-profil-element{flex-wrap:wrap;flex-grow:1}.chat-profil-element-skill{flex-grow:3}.dice-picker-dialog *{transition:none}.dice-picker-dialog input[type="text"]:focus,.dice-picker-dialog input[type="text"]:hover{box-shadow:none !important;border:none !important;text-shadow:none !important}.dice-picker-dialog img{border:0}.dice-picker-dialog table{text-align:center;background:none;border:none}.dice-picker-dialog table td:first-child{width:200px}.dice-picker-dialog table td{width:240px}.dice-picker-dialog table td:last-child{width:200px}.dice-picker-dialog .pointer-choice{cursor:url("../assets/cursors/pointer.webp"),pointer}.dice-picker-dialog .ring-selection.ring-selected i{text-shadow:0px 1px 1px red}.dice-picker-dialog .ring-selection.ring-selected strong{color:rgba(255,0,0,0.75)}.dice-picker-dialog .ring-selection.ring-selected input{border:2px solid rgba(255,0,0,0.75) !important}.dice-picker-dialog .quantity{font-size:xx-large}.dice-picker-dialog .third{display:inline-block;text-align:center;vertical-align:middle}.dice-picker-dialog .dice-container{position:relative;text-align:center}.dice-picker-dialog .dice-container>img{height:40px;width:40px}.dice-picker-dialog .dice-value{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.dice-picker-dialog .input-dice{width:20px;color:#0f0f0e;background:none;border:none;font-size:large}.dice-picker-dialog .input-dice-ring{color:#f0f0e0}.dice-picker-dialog .input-dice-skill{color:#0f0f0e}.roll-n-keep-dialog img{border:0}.roll-n-keep-dialog .profil{border-bottom:1px solid #782e22}.roll-n-keep-dialog .dropbox{min-height:100px}.roll-n-keep-dialog .dropbox.discards{border:1px solid gray}.roll-n-keep-dialog .dropbox.rerolls{border:1px solid orangered}.roll-n-keep-dialog .dropbox.keeps{border:1px solid green}.roll-n-keep-dialog .dice{height:40px;width:40px}.roll-n-keep-dialog .discard{filter:opacity(0.5);border:3px solid gray}.roll-n-keep-dialog .reroll{filter:opacity(0.5);border:3px solid orangered}.roll-n-keep-dialog .keep{border:3px solid green}.gm-tools-dialog{bottom:10px;right:5px;display:flex}.gm-tools-dialog .window-content{text-align:center;vertical-align:middle}.gm-tools-dialog .window-content .gm-tools-container{flex:1;display:flex;flex-flow:wrap}.gm-tools-dialog .window-content .gm-tools-container div{flex:1;cursor:url("../assets/cursors/pointer.webp"),pointer}.gm-tools-dialog .window-content .gm-tools-container .difficulty{font-size:60px}.gm-tools-dialog .window-content .gm-tools-container i{font-size:60px;vertical-align:middle}.gm-tools-dialog .window-draggable-handle{display:none}button{font-size:0.75rem;cursor:url("../assets/cursors/pointer.webp"),pointer}#sidebar{padding:0.5rem 0.25rem 0.5rem 0.5rem;background-position:top;background-size:100%;background:url("../assets/ui/bgSidebar.webp") no-repeat;border:1px solid #c3a582;border-radius:0;overflow:initial;height:calc(100% - 1rem);top:0.5rem;min-width:40px;letter-spacing:0.1rem}#sidebar:before{z-index:-1;content:"";position:absolute;height:calc(100% + 0.6rem);width:100%;border:1px solid #c3a582;border-radius:0;top:-0.35rem;left:0.25rem}#sidebar #sidebar-tabs{flex:0 0 2rem;box-sizing:border-box;margin:0 0 0.25rem;border-bottom:1px solid rgba(195,165,130,0.5);box-shadow:none;display:flex}#sidebar #sidebar-tabs i{flex:1;width:100%;height:100%;background-repeat:no-repeat;background-position:center;background-size:100%;border-radius:100%}#sidebar #sidebar-tabs i.fa-comments{background-image:url("../assets/ui/sidebar/chat.svg")}#sidebar #sidebar-tabs i.fa-comments:before{content:""}#sidebar #sidebar-tabs i.fa-fist-raised{background-image:url("../assets/ui/sidebar/combat-tracker.svg");background-size:85%}#sidebar #sidebar-tabs i.fa-fist-raised:before{content:""}#sidebar #sidebar-tabs i.fa-map{background-image:url("../assets/ui/sidebar/scenes.svg");background-size:80%}#sidebar #sidebar-tabs i.fa-map:before{content:""}#sidebar #sidebar-tabs i.fa-users{background-image:url("../assets/ui/sidebar/actors.svg");background-size:90%}#sidebar #sidebar-tabs i.fa-users:before{content:""}#sidebar #sidebar-tabs i.fa-suitcase{background-image:url("../assets/ui/sidebar/object.svg")}#sidebar #sidebar-tabs i.fa-suitcase:before{content:""}#sidebar #sidebar-tabs i.fa-book-open{background-image:url("../assets/ui/sidebar/journal.svg")}#sidebar #sidebar-tabs i.fa-book-open:before{content:""}#sidebar #sidebar-tabs i.fa-th-list{background-image:url("../assets/ui/sidebar/rolltable.svg");background-size:85%}#sidebar #sidebar-tabs i.fa-th-list:before{content:""}#sidebar #sidebar-tabs i.fa-music{background-image:url("../assets/ui/sidebar/playlist.svg");background-size:80%}#sidebar #sidebar-tabs i.fa-music:before{content:""}#sidebar #sidebar-tabs i.fa-atlas{background-image:url("../assets/ui/sidebar/compendium.svg")}#sidebar #sidebar-tabs i.fa-atlas:before{content:""}#sidebar #sidebar-tabs i.fa-cogs{background-image:url("../assets/ui/sidebar/settings.svg");background-size:85%}#sidebar #sidebar-tabs i.fa-cogs:before{content:""}#sidebar #sidebar-tabs>.item{flex:0 0 1.5rem;height:1.5rem;line-height:1.5rem;margin:0.1rem;border-radius:100%;background:rgba(255,255,255,0.5)}#sidebar #sidebar-tabs>.item.active,#sidebar #sidebar-tabs>.item:hover{background:#fff;border:1px solid #c3a582;box-shadow:0 0 10px red}#sidebar #sidebar-tabs .collapse{position:relative;flex:0 0 0.85rem;line-height:1.75rem;color:#c3a582;text-align:center}#sidebar #sidebar-tabs .collapse i{background-color:transparent}#sidebar.collapsed #sidebar-tabs>.item.active{border:1px solid #c3a582;box-shadow:0 0 10px rgba(255,255,255,0.5);border-radius:100%}#sidebar.collapsed #sidebar-tabs .collapse{flex:0 0 1.5rem;margin:0.1rem}#sidebar .sidebar-tab .chat-control-icon{cursor:url("../assets/cursors/pointer.webp"),pointer}#sidebar .sidebar-tab .action-buttons button{cursor:default;color:#fff;background:linear-gradient(#5f2841, #411928, #5f2841);background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image-width:0.5rem;border-image-outset:0px}#sidebar .sidebar-tab .action-buttons button:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}#sidebar #settings button{cursor:default;color:#fff;background:linear-gradient(#5f2841, #411928, #5f2841);background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image-width:0.5rem;border-image-outset:0px}#sidebar #settings button:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}#sidebar #chat-form textarea,#sidebar .chat-message,#sidebar .blind,#sidebar .whisper,#sidebar #chat-controls .roll-type-select,#sidebar .header-search input{background:transparent url("../assets/ui/chat-texture.webp") no-repeat}#sidebar .header-search input[name="search"]{background-color:rgba(225,215,200,0.25);color:rgba(0,0,0,0.5)}#sidebar .header-search input[name="search"]:focus{background-color:rgba(225,215,200,0.75)}#sidebar .chat-message .message-header{line-height:2rem;border-bottom:1px solid rgba(0,0,0,0.1);margin-bottom:0.25rem;border-radius:0}#sidebar #chat-log{margin:0 0 0.5rem;font-size:1rem}#sidebar #chat-log .message.whisper,#sidebar #chat-log .message.blind,#sidebar #chat-log .message.roll{position:relative}#sidebar #chat-log .message.whisper .message-header .message-metadata:before,#sidebar #chat-log .message.blind .message-header .message-metadata:before,#sidebar #chat-log .message.roll .message-header .message-metadata:before{position:absolute;top:-0.5rem;right:0.25rem;font-size:0.5rem;color:#963c41;height:0}#sidebar #chat-log .message.whisper{font-style:italic}#sidebar #chat-log .message.whisper .message-header .message-metadata:before{content:"(Private)"}#sidebar #chat-log .message.whisper.roll .message-header .message-metadata:before{content:"(Private Roll)"}#sidebar #chat-log .message.blind{font-style:italic}#sidebar #chat-log .message.blind .message-header .message-metadata:before{content:"(Blind)"}#sidebar #chat-log .message.blind.roll .message-header .message-metadata:before{content:"(Blind Roll)"}#sidebar #chat-log .message.roll .message-header .message-metadata:before{content:"(Roll)"}#sidebar .message-sender{color:#963c41;text-shadow:1px 1px 0px rgba(0,0,0,0.25)}#sidebar .message{background-color:rgba(225,215,200,0.25);color:rgba(0,0,0,0.75)}#sidebar .message ul li{padding:0.25rem;border:1px solid rgba(0,0,0,0.05);border-bottom:0 none}#sidebar .message ul li:nth-child(odd){background:rgba(186,187,177,0.2)}#sidebar .message ul li:nth-child(even){background:rgba(186,187,177,0.1)}#sidebar .message ul li:last-child{border-bottom:1px solid rgba(0,0,0,0.05)}#sidebar .message.roll{background-color:rgba(225,215,200,0.75)}#sidebar .message.blind{background-color:rgba(0,0,0,0)}#sidebar .message.whisper{background-color:rgba(225,200,225,0.75)}#hotbar{margin:0}#hotbar #action-bar{flex:0 0 100%}#hotbar #action-bar .macro{background-position:center;background-size:100%;background:linear-gradient(rgba(10,0,20,0.75), rgba(0,0,10,0.75), rgba(10,0,20,0.75));background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp");border-image:url("../assets/ui/macro-button.webp");border-image-slice:8 fill;border-image-width:0.25rem;border-image-outset:0;border-radius:0}#hotbar #action-bar .macro .macro-key{background:rgba(0,0,0,0.5)}#hotbar #action-bar .macro.active{background:linear-gradient(rgba(0,0,10,0.75), rgba(10,0,20,0.75), rgba(0,0,10,0.75));box-shadow:1px 1px 10px #000 inset;border:1px solid rgba(195,165,130,0.5)}#hotbar #action-bar #macro-list{background:transparent;margin:0;padding:0.05rem;border-radius:0;border:0 none;box-shadow:0.25rem 0.25rem 0.5rem rgba(0,0,0,0.75)}#hotbar .bar-controls{background-position:center;background-size:100%;background:linear-gradient(rgba(10,0,20,0.75), rgba(0,0,10,0.75), rgba(10,0,20,0.75));background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 15 repeat;border-image:url("../assets/ui/macro-button.webp") 15 repeat;border-image-width:0.5rem;border-image-outset:0px;box-shadow:0 0 0.25rem rgba(0,0,0,0.75);border-radius:0;margin:0 0.5rem}#hotbar .bar-controls a.page-control,#hotbar .bar-controls span.page-number{font-size:1rem;line-height:0.95rem}#players{border-radius:0;background-position:center;background-size:100%;background:linear-gradient(rgba(10,0,20,0.75), rgba(0,0,10,0.75), rgba(10,0,20,0.75));background-origin:padding-box;border:1px solid #c3a582;background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 15 repeat;border-image:url("../assets/ui/macro-button.webp") 15 repeat;border-image-width:0.5rem;border-image-outset:0px;margin:0;padding:0;left:1.15rem;bottom:0.65rem;box-shadow:inset 0 0 0.5rem rgba(0,0,0,0.75)}#players:before{z-index:-1;position:absolute;content:"";background:transparent url("../assets/ui/players-border.webp") no-repeat 0 0;background-size:100%;display:block;top:-12px;right:10%;left:10%;bottom:0}#logo{content:url("../assets/l5r-logo.webp");height:80px;width:88px;margin-left:0.5rem;opacity:0}#navigation{left:120px}#navigation:before{content:"";background:url("../assets/l5r-logo.webp") no-repeat 0 0;background-size:cover;height:80px;width:88px;opacity:0.65;position:absolute;left:-6.45rem}#navigation:before:hover{opacity:0.75}#navigation #nav-toggle,#navigation #scene-list .scene.nav-item{cursor:default;color:#fff;background:linear-gradient(rgba(10,0,20,0.75), rgba(0,0,10,0.75), rgba(10,0,20,0.75));background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image-width:0.25rem;border-image-outset:0px}#navigation #nav-toggle:hover,#navigation #scene-list .scene.nav-item:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}#navigation #scene-list .scene.nav-item.active{background:linear-gradient(rgba(65,20,15,0.75), rgba(35,10,5,0.75), rgba(65,20,15,0.75))}#navigation #scene-list .scene.nav-item.active:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}#navigation #scene-list .scene.view,#navigation #scene-list .scene.context{cursor:default;color:#fff;background:linear-gradient(rgba(65,20,15,0.75), rgba(35,10,5,0.75), rgba(65,20,15,0.75));background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image-width:0.25rem;border-image-outset:0px;box-shadow:0 0 20px red}#navigation #scene-list .scene.view:hover,#navigation #scene-list .scene.context:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}#controls{top:100px}#controls .scene-control.active,#controls .control-tool.active,#controls .scene-control:hover,#controls .control-tool:hover{background:linear-gradient(rgba(65,20,15,0.75), rgba(35,10,5,0.75), rgba(65,20,15,0.75));background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image-width:0.25rem;border-image-outset:0px;box-shadow:0 0 10px red}#controls .scene-control.active:hover,#controls .control-tool.active:hover,#controls .scene-control:hover:hover,#controls .control-tool:hover:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}#controls .scene-control,#controls .control-tool{color:#fff;background:linear-gradient(rgba(10,0,20,0.75), rgba(0,0,10,0.75), rgba(10,0,20,0.75));background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image-width:0.25rem;border-image-outset:0px}#controls .scene-control:hover,#controls .control-tool:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}#playlists .playlist .playlist-header h4{font:0.75rem "PatrickHand",sans-serif;text-transform:uppercase;text-align:right}#combat #combat-round .encounters h3{font-size:0.85rem}#combat #combat-round .encounters .encounter i{font-size:23px;vertical-align:middle}#combat #combat-round .encounters .encounter .active{box-shadow:0 1px 5px #963c41}#pause img{content:url("../assets/icons/pause.svg")}.compendium-list .compendium-pack .pack-title{margin:0;line-height:1rem}.compendium-list .compendium-pack .compendium-footer{text-align:right;margin-right:2rem;font-size:0.75rem;color:rgba(240,240,225,0.75)}.l5r5e .dice-roll .dice-formula,.l5r5e .dice-roll .dice-total{background:rgba(255,255,255,0.1);border:rgba(255,255,255,0.75)}.l5r5e .chat-dice>img{border:1px solid transparent;background-repeat:no-repeat;background-position:center;background-size:100%;height:44px;width:44px;outline:none;margin:0;flex:0 0 20px;display:inline-block}.l5r5e .chat-profil{text-align:center;vertical-align:middle}.l5r5e .chat-profil-stance{font-size:40px;position:relative;top:8px;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}.l5r5e .chat-profil-element{flex-wrap:wrap;flex-grow:1}.l5r5e .chat-profil-element-skill{flex-grow:3}.l5r5e .dice-picker-dialog *{transition:none}.l5r5e .dice-picker-dialog input[type="text"]:focus,.l5r5e .dice-picker-dialog input[type="text"]:hover{box-shadow:none !important;border:none !important;text-shadow:none !important}.l5r5e .dice-picker-dialog img{border:0}.l5r5e .dice-picker-dialog table{text-align:center;background:none;border:none}.l5r5e .dice-picker-dialog table td:first-child{width:200px}.l5r5e .dice-picker-dialog table td{width:240px}.l5r5e .dice-picker-dialog table td:last-child{width:200px}.l5r5e .dice-picker-dialog .pointer-choice{cursor:url("../assets/cursors/pointer.webp"),pointer}.l5r5e .dice-picker-dialog .ring-selection.ring-selected i{text-shadow:0px 1px 1px red}.l5r5e .dice-picker-dialog .ring-selection.ring-selected strong{color:rgba(255,0,0,0.75)}.l5r5e .dice-picker-dialog .ring-selection.ring-selected input{border:2px solid rgba(255,0,0,0.75) !important}.l5r5e .dice-picker-dialog .quantity{font-size:xx-large}.l5r5e .dice-picker-dialog .third{display:inline-block;text-align:center;vertical-align:middle}.l5r5e .dice-picker-dialog .dice-container{position:relative;text-align:center}.l5r5e .dice-picker-dialog .dice-container>img{height:40px;width:40px}.l5r5e .dice-picker-dialog .dice-value{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.l5r5e .dice-picker-dialog .input-dice{width:20px;color:#0f0f0e;background:none;border:none;font-size:large}.l5r5e .dice-picker-dialog .input-dice-ring{color:#f0f0e0}.l5r5e .dice-picker-dialog .input-dice-skill{color:#0f0f0e}.l5r5e .roll-n-keep-dialog img{border:0}.l5r5e .roll-n-keep-dialog .profil{border-bottom:1px solid #782e22}.l5r5e .roll-n-keep-dialog .dropbox{min-height:100px}.l5r5e .roll-n-keep-dialog .dropbox.discards{border:1px solid gray}.l5r5e .roll-n-keep-dialog .dropbox.rerolls{border:1px solid orangered}.l5r5e .roll-n-keep-dialog .dropbox.keeps{border:1px solid green}.l5r5e .roll-n-keep-dialog .dice{height:40px;width:40px}.l5r5e .roll-n-keep-dialog .discard{filter:opacity(0.5);border:3px solid gray}.l5r5e .roll-n-keep-dialog .reroll{filter:opacity(0.5);border:3px solid orangered}.l5r5e .roll-n-keep-dialog .keep{border:3px solid green}.l5r5e .gm-tools-dialog{bottom:10px;right:5px;display:flex}.l5r5e .gm-tools-dialog .window-content{text-align:center;vertical-align:middle}.l5r5e .gm-tools-dialog .window-content .gm-tools-container{flex:1;display:flex;flex-flow:wrap}.l5r5e .gm-tools-dialog .window-content .gm-tools-container div{flex:1;cursor:url("../assets/cursors/pointer.webp"),pointer}.l5r5e .gm-tools-dialog .window-content .gm-tools-container .difficulty{font-size:60px}.l5r5e .gm-tools-dialog .window-content .gm-tools-container i{font-size:60px;vertical-align:middle}.l5r5e .gm-tools-dialog .window-draggable-handle{display:none}.l5r5e.sheet{min-width:600px}.l5r5e.sheet label:hover{text-shadow:0 0 2px red}.l5r5e.sheet.actor .sheet-header{height:27rem}.l5r5e.sheet.actor .sheet-header h1{flex:auto;margin:0 0 0.25rem 0.5rem}.l5r5e.sheet.actor .sheet-body{height:calc(100% - 27rem)}.l5r5e.sheet.actor .techniques-wrapper fieldset:last-child{margin:0 0 0 0.5rem}.l5r5e.sheet.actor .initiative-wrapper{display:block;flex:100%;text-align:center}.l5r5e.sheet.actor .initiative button{width:22%;margin:0 0.25rem 0.25rem;padding:0 0.5rem;color:#5a6e5a;background:rgba(255,255,255,0.5);border:1px solid #5a6e5a;border-radius:1rem}.l5r5e.sheet.actor .initiative button:focus{box-shadow:none}.l5r5e.sheet.actor fieldset.advancement{display:block}.l5r5e.sheet.actor .advancements-tabs{height:2rem;line-height:2rem;font-size:1rem}.l5r5e.sheet.actor .compromised input{border:1px solid #963c41;box-shadow:0 1px 5px #963c41}.l5r5e.sheet form{display:flex;flex-wrap:wrap;align-content:flex-start}.l5r5e.sheet .sheet-body{flex:0 0 100%;align-items:flex-start}.l5r5e.sheet .sheet-header{flex:0 0 100%;align-items:flex-start}.l5r5e.sheet .sheet-header input{flex:0 0 3rem;font-size:1.5rem;height:2rem}.l5r5e.sheet .sheet-header h1{flex:0 0 calc(100% - 90px - 1.25rem);margin:0 0 0.25rem 1rem}.l5r5e.sheet .sheet-header h1 input{flex:0 0 100%;font-size:3rem;height:5rem;margin:0;width:100%;text-align:right;color:#963c41;text-shadow:0 0 1px #963c41;background:transparent;border:0 none;border-radius:0;border-bottom:1px solid rgba(90,110,90,0.25)}.l5r5e.sheet .sheet-header h1:before{content:"";position:absolute;background:url("../assets/imgs/brush.webp") no-repeat 0 0;background-size:contain;height:225px;width:100%;z-index:-1;top:-1rem;left:-0.25rem}.l5r5e.sheet .sheet-header img{flex:0 0 150px;height:150px;width:150px;margin-right:0;-o-object-fit:contain;object-fit:contain;background:rgba(255,255,255,0.25);border:1px solid rgba(186,187,177,0.25);--notchSize: 0.5rem;-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)));clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)))}.l5r5e.sheet .sheet-header .header-fields{position:relative;flex:0 0 100%}.l5r5e.sheet .sheet-header .header-fields h2{font-family:"BrushtipTexe",sans-serif;font-size:1rem;float:left;width:30%;padding:0.25rem 0.25rem 0;margin:1rem 20% 0 0;text-align:center;color:rgba(0,0,0,0.25);text-shadow:0 0 1px rgba(90,110,90,0.25);border-bottom:0 none;background:rgba(186,187,177,0.5);--notchSize: 0.5rem;-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100%) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100%));clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100%) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100%))}.l5r5e.sheet .sheet-header .header-fields h2.right{margin:1rem 0 0 20%;-webkit-clip-path:polygon(0% 0, var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 100% 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)));clip-path:polygon(0% 0, var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 100% 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)))}.l5r5e.sheet .sheet-header .header-fields h2:before{content:"";position:absolute;height:1px;width:100%}.l5r5e.sheet .sheet-header .identity-wrapper{display:flex;position:initial;flex-wrap:wrap;flex:0 0 calc(100% - 150px)}.l5r5e.sheet .sheet-header .identity-wrapper label{display:flex;color:#5a6e5a;text-transform:uppercase;font-size:0.75rem;line-height:2rem}.l5r5e.sheet .sheet-header .identity-wrapper label input{flex:1;font-size:1.25rem;height:1.75rem;margin:0 1rem 0 0.5rem;padding:0 0.25rem 0.25rem}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content{flex:0 0 100%;display:flex;flex-wrap:wrap;margin:0;padding-top:0.25rem;padding-left:0.5rem}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li{flex:33%}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(1),.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(2){flex:calc(50% - 3rem);margin:0 0 0.25rem}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(3){flex:auto}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(3) input{width:1rem;padding:0;margin-right:0}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(4),.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(5){flex:60%}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(4) input,.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(5) input{font-size:1rem}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(5){flex:40%}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(5) input{margin-right:0}.l5r5e.sheet .sheet-header .rings{float:left;width:40%;padding:0;position:relative;top:-2.5rem}.l5r5e.sheet .sheet-header .social-content,.l5r5e.sheet .sheet-header .attributes-wrapper{flex:none;float:left;width:30%;flex-direction:column;display:flex;padding:0.5rem 0 0 0.25rem;border-left:2px solid rgba(186,187,177,0.5)}.l5r5e.sheet .sheet-header .social-content li,.l5r5e.sheet .sheet-header .attributes-wrapper li{position:relative}.l5r5e.sheet .sheet-header .social-content li:before,.l5r5e.sheet .sheet-header .attributes-wrapper li:before{content:"";position:absolute;background:linear-gradient(rgba(186,187,177,0.5), rgba(186,187,177,0));height:2px;width:97%;top:-0.25rem;left:-0.25rem}.l5r5e.sheet .sheet-header .social-content li:nth-child(2):before,.l5r5e.sheet .sheet-header .attributes-wrapper li:nth-child(2):before{width:90%}.l5r5e.sheet .sheet-header .social-content li:nth-child(3):before,.l5r5e.sheet .sheet-header .attributes-wrapper li:nth-child(3):before{width:80%}.l5r5e.sheet .sheet-header .social-content li:nth-child(4):before,.l5r5e.sheet .sheet-header .attributes-wrapper li:nth-child(4):before{width:90%}.l5r5e.sheet .sheet-header .social-content label,.l5r5e.sheet .sheet-header .attributes-wrapper label{display:flex;color:#5a6e5a;text-transform:uppercase;font-size:0.75rem;height:2.5rem;margin:0.25rem 0;flex-direction:row-reverse}.l5r5e.sheet .sheet-header .social-content label strong,.l5r5e.sheet .sheet-header .attributes-wrapper label strong{flex:0 0 calc(100% - 3.5rem)}.l5r5e.sheet .sheet-header .social-content label input,.l5r5e.sheet .sheet-header .attributes-wrapper label input{flex:0 0 3rem;margin:0 0.25rem;height:2rem}.l5r5e.sheet .sheet-header .social-content label input[disabled],.l5r5e.sheet .sheet-header .attributes-wrapper label input[disabled]{flex:0 0 3rem;background:rgba(255,255,255,0.25)}.l5r5e.sheet .sheet-header .attributes-wrapper{padding:0.5rem 0.25rem 0 0;border-left:0 none;border-right:2px solid rgba(186,187,177,0.5)}.l5r5e.sheet .sheet-header .attributes-wrapper li:before{left:auto;right:-0.25rem}.l5r5e.sheet .sheet-header .attributes-wrapper li.void-content:before{width:0}.l5r5e.sheet .sheet-header .attributes-wrapper label{flex-direction:row}.l5r5e.sheet .sheet-header .attributes-wrapper label strong{text-align:right}.l5r5e.sheet .sheet-header .attributes-wrapper label:nth-child(2){position:relative;flex:50%;right:1.5rem}.l5r5e.sheet .sheet-header .attributes-wrapper label:nth-child(2) strong{position:absolute;top:0;left:0;font-size:0.65rem;width:3rem;color:rgba(0,0,0,0.5)}.l5r5e.sheet .sheet-header .attributes-wrapper label:nth-child(2) input{border-top:0 none;font-size:1.25rem;padding-top:0.75rem}.l5r5e.sheet .sheet-header .attributes-wrapper .endurance-content input[disabled],.l5r5e.sheet .sheet-header .attributes-wrapper .composure-content input[disabled]{flex:0 0 5rem;padding-right:3rem}.l5r5e.sheet .sheet-header .attributes-wrapper .void-content{display:flex;position:absolute;bottom:0.25rem;right:35%;width:10rem}.l5r5e.sheet .sheet-header .attributes-wrapper .void-content label{margin:0}.l5r5e.sheet .sheet-header .attributes-wrapper .void-content label strong{flex:1 0 calc(100% - 5rem);padding:0 0.25rem}.l5r5e.sheet .sheet-header .attributes-wrapper .void-content label strong:after{content:"/";position:absolute;right:2.9rem;font-size:1rem;bottom:0.6rem;color:#764f40}.l5r5e.sheet .sheet-header .attributes-wrapper .void-content label input:nth-child(2){flex:3rem;padding-right:1.25rem}.l5r5e.sheet .sheet-header .attributes-wrapper .void-content label input:last-child{flex:1;border:0 none;font-size:1rem;text-align:right;padding-left:0.25rem;padding-top:0.75rem;position:relative;right:2rem}.l5r5e.sheet .sheet-header .attributes-wrapper li{display:flex}.l5r5e.sheet .sheet-header .attributes-wrapper li p{display:none;z-index:2;position:absolute;background:rgba(0,0,0,0.5);color:#fff;line-height:1.5rem;text-align:center;width:100%;padding:0.25rem;bottom:-2.25rem;right:-0.25rem;--notchSize: 0.5rem;-webkit-clip-path:polygon(0% 0, 0 0%, 100% 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)));clip-path:polygon(0% 0, 0 0%, 100% 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)))}.l5r5e.sheet .sheet-header .attributes-wrapper li:hover p{display:block;height:auto}.l5r5e.sheet article{background:rgba(255,255,255,0.5);padding:0.5rem;flex-wrap:wrap;min-height:calc(100% - 3.25rem)}.l5r5e.sheet article.tab[data-tab].active{display:flex}.l5r5e.sheet article .narrative-content,.l5r5e.sheet article .narrative-note{flex:0 0 calc(50% - 0.5rem)}.l5r5e.sheet article .narrative-content fieldset,.l5r5e.sheet article .narrative-note fieldset{display:block}.l5r5e.sheet article .narrative-content fieldset label,.l5r5e.sheet article .narrative-note fieldset label{width:100%}.l5r5e.sheet article .techniques-wrapper .checklist{display:flex;flex-wrap:wrap;font-size:0.85rem;margin:0 0 0.25rem 0.5rem;padding:0.5rem;background:rgba(186,187,177,0.5);--notchSize: 0.25rem;-webkit-clip-path:polygon(0% 0, var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 100% 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)));clip-path:polygon(0% 0, var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 100% 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)))}.l5r5e.sheet article .techniques-wrapper .checklist i{color:rgba(0,0,0,0.5);margin-right:0.5rem}.l5r5e.sheet article .techniques-wrapper .checklist label{flex:0 0 auto;margin:0 0.25rem 0.25rem;padding:0 0.5rem;color:#5a6e5a;background:rgba(255,255,255,0.5);border:1px solid #5a6e5a;border-radius:1rem}.l5r5e.sheet article .techniques-wrapper .checklist input{margin:0.25rem 0 0 0;height:0.65rem;width:0.65rem}.l5r5e.sheet article .stances-content{flex:0 0 100%}.l5r5e.sheet article .stances-content .item-list{position:relative;padding-top:2rem;margin:0}.l5r5e.sheet article .stances-content .stance-content{padding:0;margin:0}.l5r5e.sheet article .stances-content .stance-content label{display:block;position:absolute;top:0;left:0;width:20%;line-height:1.5rem;padding:0.25rem;color:#fff}.l5r5e.sheet article .stances-content .stance-content label.earth{background:#699678}.l5r5e.sheet article .stances-content .stance-content label.air{background:#917896;left:20%}.l5r5e.sheet article .stances-content .stance-content label.water{background:#5f919b;left:40%}.l5r5e.sheet article .stances-content .stance-content label.fire{background:#9b7350;left:60%}.l5r5e.sheet article .stances-content .stance-content label.void{background:#4b4641;left:80%}.l5r5e.sheet article .stances-content .stance-content label input{float:right;position:relative;top:0.3rem;right:0.25rem}.l5r5e.sheet article .weapons-content,.l5r5e.sheet article .armors-content{flex:0 0 calc(50% - 0.5rem)}.l5r5e.sheet .xp,.l5r5e.sheet .money-wrapper{flex:0 0 5rem;flex-direction:column;color:rgba(0,0,0,0.75)}.l5r5e.sheet .xp label,.l5r5e.sheet .money-wrapper label{padding:0.25rem;font-size:0.85rem}.l5r5e.sheet table{font-size:0.85rem;color:rgba(0,0,0,0.75)}.l5r5e.sheet table thead th:first-child{flex:0 0 2rem}.l5r5e.sheet table thead th:nth-child(2){flex:calc(100% - 16rem);padding-left:0.5rem;text-align:left}.l5r5e.sheet table thead th:nth-child(3),.l5r5e.sheet table thead th:nth-child(4){flex:0 0 4rem}.l5r5e.sheet table tbody .curriculum{flex:0 0 2rem}.l5r5e.sheet table tbody .name{flex:calc(100% - 13rem);padding-left:0.5rem;text-align:left}.l5r5e.sheet table tbody .xp,.l5r5e.sheet table tbody .rank{flex:0 0 4rem}.l5r5e.sheet table tbody .actions{flex:0 0 3rem;font-size:0.75rem}.l5r5e.sheet table tbody .actions ul{display:flex;flex-direction:row}.l5r5e.sheet table tbody .actions ul li{flex:0 0 1rem}.l5r5e.sheet table tbody .actions ul li:hover{color:rgba(255,0,0,0.75)}.l5r5e.sheet table tbody img{width:16px;height:16px;border:none}.l5r5e.sheet.actor .limited h1,.l5r5e.sheet.npc .limited h1{margin:0.5rem 0}.l5r5e.sheet.actor .limited img.full,.l5r5e.sheet.npc .limited img.full{flex:initial;height:auto;width:-webkit-max-content;width:-moz-max-content;width:max-content;border:0 none;margin:0 auto}.l5r5e.sheet.actor .limited .sheet-header,.l5r5e.sheet.npc .limited .sheet-header{flex:none;height:auto}.l5r5e.sheet.actor .limited ul,.l5r5e.sheet.npc .limited ul{display:flex;flex-wrap:wrap}.l5r5e.sheet.actor .limited ul li,.l5r5e.sheet.npc .limited ul li{flex:50%;padding:0.25rem 0}.l5r5e.sheet.actor .limited ul li input,.l5r5e.sheet.npc .limited ul li input{width:75%;float:right}.l5r5e.sheet.actor .limited ul li:nth-child(1),.l5r5e.sheet.actor .limited ul li:nth-child(2),.l5r5e.sheet.npc .limited ul li:nth-child(1),.l5r5e.sheet.npc .limited ul li:nth-child(2){flex:calc(50% - 5rem);margin-right:1rem}.l5r5e.sheet.actor .limited ul li:nth-child(3),.l5r5e.sheet.npc .limited ul li:nth-child(3){flex:auto}.l5r5e.sheet.actor .limited ul li:nth-child(3) input,.l5r5e.sheet.npc .limited ul li:nth-child(3) input{width:2rem}.l5r5e.sheet.actor .limited ul li:nth-child(4),.l5r5e.sheet.actor .limited ul li:nth-child(5),.l5r5e.sheet.npc .limited ul li:nth-child(4),.l5r5e.sheet.npc .limited ul li:nth-child(5){flex:calc(50% - 1rem);margin-right:1rem}.l5r5e.sheet.actor .limited ul li:nth-child(4) input,.l5r5e.sheet.actor .limited ul li:nth-child(5) input,.l5r5e.sheet.npc .limited ul li:nth-child(4) input,.l5r5e.sheet.npc .limited ul li:nth-child(5) input{font-size:1rem}.l5r5e.npc .sheet-header h1:before{top:-3.75rem}.l5r5e.npc .sheet-header img{flex:0 0 90px;height:90px;width:90px}.l5r5e.npc .sheet-header fieldset{flex:1 1 100%;min-height:2rem;width:100%;margin:0}.l5r5e.npc .sheet-header .header-fields{padding:0}.l5r5e.npc .sheet-header .identity-wrapper{flex:1 1 100%}.l5r5e.npc .sheet-header .identity-wrapper h1{margin:0 0.25rem 1rem 1rem}.l5r5e.npc .sheet-header .identity-wrapper .identity-list{flex:0 0 100%;display:flex;margin:0.25rem 0 0.5rem}.l5r5e.npc .sheet-header .identity-wrapper .identity-list li{flex:1;flex-wrap:wrap;display:flex}.l5r5e.npc .sheet-header .identity-wrapper .identity-list li select{width:100%;background:rgba(255,255,255,0.5);border:0 none;text-transform:capitalize;color:#764f40;font-family:"PatrickHand",sans-serif;font-weight:bold;font-size:1rem;letter-spacing:0.15rem}.l5r5e.npc .sheet-header .identity-wrapper .identity-list li i,.l5r5e.npc .sheet-header .identity-wrapper .identity-list li input{font-size:1.25rem;height:1.5rem;line-height:1.5rem;width:7.25rem;margin:auto;text-align:center}.l5r5e.npc .sheet-header .affinities{display:flex;flex-wrap:wrap}.l5r5e.npc .sheet-header .affinities select{position:relative;background:transparent;border:0 none;margin:0;padding:0;text-align:left;font-weight:bold;margin:0 0 0.25rem 0;color:#5a6e5a}.l5r5e.npc .sheet-header .affinities input{flex:1rem;font-size:1rem;height:1.5rem}.l5r5e.npc .sheet-header .social-content{margin-bottom:0.5rem}.l5r5e.npc .sheet-header .social-content .attitude{height:1.5rem;padding-left:0.25rem}.l5r5e.npc .sheet-header .social-content .attitude input{height:1.5rem;flex:1;margin-right:0}.l5r5e.npc .sheet-body{padding:0}.l5r5e.npc .npc-skill{display:flex;width:100%;line-height:2rem;font-size:0.75rem;text-align:center}.l5r5e.npc .npc-skill li{flex:1;padding:0.25rem;text-transform:uppercase;color:#fff}.l5r5e.npc .npc-skill li:nth-child(1){background:#4b4641}.l5r5e.npc .npc-skill li:nth-child(2){background:#699678}.l5r5e.npc .npc-skill li:nth-child(3){background:#9b7350}.l5r5e.npc .npc-skill li:nth-child(4){background:#917896}.l5r5e.npc .npc-skill li:nth-child(5){flex:1.25;background:#5f919b}.l5r5e.npc .npc-skill input[type="number"]{float:right;font-size:1.25rem;height:2rem;width:1rem;margin:0;padding:0;border:0 none;background:transparent;color:#fff}.l5r5e.npc article{min-height:auto;display:flex}.l5r5e.npc article .weapons-content{flex:1}.l5r5e.npc article fieldset{flex:0 0 calc(100% - 0.5rem)}.l5r5e.npc article .items-content{flex:0 0 calc(100% - 0.5rem);margin:1rem 0.25rem 0}.l5r5e.npc .npc-note .editor{min-height:6rem;max-height:12rem}.l5r5e nav.sheet-tabs{height:3rem;line-height:3rem;font-family:"BrushtipTexe",sans-serif;font-size:1.25rem;border:0 none;border-bottom:1px solid rgba(186,187,177,0.5);margin-bottom:0;background:rgba(255,255,255,0.5);color:rgba(0,0,0,0.5);--notchSize: 0.5rem;-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100%) 100%, var(--notchSize) 100%, 0% calc(100%));clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100%) 100%, var(--notchSize) 100%, 0% calc(100%))}.l5r5e nav .item:hover{background-color:#5a6e5a;color:rgba(255,255,255,0.65);text-shadow:none;-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 0 100%, 0% 0%, 0% 100%);clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 0 100%, 0% 0%, 0% 100%)}.l5r5e nav .item.active{background-color:rgba(73,12,11,0.85);color:#fff;background-color:rgba(73,12,11,0.85);-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 0 100%, 0% 0%, 0% 100%);clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 0 100%, 0% 0%, 0% 100%)}.l5r5e nav .item.active:hover{background-color:rgba(73,12,11,0.85);cursor:default}.l5r5e .rings{display:flex;flex-wrap:wrap;color:rgba(255,255,255,0.65)}.l5r5e .rings #earth,.l5r5e .rings #air,.l5r5e .rings #water,.l5r5e .rings #fire,.l5r5e .rings #void{position:relative;flex:1 1 50%;text-align:center}.l5r5e .rings #earth i.i_earth,.l5r5e .rings #earth i.i_water,.l5r5e .rings #earth i.i_fire,.l5r5e .rings #earth i.i_air,.l5r5e .rings #earth i.i_void,.l5r5e .rings #air i.i_earth,.l5r5e .rings #air i.i_water,.l5r5e .rings #air i.i_fire,.l5r5e .rings #air i.i_air,.l5r5e .rings #air i.i_void,.l5r5e .rings #water i.i_earth,.l5r5e .rings #water i.i_water,.l5r5e .rings #water i.i_fire,.l5r5e .rings #water i.i_air,.l5r5e .rings #water i.i_void,.l5r5e .rings #fire i.i_earth,.l5r5e .rings #fire i.i_water,.l5r5e .rings #fire i.i_fire,.l5r5e .rings #fire i.i_air,.l5r5e .rings #fire i.i_void,.l5r5e .rings #void i.i_earth,.l5r5e .rings #void i.i_water,.l5r5e .rings #void i.i_fire,.l5r5e .rings #void i.i_air,.l5r5e .rings #void i.i_void{font-size:5rem;line-height:4.75rem}.l5r5e .rings #earth label,.l5r5e .rings #air label,.l5r5e .rings #water label,.l5r5e .rings #fire label,.l5r5e .rings #void label{position:relative;width:5rem;line-height:0;float:right}.l5r5e .rings #earth input,.l5r5e .rings #air input,.l5r5e .rings #water input,.l5r5e .rings #fire input,.l5r5e .rings #void input{position:absolute;height:2rem;width:2rem;border-radius:100%;top:0;left:0;text-align:center;font-size:1rem;border:2px solid rgba(186,187,177,0.5);color:rgba(255,255,255,0.65)}.l5r5e .rings #earth input:hover,.l5r5e .rings #air input:hover,.l5r5e .rings #water input:hover,.l5r5e .rings #fire input:hover,.l5r5e .rings #void input:hover{border:2px solid rgba(255,0,0,0.75);text-shadow:0 0 3px red;box-shadow:0 0 3px inset red}.l5r5e .rings #earth{float:right;color:#699678}.l5r5e .rings #earth input{top:auto;right:0;bottom:-0.9rem;left:auto;background:#699678}.l5r5e .rings #earth label strong{position:absolute;bottom:0.75rem;left:-1.75rem}.l5r5e .rings #air{color:#917896}.l5r5e .rings #air input{top:auto;right:auto;bottom:-0.9rem;left:0;background:#917896}.l5r5e .rings #air label{float:left}.l5r5e .rings #air label strong{position:absolute;bottom:0.75rem;right:-1rem}.l5r5e .rings #water{float:right;color:#5f919b;padding-right:2rem}.l5r5e .rings #water input{top:17%;right:-1.25rem;bottom:auto;left:auto;background:#5f919b}.l5r5e .rings #water label strong{position:absolute;bottom:-0.75rem;right:2rem}.l5r5e .rings #fire{color:#9b7350;padding-left:2rem}.l5r5e .rings #fire input{top:17%;right:auto;bottom:auto;left:-1.25rem;background:#9b7350}.l5r5e .rings #fire label{float:left}.l5r5e .rings #fire label strong{position:absolute;bottom:-0.75rem;right:2rem}.l5r5e .rings #void{top:-2rem;margin:0 calc(50% - 2.5rem);color:#4b4641}.l5r5e .rings #void input{top:-1rem;right:auto;bottom:auto;left:30%;background:#4b4641}.l5r5e .rings #void label strong{position:absolute;bottom:-0.75rem;left:1.75rem}.l5r5e.sheet article .skills-wrapper,.l5r5e.sheet article .techniques-wrapper{flex:50%}.l5r5e.sheet article .skills-wrapper>li,.l5r5e.sheet article .techniques-wrapper>li{display:flex;flex-wrap:wrap;font-size:0.85rem;margin:0 0 1rem;border:1px solid rgba(186,187,177,0.5);--notchSize: 0.75rem;-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 100%);clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 100%)}.l5r5e.sheet article .skills-wrapper>li h4,.l5r5e.sheet article .techniques-wrapper>li h4{flex:100%;margin:0;padding:0.5rem 0.5rem 0;text-align:center;background:rgba(186,187,177,0.5);color:#5a6e5a;--notchSize: 0.5rem;-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100%) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100%));clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100%) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100%))}.l5r5e.sheet article .skills-wrapper>li ul,.l5r5e.sheet article .techniques-wrapper>li ul{flex:50%;padding:0.25rem 0.5rem 0.25rem 0}.l5r5e.sheet article .skills-wrapper>li ul li,.l5r5e.sheet article .techniques-wrapper>li ul li{text-align:left;line-height:2rem;margin:0.25rem 0}.l5r5e.sheet article .skills-wrapper>li ul li.skill,.l5r5e.sheet article .techniques-wrapper>li ul li.skill{text-align:right}.l5r5e.sheet article .skills-wrapper>li ul li.skill span,.l5r5e.sheet article .techniques-wrapper>li ul li.skill span{color:rgba(0,0,0,0.5)}.l5r5e.sheet article .skills-wrapper>li ul li.skill span[data-skill="melee"],.l5r5e.sheet article .skills-wrapper>li ul li.skill span[data-skill="ranged"],.l5r5e.sheet article .skills-wrapper>li ul li.skill span[data-skill="unarmed"],.l5r5e.sheet article .techniques-wrapper>li ul li.skill span[data-skill="melee"],.l5r5e.sheet article .techniques-wrapper>li ul li.skill span[data-skill="ranged"],.l5r5e.sheet article .techniques-wrapper>li ul li.skill span[data-skill="unarmed"]{float:left;line-height:1rem;width:calc(100% - 2rem)}.l5r5e.sheet article .skills-wrapper>li ul.skill-category-ring-actions,.l5r5e.sheet article .techniques-wrapper>li ul.skill-category-ring-actions{padding:0.25rem 0 0.25rem 0.5rem;border-left:1px solid rgba(186,187,177,0.5)}.l5r5e.sheet article .skills-wrapper>li input,.l5r5e.sheet article .techniques-wrapper>li input{width:1.75rem;height:1.75rem;text-align:center}.l5r5e.sheet article .skills-wrapper>li:last-child,.l5r5e.sheet article .techniques-wrapper>li:last-child{margin:0}.l5r5e .item-list{flex:100%}.l5r5e .item-list .item .item-header{display:flex}.l5r5e .item-list .item .item-header .item-img{flex:0 0 32px;padding-right:0.25rem}.l5r5e .item-list .item .item-header .item-img img{border:1px solid rgba(0,0,0,0.1)}.l5r5e .item-list .item .item-header .item-name{flex:1 1 auto;font-size:1rem;line-height:1rem;color:#764f40}.l5r5e .item-list .item .item-header .item-edit,.l5r5e .item-list .item .item-header .item-delete,.l5r5e .item-list .item .item-header .technique-edit,.l5r5e .item-list .item .item-header .technique-delete,.l5r5e .item-list .item .item-header .peculiarity-edit,.l5r5e .item-list .item .item-header .peculiarity-delete,.l5r5e .item-list .item .item-header .property-edit,.l5r5e .item-list .item .item-header .property-delete{line-height:1rem;font-size:0.75rem;flex:0 0 1rem;padding:0 0.1rem}.l5r5e .item-list .item .item-header .icon-stat-container{line-height:1rem;font-size:0.75rem;padding:0 0.25rem;color:rgba(0,0,0,0.75)}.l5r5e .item-list .item .item-header .item-edit:hover,.l5r5e .item-list .item .item-header .item-delete:hover,.l5r5e .item-list .item .item-header .technique-edit:hover,.l5r5e .item-list .item .item-header .technique-delete:hover,.l5r5e .item-list .item .item-header .peculiarity-edit:hover,.l5r5e .item-list .item .item-header .peculiarity-delete:hover,.l5r5e .item-list .item .item-header .property-edit:hover,.l5r5e .item-list .item .item-header .property-delete:hover{text-shadow:0 0 3px red}.l5r5e .item-list .item .item-properties{display:flex;flex-direction:row}.l5r5e .item-list .item .item-properties>li{margin:0.25rem 0.1rem;padding:0.1rem 0.5rem;background-color:rgba(255,255,255,0.5);border:1px solid rgba(255,255,255,0.65);border-radius:1rem;width:auto;font-size:0.75rem;color:rgba(0,0,0,0.75)}.l5r5e .item-list .item .item-properties>li:first-child{margin-left:0}.l5r5e .item-list .item .item-properties>li:last-child{margin-right:0}.l5r5e .item-list .item p{font-size:0.85rem;margin:0;padding:0 0.5rem;max-width:100%}.l5r5e .item-list .item p:first-child{padding-top:0.5rem}.l5r5e .item-list .item p:last-child{padding-bottom:0.5rem}.l5r5e.advancement .sheet-header,.l5r5e.armor .sheet-header,.l5r5e.item .sheet-header,.l5r5e.peculiarity .sheet-header,.l5r5e.property .sheet-header,.l5r5e.technique .sheet-header,.l5r5e.weapon .sheet-header{margin-bottom:0.5rem}.l5r5e.advancement .sheet-header img,.l5r5e.armor .sheet-header img,.l5r5e.item .sheet-header img,.l5r5e.peculiarity .sheet-header img,.l5r5e.property .sheet-header img,.l5r5e.technique .sheet-header img,.l5r5e.weapon .sheet-header img{flex:0 0 90px;height:90px;width:90px;background:rgba(255,255,255,0.25)}.l5r5e.advancement .sheet-header h1 input,.l5r5e.armor .sheet-header h1 input,.l5r5e.item .sheet-header h1 input,.l5r5e.peculiarity .sheet-header h1 input,.l5r5e.property .sheet-header h1 input,.l5r5e.technique .sheet-header h1 input,.l5r5e.weapon .sheet-header h1 input{height:5.5rem}.l5r5e.advancement fieldset input[name="data.effects"],.l5r5e.armor fieldset input[name="data.effects"],.l5r5e.item fieldset input[name="data.effects"],.l5r5e.peculiarity fieldset input[name="data.effects"],.l5r5e.property fieldset input[name="data.effects"],.l5r5e.technique fieldset input[name="data.effects"],.l5r5e.weapon fieldset input[name="data.effects"]{text-align:left}.l5r5e.advancement .sheet-body,.l5r5e.armor .sheet-body,.l5r5e.item .sheet-body,.l5r5e.peculiarity .sheet-body,.l5r5e.property .sheet-body,.l5r5e.technique .sheet-body,.l5r5e.weapon .sheet-body{flex:100%;height:calc(100% - 90px - 0.25rem);align-self:stretch;display:flex;flex-wrap:wrap}.l5r5e.advancement article,.l5r5e.armor article,.l5r5e.item article,.l5r5e.peculiarity article,.l5r5e.property article,.l5r5e.technique article,.l5r5e.weapon article{display:flex;flex-wrap:wrap;min-height:auto}.l5r5e.advancement article label,.l5r5e.armor article label,.l5r5e.item article label,.l5r5e.peculiarity article label,.l5r5e.property article label,.l5r5e.technique article label,.l5r5e.weapon article label{color:#5a6e5a;margin:0.25rem;line-height:1.5rem}.l5r5e.advancement article.attributes,.l5r5e.armor article.attributes,.l5r5e.item article.attributes,.l5r5e.peculiarity article.attributes,.l5r5e.property article.attributes,.l5r5e.technique article.attributes,.l5r5e.weapon article.attributes{align-self:flex-start;width:100%;height:6.5rem}.l5r5e.advancement article.attributes #advancement_type,.l5r5e.advancement article.attributes #advancement_skill,.l5r5e.armor article.attributes #advancement_type,.l5r5e.armor article.attributes #advancement_skill,.l5r5e.item article.attributes #advancement_type,.l5r5e.item article.attributes #advancement_skill,.l5r5e.peculiarity article.attributes #advancement_type,.l5r5e.peculiarity article.attributes #advancement_skill,.l5r5e.property article.attributes #advancement_type,.l5r5e.property article.attributes #advancement_skill,.l5r5e.technique article.attributes #advancement_type,.l5r5e.technique article.attributes #advancement_skill,.l5r5e.weapon article.attributes #advancement_type,.l5r5e.weapon article.attributes #advancement_skill{flex:0 0 calc(40% - 2rem);margin:0.25rem}.l5r5e.advancement article.attributes select[name="data.skill"],.l5r5e.advancement article.attributes select[name="data.ring"],.l5r5e.advancement article.attributes select[name="data.peculiarity_type"],.l5r5e.advancement article.attributes select[name="data.technique_type"],.l5r5e.armor article.attributes select[name="data.skill"],.l5r5e.armor article.attributes select[name="data.ring"],.l5r5e.armor article.attributes select[name="data.peculiarity_type"],.l5r5e.armor article.attributes select[name="data.technique_type"],.l5r5e.item article.attributes select[name="data.skill"],.l5r5e.item article.attributes select[name="data.ring"],.l5r5e.item article.attributes select[name="data.peculiarity_type"],.l5r5e.item article.attributes select[name="data.technique_type"],.l5r5e.peculiarity article.attributes select[name="data.skill"],.l5r5e.peculiarity article.attributes select[name="data.ring"],.l5r5e.peculiarity article.attributes select[name="data.peculiarity_type"],.l5r5e.peculiarity article.attributes select[name="data.technique_type"],.l5r5e.property article.attributes select[name="data.skill"],.l5r5e.property article.attributes select[name="data.ring"],.l5r5e.property article.attributes select[name="data.peculiarity_type"],.l5r5e.property article.attributes select[name="data.technique_type"],.l5r5e.technique article.attributes select[name="data.skill"],.l5r5e.technique article.attributes select[name="data.ring"],.l5r5e.technique article.attributes select[name="data.peculiarity_type"],.l5r5e.technique article.attributes select[name="data.technique_type"],.l5r5e.weapon article.attributes select[name="data.skill"],.l5r5e.weapon article.attributes select[name="data.ring"],.l5r5e.weapon article.attributes select[name="data.peculiarity_type"],.l5r5e.weapon article.attributes select[name="data.technique_type"]{flex:0 0 calc(40% - 0.5rem);margin:0.25rem}.l5r5e.advancement article.attributes .attribute-value,.l5r5e.advancement article.attributes .attribute,.l5r5e.advancement article.attributes .value,.l5r5e.armor article.attributes .attribute-value,.l5r5e.armor article.attributes .attribute,.l5r5e.armor article.attributes .value,.l5r5e.item article.attributes .attribute-value,.l5r5e.item article.attributes .attribute,.l5r5e.item article.attributes .value,.l5r5e.peculiarity article.attributes .attribute-value,.l5r5e.peculiarity article.attributes .attribute,.l5r5e.peculiarity article.attributes .value,.l5r5e.property article.attributes .attribute-value,.l5r5e.property article.attributes .attribute,.l5r5e.property article.attributes .value,.l5r5e.technique article.attributes .attribute-value,.l5r5e.technique article.attributes .attribute,.l5r5e.technique article.attributes .value,.l5r5e.weapon article.attributes .attribute-value,.l5r5e.weapon article.attributes .attribute,.l5r5e.weapon article.attributes .value{flex:1 1 auto;margin:0.5rem 0.25rem 0.25rem}.l5r5e.advancement article.attributes select[name="data.advancement_type"],.l5r5e.advancement article.attributes select[name="data.skill"],.l5r5e.armor article.attributes select[name="data.advancement_type"],.l5r5e.armor article.attributes select[name="data.skill"],.l5r5e.item article.attributes select[name="data.advancement_type"],.l5r5e.item article.attributes select[name="data.skill"],.l5r5e.peculiarity article.attributes select[name="data.advancement_type"],.l5r5e.peculiarity article.attributes select[name="data.skill"],.l5r5e.property article.attributes select[name="data.advancement_type"],.l5r5e.property article.attributes select[name="data.skill"],.l5r5e.technique article.attributes select[name="data.advancement_type"],.l5r5e.technique article.attributes select[name="data.skill"],.l5r5e.weapon article.attributes select[name="data.advancement_type"],.l5r5e.weapon article.attributes select[name="data.skill"]{text-transform:capitalize}.l5r5e.advancement article.attributes .type,.l5r5e.armor article.attributes .type,.l5r5e.item article.attributes .type,.l5r5e.peculiarity article.attributes .type,.l5r5e.property article.attributes .type,.l5r5e.technique article.attributes .type,.l5r5e.weapon article.attributes .type{display:block}.l5r5e.advancement article.attributes .type label,.l5r5e.armor article.attributes .type label,.l5r5e.item article.attributes .type label,.l5r5e.peculiarity article.attributes .type label,.l5r5e.property article.attributes .type label,.l5r5e.technique article.attributes .type label,.l5r5e.weapon article.attributes .type label{width:calc(50% - 0.5rem);float:left}.l5r5e.advancement article.attributes .properties,.l5r5e.armor article.attributes .properties,.l5r5e.item article.attributes .properties,.l5r5e.peculiarity article.attributes .properties,.l5r5e.property article.attributes .properties,.l5r5e.technique article.attributes .properties,.l5r5e.weapon article.attributes .properties{flex:0 0 calc(50% - 0.5rem);margin:0.25rem}.l5r5e.advancement article.attributes .equipped,.l5r5e.armor article.attributes .equipped,.l5r5e.item article.attributes .equipped,.l5r5e.peculiarity article.attributes .equipped,.l5r5e.property article.attributes .equipped,.l5r5e.technique article.attributes .equipped,.l5r5e.weapon article.attributes .equipped{flex:100%;margin:0;text-align:right}.l5r5e.advancement article.attributes input[type="text"],.l5r5e.advancement article.attributes input[type="number"],.l5r5e.armor article.attributes input[type="text"],.l5r5e.armor article.attributes input[type="number"],.l5r5e.item article.attributes input[type="text"],.l5r5e.item article.attributes input[type="number"],.l5r5e.peculiarity article.attributes input[type="text"],.l5r5e.peculiarity article.attributes input[type="number"],.l5r5e.property article.attributes input[type="text"],.l5r5e.property article.attributes input[type="number"],.l5r5e.technique article.attributes input[type="text"],.l5r5e.technique article.attributes input[type="number"],.l5r5e.weapon article.attributes input[type="text"],.l5r5e.weapon article.attributes input[type="number"]{width:2rem}.l5r5e.advancement article.attributes input[type="text"].grip,.l5r5e.advancement article.attributes input[type="number"].grip,.l5r5e.armor article.attributes input[type="text"].grip,.l5r5e.armor article.attributes input[type="number"].grip,.l5r5e.item article.attributes input[type="text"].grip,.l5r5e.item article.attributes input[type="number"].grip,.l5r5e.peculiarity article.attributes input[type="text"].grip,.l5r5e.peculiarity article.attributes input[type="number"].grip,.l5r5e.property article.attributes input[type="text"].grip,.l5r5e.property article.attributes input[type="number"].grip,.l5r5e.technique article.attributes input[type="text"].grip,.l5r5e.technique article.attributes input[type="number"].grip,.l5r5e.weapon article.attributes input[type="text"].grip,.l5r5e.weapon article.attributes input[type="number"].grip{width:100%;margin-bottom:0.25rem}.l5r5e.advancement article.attributes input[name="data.zeni"],.l5r5e.armor article.attributes input[name="data.zeni"],.l5r5e.item article.attributes input[name="data.zeni"],.l5r5e.peculiarity article.attributes input[name="data.zeni"],.l5r5e.property article.attributes input[name="data.zeni"],.l5r5e.technique article.attributes input[name="data.zeni"],.l5r5e.weapon article.attributes input[name="data.zeni"]{width:7rem;float:right}.l5r5e.advancement article.attributes fieldset input[type="text"],.l5r5e.advancement article.attributes fieldset input[type="number"],.l5r5e.armor article.attributes fieldset input[type="text"],.l5r5e.armor article.attributes fieldset input[type="number"],.l5r5e.item article.attributes fieldset input[type="text"],.l5r5e.item article.attributes fieldset input[type="number"],.l5r5e.peculiarity article.attributes fieldset input[type="text"],.l5r5e.peculiarity article.attributes fieldset input[type="number"],.l5r5e.property article.attributes fieldset input[type="text"],.l5r5e.property article.attributes fieldset input[type="number"],.l5r5e.technique article.attributes fieldset input[type="text"],.l5r5e.technique article.attributes fieldset input[type="number"],.l5r5e.weapon article.attributes fieldset input[type="text"],.l5r5e.weapon article.attributes fieldset input[type="number"]{float:right}.l5r5e.advancement article.attributes .attribute.full,.l5r5e.armor article.attributes .attribute.full,.l5r5e.item article.attributes .attribute.full,.l5r5e.peculiarity article.attributes .attribute.full,.l5r5e.property article.attributes .attribute.full,.l5r5e.technique article.attributes .attribute.full,.l5r5e.weapon article.attributes .attribute.full{flex:100%}.l5r5e.advancement article.attributes .attribute.full input,.l5r5e.armor article.attributes .attribute.full input,.l5r5e.item article.attributes .attribute.full input,.l5r5e.peculiarity article.attributes .attribute.full input,.l5r5e.property article.attributes .attribute.full input,.l5r5e.technique article.attributes .attribute.full input,.l5r5e.weapon article.attributes .attribute.full input{float:right;width:70%}.l5r5e.advancement article.infos,.l5r5e.armor article.infos,.l5r5e.item article.infos,.l5r5e.peculiarity article.infos,.l5r5e.property article.infos,.l5r5e.technique article.infos,.l5r5e.weapon article.infos{display:flex;align-self:stretch;height:calc(100% - 7.5rem);width:100%;padding-bottom:1.25rem}.l5r5e.advancement article.infos .reference,.l5r5e.armor article.infos .reference,.l5r5e.item article.infos .reference,.l5r5e.peculiarity article.infos .reference,.l5r5e.property article.infos .reference,.l5r5e.technique article.infos .reference,.l5r5e.weapon article.infos .reference{flex:0 0 calc(100% - 0.5rem);margin:0.5rem 0.25rem}.l5r5e.advancement article.infos .reference input[name="data.book_reference"],.l5r5e.armor article.infos .reference input[name="data.book_reference"],.l5r5e.item article.infos .reference input[name="data.book_reference"],.l5r5e.peculiarity article.infos .reference input[name="data.book_reference"],.l5r5e.property article.infos .reference input[name="data.book_reference"],.l5r5e.technique article.infos .reference input[name="data.book_reference"],.l5r5e.weapon article.infos .reference input[name="data.book_reference"]{float:right;width:70%}.l5r5e.advancement article.infos fieldset,.l5r5e.armor article.infos fieldset,.l5r5e.item article.infos fieldset,.l5r5e.peculiarity article.infos fieldset,.l5r5e.property article.infos fieldset,.l5r5e.technique article.infos fieldset,.l5r5e.weapon article.infos fieldset{align-self:stretch;height:calc(100% - 2rem);box-sizing:content-box}.l5r5e.advancement article.properties fieldset,.l5r5e.armor article.properties fieldset,.l5r5e.item article.properties fieldset,.l5r5e.peculiarity article.properties fieldset,.l5r5e.property article.properties fieldset,.l5r5e.technique article.properties fieldset,.l5r5e.weapon article.properties fieldset{margin-bottom:0.5rem}.l5r5e.advancement article.attributes .attribute-value,.l5r5e.advancement article.attributes .attribute,.l5r5e.advancement article.attributes .value{flex:0 0 calc(33% - 0.5rem)}.l5r5e.advancement article.attributes .cursus{flex:0 0 calc(19% - 0.5rem);line-height:0.75rem;text-align:right;margin:0 0.25rem}.l5r5e.advancement article.attributes .cursus input{margin-top:0.25rem}.l5r5e.peculiarity article.attributes .cursus,.l5r5e.technique article.attributes .cursus{flex:0 0 calc(20% - 0.5rem);line-height:0.75rem;text-align:right;margin:0 0.25rem}.l5r5e.peculiarity article.attributes .cursus input,.l5r5e.technique article.attributes .cursus input{margin-top:0.25rem}.l5r5e.peculiarity article.attributes{height:8.5rem}.l5r5e.peculiarity article.infos{height:calc(100% - 9.5rem)}.l5r5e.item article.attributes{height:4.5rem}.l5r5e.item article.attributes .properties{flex:100%}.l5r5e.item article.infos{flex:0 0 60%;height:calc(100% - 5.5rem)}.l5r5e.item article.properties{flex:0 0 40%;height:calc(100% - 5.5rem)}.l5r5e.property article.infos{height:calc(100% - 0.5rem)}.l5r5e.armor article.attributes{height:9.5rem}.l5r5e.armor article.infos{flex:0 0 60%;height:calc(100% - 10.5rem)}.l5r5e.armor article.properties{flex:0 0 40%;height:calc(100% - 10.5rem)}.l5r5e.weapon article.attributes{height:18.5rem}.l5r5e.weapon article.attributes .stats,.l5r5e.weapon article.attributes .attribute-value{flex:0 0 calc(50% - 0.5rem);flex-wrap:wrap;margin:0.25rem}.l5r5e.weapon article.attributes .stats label,.l5r5e.weapon article.attributes .attribute-value label{width:100%}.l5r5e.weapon article.attributes .value{flex:0 0 calc(25% - 0.5rem)}.l5r5e.weapon article.attributes .category,.l5r5e.weapon article.attributes .skillType{flex:0 0 calc(50% - 0.5rem)}.l5r5e.weapon article.attributes .category input,.l5r5e.weapon article.attributes .category .attribute-dtype,.l5r5e.weapon article.attributes .skillType input,.l5r5e.weapon article.attributes .skillType .attribute-dtype{width:100%;margin:0.25rem}.l5r5e.weapon article.infos{flex:0 0 60%;height:calc(100% - 19.5rem)}.l5r5e.weapon article.properties{flex:0 0 40%;height:calc(100% - 19.5rem)}.l5r5e .item-list>li .item-description{flex:unset;height:0;margin:0;padding:0;font-size:0.75rem;color:rgba(0,0,0,0.75);overflow:hidden;background:rgba(0,0,0,0.05);border:0 none;transition:height 0.25s ease-in}.l5r5e .item-list>li div.item-description{padding:0}.l5r5e .item-list>li div.item-description:hover,.l5r5e .item-list>li div.item-description:active{padding:0}.l5r5e .item-list>li .toggle-active{height:6rem;overflow-y:auto;scrollbar-width:thin;border:1px solid rgba(186,187,177,0.5)}.l5r5e .item-list>li p.toggle-active{padding:0.25rem}.l5r5e .item-list>li:hover .item-description,.l5r5e .item-list>li:active .item-description{height:6rem;overflow-y:auto;scrollbar-width:thin;border:1px solid rgba(186,187,177,0.5)}.l5r5e .item-list>li:hover p .item-description,.l5r5e .item-list>li:active p .item-description{padding:0.25rem}.l5r5e .item-list .stance-content .item-description{display:none;height:auto}.l5r5e .item-list .stance-content .toggle-active{display:block;height:auto;border:0 none}.l5r5e .item-list .stance-content:hover .item-description{height:auto;border:0 none}.l5r5e .item-list .stance-content:hover .toggle-active{display:block}.l5r5e.twenty-questions-dialog .sheet-tabs{position:fixed;flex-direction:column;background:url("../assets/imgs/bg-20nav.webp") no-repeat;background-size:cover;width:4rem;height:41.58rem;margin:1%;line-height:5rem;padding:0.25rem;border-bottom:0 none}.l5r5e.twenty-questions-dialog .errors{position:-webkit-sticky;position:sticky;top:1rem;left:1rem;z-index:999;width:calc(100% - 1rem);background-color:#963c41;border:1px solid rgba(25,0,0,0.75);color:#fff;border-radius:1rem;text-align:center;line-height:2rem}.l5r5e.twenty-questions-dialog h3{font-size:1.25rem;color:#5a6e5a;text-shadow:0 0 rgba(0,0,0,0.25);margin:2rem 0 0.5rem 1rem}.l5r5e.twenty-questions-dialog nav .item{color:#000;font-size:2rem;font-weight:bold;background-color:rgba(255,255,255,0.25)}.l5r5e.twenty-questions-dialog nav .item.active,.l5r5e.twenty-questions-dialog nav .item:hover{color:#fff;background-color:rgba(73,12,11,0.85);--notchSize: 0.5rem;-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)));clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)))}.l5r5e.twenty-questions-dialog nav .item:hover{background-color:#5a6e5a}.l5r5e.twenty-questions-dialog article{padding:2% 2% 2% 18%}.l5r5e.twenty-questions-dialog article label{font-size:0.85rem;line-height:2rem}.l5r5e.twenty-questions-dialog article label.full{display:block;width:100%;text-align:right;font-size:1rem}.l5r5e.twenty-questions-dialog article label.full input{display:inline;width:80%;float:right;text-align:left;margin-left:0.5rem}.l5r5e.twenty-questions-dialog article>label{font-size:1rem;padding:0 0 0 1rem}.l5r5e.twenty-questions-dialog article table{width:100%}.l5r5e.twenty-questions-dialog article table tr th{color:#5a6e5a;font-weight:normal}.l5r5e.twenty-questions-dialog article table tr td{vertical-align:top;line-height:2rem;border:1px solid rgba(186,187,177,0.5);font-size:0.85rem;padding:0.25rem}.l5r5e.twenty-questions-dialog article table tr td.done{border:1px solid #699678;box-shadow:0 1px 5px #699678}.l5r5e.twenty-questions-dialog article select{height:2rem;color:#764f40;background:rgba(255,255,255,0.25);border:1px solid rgba(255,255,255,0.5);border-radius:0.25rem;padding:0 0.25rem;margin:0.25rem;width:calc(100% - 0.5rem)}.l5r5e.twenty-questions-dialog article textarea{color:#764f40;background:rgba(255,255,255,0.25);border:1px solid rgba(255,255,255,0.5);margin:0 0.25rem 1rem}.l5r5e.twenty-questions-dialog article>ul li{line-height:2rem}.l5r5e.twenty-questions-dialog article hr{border-top:1px solid rgba(0,0,0,0.25)}.l5r5e.twenty-questions-dialog article a.entity-link,.l5r5e.twenty-questions-dialog article a.inline-roll{color:#5a6e5a;background:rgba(255,255,255,0.25);border:1px solid rgba(0,0,0,0.25)}.l5r5e.twenty-questions-dialog article a.entity-link i,.l5r5e.twenty-questions-dialog article a.inline-roll i{color:#5a6e5a}.l5r5e.twenty-questions-dialog article .tq-drag-n-drop{border:0 none;padding:0}.l5r5e.twenty-questions-dialog article .third{width:230px}.l5r5e.twenty-questions-dialog article .fifty{width:49%}.l5r5e.twenty-questions-dialog article .or{width:100px}.l5r5e.twenty-questions-dialog article .dropbox{min-height:75px}.l5r5e.twenty-questions-dialog article .checklist{margin:0.25rem 0.25rem 1rem}.l5r5e.twenty-questions-dialog article .checklist strong{display:block;width:100%;color:#764f40}.l5r5e.twenty-questions-dialog article .checklist label{font-size:0.85rem;flex:0 0 auto;margin:0 0.25rem 0.25rem;padding:0 0.5rem;color:#5a6e5a;background:rgba(255,255,255,0.5);border:1px solid #5a6e5a;border-radius:1rem}.l5r5e.twenty-questions-dialog article .checklist label.technique{padding:0.25rem;margin:0.25rem;border-radius:0}.l5r5e.twenty-questions-dialog article .checklist input{margin:0.25rem 0 0 0;height:0.65rem;width:0.65rem}.l5r5e.twenty-questions-dialog article #generchar_disclaimer{color:#963c41;font-weight:bold;font-size:1.25rem;text-align:center;flex:100%;padding:1rem 0}.l5r5e.twenty-questions-dialog article .next{margin:2rem 0 4rem} +body{background:url("../assets/imgs/bg-table.webp") no-repeat center;background-size:cover}body>*{scrollbar-width:thin}.window-app .window-content{z-index:1;position:relative;background:#fffae6 url("../assets/imgs/bg-l5r.webp") no-repeat;background-size:cover;scrollbar-width:thin;padding:0}.window-app .window-content>form,.window-app .window-content>div{padding:0.5rem}.window-app .window-content .compendium,.window-app .window-content .help-dialog{background-position:top;background-size:100%;background:url("../assets/ui/bgSidebar.webp") no-repeat;border:1px solid #c3a582;border-radius:0;color:#fff}.window-app .window-content .compendium ol,.window-app .window-content .help-dialog ol{padding-right:0.25rem}.window-app .window-content .compendium ol li,.window-app .window-content .help-dialog ol li{border-bottom:1px solid rgba(255,255,255,0.25)}.window-app .window-content .compendium .directory-header,.window-app .window-content .help-dialog .directory-header{padding:0.25rem 0}.window-app .window-content .help-dialog{padding:0.5rem 1.5rem}.window-app .window-content .help-dialog button{cursor:default;color:#fff;background:linear-gradient(#5f2841, #411928, #5f2841);background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image-width:0.5rem;border-image-outset:0px}.window-app .window-content .help-dialog button:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}.window-app.sheet .window-content,.window-app.npc .window-content,.window-app.advancement .window-content,.window-app.armor .window-content,.window-app.item .window-content,.window-app.peculiarity .window-content,.window-app.property .window-content,.window-app.technique .window-content,.window-app.weapon .window-content,.window-app.twenty-questions-dialog .window-content{overflow-y:scroll}.window-app .window-resizable-handle{z-index:2;background:rgba(0,0,0,0.75)}.window-app.twenty-questions-dialog .window-content{background:#fffae6 url("../assets/imgs/bg-scroll.webp") no-repeat;background-size:cover}#l5r5e-twenty-questions-dialog{min-height:800px;min-width:600px}*{transition-property:background, color, border-color, text-shadow, box-shadow;transition-duration:0.5s;transition-timing-function:ease}input[type="text"]:focus,input[type="number"]:focus,input[type="password"]:focus,input[type="date"]:focus,input[type="time"]:focus{box-shadow:0 0 6px red}.tabs .item.active{text-shadow:0 0 10px red}#controls .scene-control.active,#controls .control-tool.active,#controls .scene-control:hover,#controls .control-tool:hover{box-shadow:0 0 10px red}#sidebar #settings button,#sidebar .sidebar-tab .action-buttons button{height:2rem;line-height:initial}button:hover{box-shadow:0 0 10px red}button:focus{box-shadow:0 0 10px red}option{font-size:1rem;line-height:1.5rem;padding:0.25rem;color:rgba(0,0,0,0.75)}ul,li{list-style-type:none;margin:0;padding:0}.item-list>li{padding:0.25rem;border:1px solid rgba(0,0,0,0.05);border-bottom:0 none}.item-list>li:nth-child(odd){background:rgba(186,187,177,0.2)}.item-list>li:nth-child(even){background:rgba(186,187,177,0.1)}.item-list>li:last-child{border-bottom:1px solid rgba(0,0,0,0.05)}fieldset{flex:1;display:flex;margin:0 0.25rem;padding:0.25rem 0.5rem;border:1px solid rgba(186,187,177,0.5)}fieldset legend{color:#5a6e5a}fieldset .editor{height:100%}input[type="text"],input[type="number"],input[type="password"],input[type="date"],input[type="time"]{text-align:center;padding:0.25rem;background:rgba(255,255,255,0.5);border:1px solid rgba(186,187,177,0.5);color:#764f40}input[type="text"][disabled],input[type="number"][disabled],input[type="password"][disabled],input[type="date"][disabled],input[type="time"][disabled]{background:rgba(255,255,255,0.25)}.editor,.editor-content{flex:1;height:100%;min-height:5rem}.earth{color:#699678}.air{color:#917896}.water{color:#5f919b}.fire{color:#9b7350}.void{color:#4b4641}table{text-align:center;background:transparent;border:1px solid rgba(186,187,177,0.5)}table thead{background:rgba(186,187,177,0.5);color:#5a6e5a;text-shadow:none;border-bottom:rgba(186,187,177,0.5)}table tr:nth-child(odd){background:rgba(186,187,177,0.2)}table tr:nth-child(even){background:rgba(186,187,177,0.1)}sub,sup{color:rgba(0,0,0,0.5)}.sheet nav.sheet-tabs{font-size:0.75rem}.editor-content ul,.item-description ul{margin:0.5rem 0}.editor-content ul li,.item-description ul li{list-style-type:initial;margin:0.5rem 0 0.5rem 1.5rem;padding:0}.prepared-character{color:#699678}.prepared-adversary{color:#9b7350}.prepared-minion{color:#5f919b}.prepared-icon{font-weight:900;font-family:"Font Awesome 5 Free";-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.prepared-icon-true:before{content:"\f06e"}.prepared-icon-false:before{content:"\f070"}.prepared-icon-null:before{content:"\f2a8"}.window-draggable-handle{z-index:2}@font-face{font-family:"LogotypeL5r";src:url("../fonts/LogotypeL5r.ttf") format("truetype")}@font-face{font-family:"BrushtipTexe";src:url("../fonts/BrushtipTexe.ttf") format("truetype")}@font-face{font-family:"PatrickHand";src:url("../fonts/PatrickHand.ttf") format("truetype")}@font-face{font-family:"ManoNegra";src:url("../fonts/ManoNegra.ttf") format("truetype")}@font-face{font-family:"ArchitectsDaughter";src:url("../fonts/ArchitectsDaughter.ttf") format("truetype")}body{font:16px "PatrickHand",sans-serif;letter-spacing:0.05rem}h1,h4{font-family:"BrushtipTexe",sans-serif}h1{font-size:2rem}h2{font-size:1.5rem}h3{font-size:1.25rem}h4{font-size:1.25rem}p{font-family:"ArchitectsDaughter",sans-serif}i.i_strife,i.i_success,i.i_explosive,i.i_opportunity,i.i_earth,i.i_water,i.i_fire,i.i_air,i.i_void,i.i_kiho,i.i_maho,i.i_ninjitsu,i.i_prerequisite_exemption,i.i_rituals,i.i_shuji,i.i_invocations,i.i_kata,i.i_imperial,i.i_crab,i.i_crane,i.i_dragon,i.i_lion,i.i_mantis,i.i_phoenix,i.i_scorpion,i.i_tortoise,i.i_unicorn,i.i_bushi,i.i_courtier,i.i_shugenja,i.i_ring,i.i_skill{font-family:"LogotypeL5r",sans-serif;line-height:1rem;font-size:1.25rem;font-style:normal;font-weight:normal;vertical-align:middle;text-shadow:0 0 0 rgba(0,0,0,0.5)}i.i_strife:before{content:"\E91B";color:#cd0000}i.i_success:before{content:"\E91C";color:#cd0000}i.i_explosive:before{content:"\E91D";color:#cd0000}i.i_opportunity:before{content:"\E91A";color:#cd0000}i.i_earth:before{content:"\E90C";color:#699678}i.i_air:before{content:"\E90B";color:#917896}i.i_water:before{content:"\E90A";color:#5f919b}i.i_fire:before{content:"\E908";color:#9b7350}i.i_void:before{content:"\E909";color:#4b4641}i.i_invocations:before{content:"\E906";color:#ff6400}i.i_kata:before{content:"\E907";color:red}i.i_kiho:before{content:"\E900";color:#009632}i.i_maho:before{content:"\E901";color:#c83200}i.i_ninjitsu:before{content:"\E902";color:#343434}i.i_prerequisite_exemption:before{content:"\E903";color:#343434}i.i_rituals:before{content:"\E904";color:#0096ff}i.i_shuji:before{content:"\E905";color:#00ff96}i.i_crab:before{content:"\E914";color:#82828c}i.i_crane:before{content:"\E915";color:#789191}i.i_dragon:before{content:"\E916";color:#55826e}i.i_lion:before{content:"\E90E";color:#a08c50}i.i_mantis:before{content:"\E90F";color:#2d551e}i.i_phoenix:before{content:"\E910";color:#91784b}i.i_scorpion:before{content:"\E911";color:#9b463c}i.i_tortoise:before{content:"\E912";color:#b4c82d}i.i_unicorn:before{content:"\E913";color:#785a87}i.i_imperial:before{content:"\E90D";color:#78ffb4}i.i_bushi:before{content:"\E917";color:#a55a5a}i.i_courtier:before{content:"\E918";color:#6982a5}i.i_shugenja:before{content:"\E919";color:#5aa582}i.i_ring{content:"";background:transparent url("../assets/dices/default/ring_blank.svg") no-repeat 0 center;display:inline-block;height:1rem;width:0.75rem}i.i_skill{content:"";background:transparent url("../assets/dices/default/skill_blank.svg") no-repeat 0 0;display:inline-block;height:1rem;width:1rem}body,#navigation #scene-list .scene.view,#navigation #scene-list .scene.context,#navigation #nav-toggle,#navigation #scene-list .scene.nav-item,#controls .scene-control.active,#controls .control-tool.active,#controls .scene-control:hover,#controls .control-tool:hover,#client-settings .window-content form .form-group>label,#client-settings .window-content form .form-group select,#client-settings .form-group input,.app.window-app .form-group label,#sidebar .sidebar-tab #chat-controls div.roll-type-select select,#sidebar .sidebar-tab #chat-controls div.roll-type-select i.fas{cursor:url("../assets/cursors/normal.webp"),default !important}a,#logo,#hotbar .macro,#playlists-popout .global-volume::-webkit-slider-thumb,#sidebar #playlists .global-volume::-webkit-slider-thumb,#playlists-popout li.playlist:not(:first-of-type) li.sound .sound-volume::-webkit-slider-thumb,#sidebar #playlists li.playlist:not(:first-of-type) li.sound .sound-volume::-webkit-slider-thumb,#sidebar #settings button,.app.window-app.sheet.wfrp4e.actor.character-sheet .tab.main.active .main-row .movement.row-section .move-value .auto-calc-toggle,.app.window-app.sheet.wfrp4e.actor.npc-sheet .main-row .movement.row-section .move-value .auto-calc-toggle,.app.window-app.sheet.wfrp4e.actor.creature-sheet .main-row .movement.row-section .move-value .auto-calc-toggle,.app.window-app .form-group input[type="range"]::-webkit-slider-thumb,.token-sheet .tab[data-tab="image"] input[type="range"]::-webkit-slider-thumb,#drawing-config .tab[data-tab="image"] input[type="range"]::-webkit-slider-thumb,.metacurrency-value,.overcast-button,.chargen-button,#controls .scene-control,#controls .control-tool,#effects-config .flex2::-webkit-slider-thumb,#client-settings section.content .submenu>button,#client-settings .window-content button label,form .form-group .form-fields button,.sidebar-tab .action-buttons button,.dialog .dialog-buttons button,.item-edit,.item-delete,.technique-edit,.technique-delete,.peculiarity-edit,.peculiarity-delete,.attribute-dtype,form button,label{cursor:url("../assets/cursors/pointer.webp"),pointer !important}.draggable{cursor:url("../assets/cursors/drag.webp"),move !important}.dice-roll .dice-formula,.dice-roll .dice-total{background:rgba(255,255,255,0.1);border:rgba(255,255,255,0.75)}.chat-dice>img{border:1px solid transparent;background-repeat:no-repeat;background-position:center;background-size:100%;height:44px;width:44px;outline:none;margin:0;flex:0 0 20px;display:inline-block}.chat-profil{text-align:center;vertical-align:middle}.chat-profil-stance{font-size:40px;position:relative;top:8px;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}.chat-profil-element{flex-wrap:wrap;flex-grow:1}.chat-profil-element-skill{flex-grow:3}.dice-picker-dialog *{transition:none}.dice-picker-dialog input[type="text"]:focus,.dice-picker-dialog input[type="text"]:hover{box-shadow:none !important;border:none !important;text-shadow:none !important}.dice-picker-dialog img{border:0}.dice-picker-dialog table{text-align:center;background:none;border:none}.dice-picker-dialog table td:first-child{width:200px}.dice-picker-dialog table td{width:240px}.dice-picker-dialog table td:last-child{width:200px}.dice-picker-dialog .pointer-choice{cursor:url("../assets/cursors/pointer.webp"),pointer}.dice-picker-dialog .ring-selection.ring-selected i{text-shadow:0px 1px 1px red}.dice-picker-dialog .ring-selection.ring-selected strong{color:rgba(255,0,0,0.75)}.dice-picker-dialog .ring-selection.ring-selected input{border:2px solid rgba(255,0,0,0.75) !important}.dice-picker-dialog .quantity{font-size:xx-large}.dice-picker-dialog .third{display:inline-block;text-align:center;vertical-align:middle}.dice-picker-dialog .dice-container{position:relative;text-align:center}.dice-picker-dialog .dice-container>img{height:40px;width:40px}.dice-picker-dialog .dice-value{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.dice-picker-dialog .input-dice{width:20px;color:#0f0f0e;background:none;border:none;font-size:large}.dice-picker-dialog .input-dice-ring{color:#f0f0e0}.dice-picker-dialog .input-dice-skill{color:#0f0f0e}.roll-n-keep-dialog img{border:0}.roll-n-keep-dialog .profil{border-bottom:1px solid #782e22}.roll-n-keep-dialog .dropbox{min-height:100px}.roll-n-keep-dialog .dropbox.discards{border:1px solid gray}.roll-n-keep-dialog .dropbox.rerolls{border:1px solid orangered}.roll-n-keep-dialog .dropbox.keeps{border:1px solid green}.roll-n-keep-dialog .dice{height:40px;width:40px}.roll-n-keep-dialog .discard{filter:opacity(0.5);border:3px solid gray}.roll-n-keep-dialog .reroll{filter:opacity(0.5);border:3px solid orangered}.roll-n-keep-dialog .keep{border:3px solid green}.gm-tools-dialog{bottom:10px;right:5px;display:flex}.gm-tools-dialog .window-content{text-align:center;vertical-align:middle}.gm-tools-dialog .window-content .gm-tools-container{flex:1;display:flex;flex-flow:wrap}.gm-tools-dialog .window-content .gm-tools-container div{flex:1;cursor:url("../assets/cursors/pointer.webp"),pointer}.gm-tools-dialog .window-content .gm-tools-container .difficulty{font-size:60px}.gm-tools-dialog .window-content .gm-tools-container i{font-size:60px;vertical-align:middle}.gm-tools-dialog .window-draggable-handle{display:none}button{font-size:0.75rem;cursor:url("../assets/cursors/pointer.webp"),pointer}#sidebar{padding:0.5rem 0.25rem 0.5rem 0.5rem;background-position:top;background-size:100%;background:url("../assets/ui/bgSidebar.webp") no-repeat;border:1px solid #c3a582;border-radius:0;overflow:initial;height:calc(100% - 1rem);top:0.5rem;min-width:40px;letter-spacing:0.1rem}#sidebar:before{z-index:-1;content:"";position:absolute;height:calc(100% + 0.6rem);width:100%;border:1px solid #c3a582;border-radius:0;top:-0.35rem;left:0.25rem}#sidebar #sidebar-tabs{flex:0 0 2rem;box-sizing:border-box;margin:0 0 0.25rem;border-bottom:1px solid rgba(195,165,130,0.5);box-shadow:none;display:flex}#sidebar #sidebar-tabs i{flex:1;width:100%;height:100%;background-repeat:no-repeat;background-position:center;background-size:100%;border-radius:100%}#sidebar #sidebar-tabs i.fa-comments{background-image:url("../assets/ui/sidebar/chat.svg")}#sidebar #sidebar-tabs i.fa-comments:before{content:""}#sidebar #sidebar-tabs i.fa-fist-raised{background-image:url("../assets/ui/sidebar/combat-tracker.svg");background-size:85%}#sidebar #sidebar-tabs i.fa-fist-raised:before{content:""}#sidebar #sidebar-tabs i.fa-map{background-image:url("../assets/ui/sidebar/scenes.svg");background-size:80%}#sidebar #sidebar-tabs i.fa-map:before{content:""}#sidebar #sidebar-tabs i.fa-users{background-image:url("../assets/ui/sidebar/actors.svg");background-size:90%}#sidebar #sidebar-tabs i.fa-users:before{content:""}#sidebar #sidebar-tabs i.fa-suitcase{background-image:url("../assets/ui/sidebar/object.svg")}#sidebar #sidebar-tabs i.fa-suitcase:before{content:""}#sidebar #sidebar-tabs i.fa-book-open{background-image:url("../assets/ui/sidebar/journal.svg")}#sidebar #sidebar-tabs i.fa-book-open:before{content:""}#sidebar #sidebar-tabs i.fa-th-list{background-image:url("../assets/ui/sidebar/rolltable.svg");background-size:85%}#sidebar #sidebar-tabs i.fa-th-list:before{content:""}#sidebar #sidebar-tabs i.fa-music{background-image:url("../assets/ui/sidebar/playlist.svg");background-size:80%}#sidebar #sidebar-tabs i.fa-music:before{content:""}#sidebar #sidebar-tabs i.fa-atlas{background-image:url("../assets/ui/sidebar/compendium.svg")}#sidebar #sidebar-tabs i.fa-atlas:before{content:""}#sidebar #sidebar-tabs i.fa-cogs{background-image:url("../assets/ui/sidebar/settings.svg");background-size:85%}#sidebar #sidebar-tabs i.fa-cogs:before{content:""}#sidebar #sidebar-tabs>.item{flex:0 0 1.5rem;height:1.5rem;line-height:1.5rem;margin:0.1rem;border-radius:100%;background:rgba(255,255,255,0.5)}#sidebar #sidebar-tabs>.item.active,#sidebar #sidebar-tabs>.item:hover{background:#fff;border:1px solid #c3a582;box-shadow:0 0 10px red}#sidebar #sidebar-tabs .collapse{position:relative;flex:0 0 0.85rem;line-height:1.75rem;color:#c3a582;text-align:center}#sidebar #sidebar-tabs .collapse i{background-color:transparent}#sidebar.collapsed #sidebar-tabs>.item.active{border:1px solid #c3a582;box-shadow:0 0 10px rgba(255,255,255,0.5);border-radius:100%}#sidebar.collapsed #sidebar-tabs .collapse{flex:0 0 1.5rem;margin:0.1rem}#sidebar .sidebar-tab .chat-control-icon{cursor:url("../assets/cursors/pointer.webp"),pointer}#sidebar .sidebar-tab .action-buttons button{cursor:default;color:#fff;background:linear-gradient(#5f2841, #411928, #5f2841);background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image-width:0.5rem;border-image-outset:0px}#sidebar .sidebar-tab .action-buttons button:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}#sidebar #settings button{cursor:default;color:#fff;background:linear-gradient(#5f2841, #411928, #5f2841);background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image-width:0.5rem;border-image-outset:0px}#sidebar #settings button:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}#sidebar #chat-form textarea,#sidebar .chat-message,#sidebar .blind,#sidebar .whisper,#sidebar #chat-controls .roll-type-select,#sidebar .header-search input{background:transparent url("../assets/ui/chat-texture.webp") no-repeat}#sidebar .header-search input[name="search"]{background-color:rgba(225,215,200,0.25);color:rgba(0,0,0,0.5)}#sidebar .header-search input[name="search"]:focus{background-color:rgba(225,215,200,0.75)}#sidebar .chat-message .message-header{line-height:2rem;border-bottom:1px solid rgba(0,0,0,0.1);margin-bottom:0.25rem;border-radius:0}#sidebar #chat-log{margin:0 0 0.5rem;font-size:1rem}#sidebar #chat-log .message.whisper,#sidebar #chat-log .message.blind,#sidebar #chat-log .message.roll{position:relative}#sidebar #chat-log .message.whisper .message-header .message-metadata:before,#sidebar #chat-log .message.blind .message-header .message-metadata:before,#sidebar #chat-log .message.roll .message-header .message-metadata:before{position:absolute;top:-0.5rem;right:0.25rem;font-size:0.5rem;color:#963c41;height:0}#sidebar #chat-log .message.whisper{font-style:italic}#sidebar #chat-log .message.whisper .message-header .message-metadata:before{content:"(Private)"}#sidebar #chat-log .message.whisper.roll .message-header .message-metadata:before{content:"(Private Roll)"}#sidebar #chat-log .message.blind{font-style:italic}#sidebar #chat-log .message.blind .message-header .message-metadata:before{content:"(Blind)"}#sidebar #chat-log .message.blind.roll .message-header .message-metadata:before{content:"(Blind Roll)"}#sidebar #chat-log .message.roll .message-header .message-metadata:before{content:"(Roll)"}#sidebar .message-sender{color:#963c41;text-shadow:1px 1px 0px rgba(0,0,0,0.25)}#sidebar .message{background-color:rgba(225,215,200,0.25);color:rgba(0,0,0,0.75)}#sidebar .message ul li{padding:0.25rem;border:1px solid rgba(0,0,0,0.05);border-bottom:0 none}#sidebar .message ul li:nth-child(odd){background:rgba(186,187,177,0.2)}#sidebar .message ul li:nth-child(even){background:rgba(186,187,177,0.1)}#sidebar .message ul li:last-child{border-bottom:1px solid rgba(0,0,0,0.05)}#sidebar .message.roll{background-color:rgba(225,215,200,0.75)}#sidebar .message.blind{background-color:rgba(0,0,0,0)}#sidebar .message.whisper{background-color:rgba(225,200,225,0.75)}#hotbar{margin:0}#hotbar #action-bar{flex:0 0 100%}#hotbar #action-bar .macro{background-position:center;background-size:100%;background:linear-gradient(rgba(10,0,20,0.75), rgba(0,0,10,0.75), rgba(10,0,20,0.75));background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp");border-image:url("../assets/ui/macro-button.webp");border-image-slice:8 fill;border-image-width:0.25rem;border-image-outset:0;border-radius:0}#hotbar #action-bar .macro .macro-key{background:rgba(0,0,0,0.5)}#hotbar #action-bar .macro.active{background:linear-gradient(rgba(0,0,10,0.75), rgba(10,0,20,0.75), rgba(0,0,10,0.75));box-shadow:1px 1px 10px #000 inset;border:1px solid rgba(195,165,130,0.5)}#hotbar #action-bar #macro-list{background:transparent;margin:0;padding:0.05rem;border-radius:0;border:0 none;box-shadow:0.25rem 0.25rem 0.5rem rgba(0,0,0,0.75)}#hotbar .bar-controls{background-position:center;background-size:100%;background:linear-gradient(rgba(10,0,20,0.75), rgba(0,0,10,0.75), rgba(10,0,20,0.75));background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 15 repeat;border-image:url("../assets/ui/macro-button.webp") 15 repeat;border-image-width:0.5rem;border-image-outset:0px;box-shadow:0 0 0.25rem rgba(0,0,0,0.75);border-radius:0;margin:0 0.5rem}#hotbar .bar-controls a.page-control,#hotbar .bar-controls span.page-number{font-size:1rem;line-height:0.95rem}#players{border-radius:0;background-position:center;background-size:100%;background:linear-gradient(rgba(10,0,20,0.75), rgba(0,0,10,0.75), rgba(10,0,20,0.75));background-origin:padding-box;border:1px solid #c3a582;background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 15 repeat;border-image:url("../assets/ui/macro-button.webp") 15 repeat;border-image-width:0.5rem;border-image-outset:0px;margin:0;padding:0;left:1.15rem;bottom:0.65rem;box-shadow:inset 0 0 0.5rem rgba(0,0,0,0.75)}#players:before{z-index:-1;position:absolute;content:"";background:transparent url("../assets/ui/players-border.webp") no-repeat 0 0;background-size:100%;display:block;top:-12px;right:10%;left:10%;bottom:0}#logo{content:url("../assets/l5r-logo.webp");height:80px;width:88px;margin-left:0.5rem;opacity:0}#navigation{left:120px}#navigation:before{content:"";background:url("../assets/l5r-logo.webp") no-repeat 0 0;background-size:cover;height:80px;width:88px;opacity:0.65;position:absolute;left:-6.45rem}#navigation:before:hover{opacity:0.75}#navigation #nav-toggle,#navigation #scene-list .scene.nav-item{cursor:default;color:#fff;background:linear-gradient(rgba(10,0,20,0.75), rgba(0,0,10,0.75), rgba(10,0,20,0.75));background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image-width:0.25rem;border-image-outset:0px}#navigation #nav-toggle:hover,#navigation #scene-list .scene.nav-item:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}#navigation #scene-list .scene.nav-item.active{background:linear-gradient(rgba(65,20,15,0.75), rgba(35,10,5,0.75), rgba(65,20,15,0.75))}#navigation #scene-list .scene.nav-item.active:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}#navigation #scene-list .scene.view,#navigation #scene-list .scene.context{cursor:default;color:#fff;background:linear-gradient(rgba(65,20,15,0.75), rgba(35,10,5,0.75), rgba(65,20,15,0.75));background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image-width:0.25rem;border-image-outset:0px;box-shadow:0 0 20px red}#navigation #scene-list .scene.view:hover,#navigation #scene-list .scene.context:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}#controls{top:100px}#controls .scene-control.active,#controls .control-tool.active,#controls .scene-control:hover,#controls .control-tool:hover{background:linear-gradient(rgba(65,20,15,0.75), rgba(35,10,5,0.75), rgba(65,20,15,0.75));background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image-width:0.25rem;border-image-outset:0px;box-shadow:0 0 10px red}#controls .scene-control.active:hover,#controls .control-tool.active:hover,#controls .scene-control:hover:hover,#controls .control-tool:hover:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}#controls .scene-control,#controls .control-tool{color:#fff;background:linear-gradient(rgba(10,0,20,0.75), rgba(0,0,10,0.75), rgba(10,0,20,0.75));background-origin:padding-box;-o-border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image:url("../assets/ui/macro-button.webp") 10 repeat;border-image-width:0.25rem;border-image-outset:0px}#controls .scene-control:hover,#controls .control-tool:hover{background:linear-gradient(rgba(35,10,5,0.75), rgba(65,20,15,0.75), rgba(35,10,5,0.75))}#playlists .playlist .playlist-header h4{font:0.75rem "PatrickHand",sans-serif;text-transform:uppercase;text-align:right}#combat #combat-round .encounters h3{font-size:0.85rem}#combat #combat-round .encounters .encounter i{font-size:23px;vertical-align:middle}#combat #combat-round .encounters .encounter .active{color:#c83200}#combat #combat-round .encounters .encounter-icon{font-weight:900;font-family:"Font Awesome 5 Free";-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}#combat #combat-round .encounters .encounter-icon-intrigue:before{content:"\f21b"}#combat #combat-round .encounters .encounter-icon-duel:before{content:"\f506"}#combat #combat-round .encounters .encounter-icon-skirmish:before{content:"\f505"}#combat #combat-round .encounters .encounter-icon-mass_battle:before{content:"\f447"}#pause img{content:url("../assets/icons/pause.svg")}.compendium-list .compendium-pack .pack-title{margin:0;line-height:1rem}.compendium-list .compendium-pack .compendium-footer{text-align:right;margin-right:2rem;font-size:0.75rem;color:rgba(240,240,225,0.75)}.l5r5e .dice-roll .dice-formula,.l5r5e .dice-roll .dice-total{background:rgba(255,255,255,0.1);border:rgba(255,255,255,0.75)}.l5r5e .chat-dice>img{border:1px solid transparent;background-repeat:no-repeat;background-position:center;background-size:100%;height:44px;width:44px;outline:none;margin:0;flex:0 0 20px;display:inline-block}.l5r5e .chat-profil{text-align:center;vertical-align:middle}.l5r5e .chat-profil-stance{font-size:40px;position:relative;top:8px;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}.l5r5e .chat-profil-element{flex-wrap:wrap;flex-grow:1}.l5r5e .chat-profil-element-skill{flex-grow:3}.l5r5e .dice-picker-dialog *{transition:none}.l5r5e .dice-picker-dialog input[type="text"]:focus,.l5r5e .dice-picker-dialog input[type="text"]:hover{box-shadow:none !important;border:none !important;text-shadow:none !important}.l5r5e .dice-picker-dialog img{border:0}.l5r5e .dice-picker-dialog table{text-align:center;background:none;border:none}.l5r5e .dice-picker-dialog table td:first-child{width:200px}.l5r5e .dice-picker-dialog table td{width:240px}.l5r5e .dice-picker-dialog table td:last-child{width:200px}.l5r5e .dice-picker-dialog .pointer-choice{cursor:url("../assets/cursors/pointer.webp"),pointer}.l5r5e .dice-picker-dialog .ring-selection.ring-selected i{text-shadow:0px 1px 1px red}.l5r5e .dice-picker-dialog .ring-selection.ring-selected strong{color:rgba(255,0,0,0.75)}.l5r5e .dice-picker-dialog .ring-selection.ring-selected input{border:2px solid rgba(255,0,0,0.75) !important}.l5r5e .dice-picker-dialog .quantity{font-size:xx-large}.l5r5e .dice-picker-dialog .third{display:inline-block;text-align:center;vertical-align:middle}.l5r5e .dice-picker-dialog .dice-container{position:relative;text-align:center}.l5r5e .dice-picker-dialog .dice-container>img{height:40px;width:40px}.l5r5e .dice-picker-dialog .dice-value{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.l5r5e .dice-picker-dialog .input-dice{width:20px;color:#0f0f0e;background:none;border:none;font-size:large}.l5r5e .dice-picker-dialog .input-dice-ring{color:#f0f0e0}.l5r5e .dice-picker-dialog .input-dice-skill{color:#0f0f0e}.l5r5e .roll-n-keep-dialog img{border:0}.l5r5e .roll-n-keep-dialog .profil{border-bottom:1px solid #782e22}.l5r5e .roll-n-keep-dialog .dropbox{min-height:100px}.l5r5e .roll-n-keep-dialog .dropbox.discards{border:1px solid gray}.l5r5e .roll-n-keep-dialog .dropbox.rerolls{border:1px solid orangered}.l5r5e .roll-n-keep-dialog .dropbox.keeps{border:1px solid green}.l5r5e .roll-n-keep-dialog .dice{height:40px;width:40px}.l5r5e .roll-n-keep-dialog .discard{filter:opacity(0.5);border:3px solid gray}.l5r5e .roll-n-keep-dialog .reroll{filter:opacity(0.5);border:3px solid orangered}.l5r5e .roll-n-keep-dialog .keep{border:3px solid green}.l5r5e .gm-tools-dialog{bottom:10px;right:5px;display:flex}.l5r5e .gm-tools-dialog .window-content{text-align:center;vertical-align:middle}.l5r5e .gm-tools-dialog .window-content .gm-tools-container{flex:1;display:flex;flex-flow:wrap}.l5r5e .gm-tools-dialog .window-content .gm-tools-container div{flex:1;cursor:url("../assets/cursors/pointer.webp"),pointer}.l5r5e .gm-tools-dialog .window-content .gm-tools-container .difficulty{font-size:60px}.l5r5e .gm-tools-dialog .window-content .gm-tools-container i{font-size:60px;vertical-align:middle}.l5r5e .gm-tools-dialog .window-draggable-handle{display:none}.l5r5e.sheet{min-width:600px}.l5r5e.sheet label:hover{text-shadow:0 0 2px red}.l5r5e.sheet.actor .sheet-header{height:27rem}.l5r5e.sheet.actor .sheet-header h1{flex:auto;margin:0 0 0.25rem 0.5rem}.l5r5e.sheet.actor .sheet-body{height:calc(100% - 27rem)}.l5r5e.sheet.actor .techniques-wrapper fieldset:last-child{margin:0 0 0 0.5rem}.l5r5e.sheet.actor fieldset.advancement{display:block}.l5r5e.sheet.actor .advancements-tabs{height:2rem;line-height:2rem;font-size:1rem}.l5r5e.sheet.actor .compromised input{border:1px solid #963c41;box-shadow:0 1px 5px #963c41}.l5r5e.sheet form{display:flex;flex-wrap:wrap;align-content:flex-start}.l5r5e.sheet .sheet-body{flex:0 0 100%;align-items:flex-start}.l5r5e.sheet .sheet-header{flex:0 0 100%;align-items:flex-start}.l5r5e.sheet .sheet-header input{flex:0 0 3rem;font-size:1.5rem;height:2rem}.l5r5e.sheet .sheet-header h1{flex:0 0 calc(100% - 90px - 1.25rem);margin:0 0 0.25rem 1rem}.l5r5e.sheet .sheet-header h1 input{flex:0 0 100%;font-size:3rem;height:5rem;margin:0;width:100%;text-align:right;color:#963c41;text-shadow:0 0 1px #963c41;background:transparent;border:0 none;border-radius:0;border-bottom:1px solid rgba(90,110,90,0.25)}.l5r5e.sheet .sheet-header h1:before{content:"";position:absolute;background:url("../assets/imgs/brush.webp") no-repeat 0 0;background-size:contain;height:225px;width:100%;z-index:-1;top:-1rem;left:-0.25rem}.l5r5e.sheet .sheet-header img{flex:0 0 150px;height:150px;width:150px;margin-right:0;-o-object-fit:contain;object-fit:contain;background:rgba(255,255,255,0.25);border:1px solid rgba(186,187,177,0.25);--notchSize: 0.5rem;-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)));clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)))}.l5r5e.sheet .sheet-header .header-fields{position:relative;flex:0 0 100%}.l5r5e.sheet .sheet-header .header-fields h2{font-family:"BrushtipTexe",sans-serif;font-size:1rem;float:left;width:30%;padding:0.25rem 0.25rem 0;margin:1rem 20% 0 0;text-align:center;color:rgba(0,0,0,0.25);text-shadow:0 0 1px rgba(90,110,90,0.25);border-bottom:0 none;background:rgba(186,187,177,0.5);--notchSize: 0.5rem;-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100%) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100%));clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100%) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100%))}.l5r5e.sheet .sheet-header .header-fields h2.right{margin:1rem 0 0 20%;-webkit-clip-path:polygon(0% 0, var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 100% 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)));clip-path:polygon(0% 0, var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 100% 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)))}.l5r5e.sheet .sheet-header .header-fields h2:before{content:"";position:absolute;height:1px;width:100%}.l5r5e.sheet .sheet-header .identity-wrapper{display:flex;position:initial;flex-wrap:wrap;flex:0 0 calc(100% - 150px)}.l5r5e.sheet .sheet-header .identity-wrapper label{display:flex;color:#5a6e5a;text-transform:uppercase;font-size:0.75rem;line-height:2rem}.l5r5e.sheet .sheet-header .identity-wrapper label input{flex:1;font-size:1.25rem;height:1.75rem;margin:0 1rem 0 0.5rem;padding:0 0.25rem 0.25rem}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content{flex:0 0 100%;display:flex;flex-wrap:wrap;margin:0;padding-top:0.25rem;padding-left:0.5rem}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li{flex:33%}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(1),.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(2){flex:calc(50% - 3rem);margin:0 0 0.25rem}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(3){flex:auto}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(3) input{width:1rem;padding:0;margin-right:0}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(4),.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(5){flex:60%}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(4) input,.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(5) input{font-size:1rem}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(5){flex:40%}.l5r5e.sheet .sheet-header .identity-wrapper .identity-content li:nth-child(5) input{margin-right:0}.l5r5e.sheet .sheet-header .rings{float:left;width:40%;padding:0;position:relative;top:-2.5rem}.l5r5e.sheet .sheet-header .social-content,.l5r5e.sheet .sheet-header .attributes-wrapper{flex:none;float:left;width:30%;flex-direction:column;display:flex;padding:0.5rem 0 0 0.25rem;border-left:2px solid rgba(186,187,177,0.5)}.l5r5e.sheet .sheet-header .social-content li,.l5r5e.sheet .sheet-header .attributes-wrapper li{position:relative}.l5r5e.sheet .sheet-header .social-content li:before,.l5r5e.sheet .sheet-header .attributes-wrapper li:before{content:"";position:absolute;background:linear-gradient(rgba(186,187,177,0.5), rgba(186,187,177,0));height:2px;width:97%;top:-0.25rem;left:-0.25rem}.l5r5e.sheet .sheet-header .social-content li:nth-child(2):before,.l5r5e.sheet .sheet-header .attributes-wrapper li:nth-child(2):before{width:90%}.l5r5e.sheet .sheet-header .social-content li:nth-child(3):before,.l5r5e.sheet .sheet-header .attributes-wrapper li:nth-child(3):before{width:80%}.l5r5e.sheet .sheet-header .social-content li:nth-child(4):before,.l5r5e.sheet .sheet-header .attributes-wrapper li:nth-child(4):before{width:90%}.l5r5e.sheet .sheet-header .social-content label,.l5r5e.sheet .sheet-header .attributes-wrapper label{display:flex;color:#5a6e5a;text-transform:uppercase;font-size:0.75rem;height:2.5rem;margin:0.25rem 0;flex-direction:row-reverse}.l5r5e.sheet .sheet-header .social-content label strong,.l5r5e.sheet .sheet-header .attributes-wrapper label strong{flex:0 0 calc(100% - 3.5rem)}.l5r5e.sheet .sheet-header .social-content label input,.l5r5e.sheet .sheet-header .attributes-wrapper label input{flex:0 0 3rem;margin:0 0.25rem;height:2rem}.l5r5e.sheet .sheet-header .social-content label input[disabled],.l5r5e.sheet .sheet-header .attributes-wrapper label input[disabled]{flex:0 0 3rem;background:rgba(255,255,255,0.25)}.l5r5e.sheet .sheet-header .attributes-wrapper{padding:0.5rem 0.25rem 0 0;border-left:0 none;border-right:2px solid rgba(186,187,177,0.5)}.l5r5e.sheet .sheet-header .attributes-wrapper li:before{left:auto;right:-0.25rem}.l5r5e.sheet .sheet-header .attributes-wrapper li.void-content:before{width:0}.l5r5e.sheet .sheet-header .attributes-wrapper label{flex-direction:row}.l5r5e.sheet .sheet-header .attributes-wrapper label strong{text-align:right}.l5r5e.sheet .sheet-header .attributes-wrapper label:nth-child(2){position:relative;flex:50%;right:1.5rem}.l5r5e.sheet .sheet-header .attributes-wrapper label:nth-child(2) strong{position:absolute;top:0;left:0;font-size:0.65rem;width:3rem;color:rgba(0,0,0,0.5)}.l5r5e.sheet .sheet-header .attributes-wrapper label:nth-child(2) input{border-top:0 none;font-size:1.25rem;padding-top:0.75rem}.l5r5e.sheet .sheet-header .attributes-wrapper .endurance-content input[disabled],.l5r5e.sheet .sheet-header .attributes-wrapper .composure-content input[disabled]{flex:0 0 5rem;padding-right:3rem}.l5r5e.sheet .sheet-header .attributes-wrapper .void-content{display:flex;position:absolute;bottom:0.25rem;right:35%;width:10rem}.l5r5e.sheet .sheet-header .attributes-wrapper .void-content label{margin:0}.l5r5e.sheet .sheet-header .attributes-wrapper .void-content label strong{flex:1 0 calc(100% - 5rem);padding:0 0.25rem}.l5r5e.sheet .sheet-header .attributes-wrapper .void-content label strong:after{content:"/";position:absolute;right:2.9rem;font-size:1rem;bottom:0.6rem;color:#764f40}.l5r5e.sheet .sheet-header .attributes-wrapper .void-content label input:nth-child(2){flex:3rem;padding-right:1.25rem}.l5r5e.sheet .sheet-header .attributes-wrapper .void-content label input:last-child{flex:1;border:0 none;font-size:1rem;text-align:right;padding-left:0.25rem;padding-top:0.75rem;position:relative;right:2rem}.l5r5e.sheet .sheet-header .attributes-wrapper li{display:flex}.l5r5e.sheet .sheet-header .attributes-wrapper li p{display:none;z-index:2;position:absolute;background:rgba(0,0,0,0.5);color:#fff;line-height:1.5rem;text-align:center;width:100%;padding:0.25rem;bottom:-2.25rem;right:-0.25rem;--notchSize: 0.5rem;-webkit-clip-path:polygon(0% 0, 0 0%, 100% 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)));clip-path:polygon(0% 0, 0 0%, 100% 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)))}.l5r5e.sheet .sheet-header .attributes-wrapper li:hover p{display:block;height:auto}.l5r5e.sheet article{background:rgba(255,255,255,0.5);padding:0.5rem;flex-wrap:wrap;min-height:calc(100% - 3.25rem)}.l5r5e.sheet article.tab[data-tab].active{display:flex}.l5r5e.sheet article .narrative-content,.l5r5e.sheet article .narrative-note{flex:0 0 calc(50% - 0.5rem)}.l5r5e.sheet article .narrative-content fieldset,.l5r5e.sheet article .narrative-note fieldset{display:block}.l5r5e.sheet article .narrative-content fieldset label,.l5r5e.sheet article .narrative-note fieldset label{width:100%}.l5r5e.sheet article .techniques-wrapper .checklist{display:flex;flex-wrap:wrap;font-size:0.85rem;margin:0 0 0.25rem 0.5rem;padding:0.5rem;background:rgba(186,187,177,0.5);--notchSize: 0.25rem;-webkit-clip-path:polygon(0% 0, var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 100% 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)));clip-path:polygon(0% 0, var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 100% 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)))}.l5r5e.sheet article .techniques-wrapper .checklist i{color:rgba(0,0,0,0.5);margin-right:0.5rem}.l5r5e.sheet article .techniques-wrapper .checklist label{flex:0 0 auto;margin:0 0.25rem 0.25rem;padding:0 0.5rem;color:#5a6e5a;background:rgba(255,255,255,0.5);border:1px solid #5a6e5a;border-radius:1rem}.l5r5e.sheet article .techniques-wrapper .checklist input{margin:0.25rem 0 0 0;height:0.65rem;width:0.65rem}.l5r5e.sheet article .stances-content{flex:0 0 100%}.l5r5e.sheet article .stances-content .item-list{position:relative;padding-top:2rem;margin:0}.l5r5e.sheet article .stances-content .stance-content{padding:0;margin:0}.l5r5e.sheet article .stances-content .stance-content label{display:block;position:absolute;top:0;left:0;width:20%;line-height:1.5rem;padding:0.25rem;color:#fff}.l5r5e.sheet article .stances-content .stance-content label.earth{background:#699678}.l5r5e.sheet article .stances-content .stance-content label.air{background:#917896;left:20%}.l5r5e.sheet article .stances-content .stance-content label.water{background:#5f919b;left:40%}.l5r5e.sheet article .stances-content .stance-content label.fire{background:#9b7350;left:60%}.l5r5e.sheet article .stances-content .stance-content label.void{background:#4b4641;left:80%}.l5r5e.sheet article .stances-content .stance-content label input{float:right;position:relative;top:0.3rem;right:0.25rem}.l5r5e.sheet article .weapons-content,.l5r5e.sheet article .armors-content{flex:0 0 calc(50% - 0.5rem)}.l5r5e.sheet .xp,.l5r5e.sheet .money-wrapper{flex:0 0 5rem;flex-direction:column;color:rgba(0,0,0,0.75)}.l5r5e.sheet .xp label,.l5r5e.sheet .money-wrapper label{padding:0.25rem;font-size:0.85rem}.l5r5e.sheet table{font-size:0.85rem;color:rgba(0,0,0,0.75)}.l5r5e.sheet table thead th:first-child{flex:0 0 2rem}.l5r5e.sheet table thead th:nth-child(2){flex:calc(100% - 16rem);padding-left:0.5rem;text-align:left}.l5r5e.sheet table thead th:nth-child(3),.l5r5e.sheet table thead th:nth-child(4){flex:0 0 4rem}.l5r5e.sheet table tbody .curriculum{flex:0 0 2rem}.l5r5e.sheet table tbody .name{flex:calc(100% - 13rem);padding-left:0.5rem;text-align:left}.l5r5e.sheet table tbody .xp,.l5r5e.sheet table tbody .rank{flex:0 0 4rem}.l5r5e.sheet table tbody .actions{flex:0 0 3rem;font-size:0.75rem}.l5r5e.sheet table tbody .actions ul{display:flex;flex-direction:row}.l5r5e.sheet table tbody .actions ul li{flex:0 0 1rem}.l5r5e.sheet table tbody .actions ul li:hover{color:rgba(255,0,0,0.75)}.l5r5e.sheet table tbody img{width:16px;height:16px;border:none}.l5r5e.sheet.actor .initiative-wrapper,.l5r5e.sheet.npc .initiative-wrapper{display:block;flex:100%;text-align:center}.l5r5e.sheet.actor .initiative button,.l5r5e.sheet.npc .initiative button{width:22%;margin:0 0.25rem 0.25rem;padding:0 0.5rem;color:#5a6e5a;background:rgba(255,255,255,0.5);border:1px solid #5a6e5a;border-radius:1rem}.l5r5e.sheet.actor .initiative button:focus,.l5r5e.sheet.npc .initiative button:focus{box-shadow:none}.l5r5e.sheet.actor .limited h1,.l5r5e.sheet.npc .limited h1{margin:0.5rem 0}.l5r5e.sheet.actor .limited img.full,.l5r5e.sheet.npc .limited img.full{flex:initial;height:auto;width:-webkit-max-content;width:-moz-max-content;width:max-content;border:0 none;margin:0 auto}.l5r5e.sheet.actor .limited .sheet-header,.l5r5e.sheet.npc .limited .sheet-header{flex:none;height:auto}.l5r5e.sheet.actor .limited ul,.l5r5e.sheet.npc .limited ul{display:flex;flex-wrap:wrap}.l5r5e.sheet.actor .limited ul li,.l5r5e.sheet.npc .limited ul li{flex:50%;padding:0.25rem 0}.l5r5e.sheet.actor .limited ul li input,.l5r5e.sheet.npc .limited ul li input{width:75%;float:right}.l5r5e.sheet.actor .limited ul li:nth-child(1),.l5r5e.sheet.actor .limited ul li:nth-child(2),.l5r5e.sheet.npc .limited ul li:nth-child(1),.l5r5e.sheet.npc .limited ul li:nth-child(2){flex:calc(50% - 5rem);margin-right:1rem}.l5r5e.sheet.actor .limited ul li:nth-child(3),.l5r5e.sheet.npc .limited ul li:nth-child(3){flex:auto}.l5r5e.sheet.actor .limited ul li:nth-child(3) input,.l5r5e.sheet.npc .limited ul li:nth-child(3) input{width:2rem}.l5r5e.sheet.actor .limited ul li:nth-child(4),.l5r5e.sheet.actor .limited ul li:nth-child(5),.l5r5e.sheet.npc .limited ul li:nth-child(4),.l5r5e.sheet.npc .limited ul li:nth-child(5){flex:calc(50% - 1rem);margin-right:1rem}.l5r5e.sheet.actor .limited ul li:nth-child(4) input,.l5r5e.sheet.actor .limited ul li:nth-child(5) input,.l5r5e.sheet.npc .limited ul li:nth-child(4) input,.l5r5e.sheet.npc .limited ul li:nth-child(5) input{font-size:1rem}.l5r5e.npc .sheet-header h1:before{top:-3.75rem}.l5r5e.npc .sheet-header img{flex:0 0 90px;height:90px;width:90px}.l5r5e.npc .sheet-header fieldset{flex:1 1 100%;min-height:2rem;width:100%;margin:0}.l5r5e.npc .sheet-header .header-fields{padding:0}.l5r5e.npc .sheet-header .identity-wrapper{flex:1 1 100%}.l5r5e.npc .sheet-header .identity-wrapper h1{margin:0 0.25rem 1rem 1rem}.l5r5e.npc .sheet-header .identity-wrapper .identity-list{flex:0 0 100%;display:flex;margin:0.25rem 0 0.5rem}.l5r5e.npc .sheet-header .identity-wrapper .identity-list li{flex:1;flex-wrap:wrap;display:flex}.l5r5e.npc .sheet-header .identity-wrapper .identity-list li select{width:100%;background:rgba(255,255,255,0.5);border:0 none;text-transform:capitalize;color:#764f40;font-family:"PatrickHand",sans-serif;font-weight:bold;font-size:1rem;letter-spacing:0.15rem}.l5r5e.npc .sheet-header .identity-wrapper .identity-list li i,.l5r5e.npc .sheet-header .identity-wrapper .identity-list li input{font-size:1.25rem;height:1.5rem;line-height:1.5rem;width:7.25rem;margin:auto;text-align:center}.l5r5e.npc .sheet-header .affinities{display:flex;flex-wrap:wrap}.l5r5e.npc .sheet-header .affinities select{position:relative;background:transparent;border:0 none;margin:0;padding:0;text-align:left;font-weight:bold;margin:0 0 0.25rem 0;color:#5a6e5a}.l5r5e.npc .sheet-header .affinities input{flex:1rem;font-size:1rem;height:1.5rem}.l5r5e.npc .sheet-header .social-content{margin-bottom:0.5rem}.l5r5e.npc .sheet-header .social-content .attitude{height:1.5rem;padding-left:0.25rem}.l5r5e.npc .sheet-header .social-content .attitude input{height:1.5rem;flex:1;margin-right:0}.l5r5e.npc .sheet-body{padding:0}.l5r5e.npc .npc-skill{display:flex;width:100%;line-height:2rem;font-size:0.75rem;text-align:center}.l5r5e.npc .npc-skill li{flex:1;padding:0.25rem;text-transform:uppercase;color:#fff}.l5r5e.npc .npc-skill li:nth-child(1){background:#4b4641}.l5r5e.npc .npc-skill li:nth-child(2){background:#699678}.l5r5e.npc .npc-skill li:nth-child(3){background:#9b7350}.l5r5e.npc .npc-skill li:nth-child(4){background:#917896}.l5r5e.npc .npc-skill li:nth-child(5){flex:1.25;background:#5f919b}.l5r5e.npc .npc-skill input[type="number"]{float:right;font-size:1.25rem;height:2rem;width:1rem;margin:0;padding:0;border:0 none;background:transparent;color:#fff}.l5r5e.npc article{min-height:auto;display:flex}.l5r5e.npc article .weapons-content{flex:1}.l5r5e.npc article fieldset{flex:0 0 calc(100% - 0.5rem)}.l5r5e.npc article .items-content{flex:0 0 calc(100% - 0.5rem);margin:1rem 0.25rem 0}.l5r5e.npc .npc-note .editor{min-height:6rem;max-height:12rem}.l5r5e nav.sheet-tabs{height:3rem;line-height:3rem;font-family:"BrushtipTexe",sans-serif;font-size:1.25rem;border:0 none;border-bottom:1px solid rgba(186,187,177,0.5);margin-bottom:0;background:rgba(255,255,255,0.5);color:rgba(0,0,0,0.5);--notchSize: 0.5rem;-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100%) 100%, var(--notchSize) 100%, 0% calc(100%));clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100%) 100%, var(--notchSize) 100%, 0% calc(100%))}.l5r5e nav .item:hover{background-color:#5a6e5a;color:rgba(255,255,255,0.65);text-shadow:none;-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 0 100%, 0% 0%, 0% 100%);clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 0 100%, 0% 0%, 0% 100%)}.l5r5e nav .item.active{background-color:rgba(73,12,11,0.85);color:#fff;background-color:rgba(73,12,11,0.85);-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 0 100%, 0% 0%, 0% 100%);clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% 100%, 0 100%, 0% 0%, 0% 100%)}.l5r5e nav .item.active:hover{background-color:rgba(73,12,11,0.85);cursor:default}.l5r5e .rings{display:flex;flex-wrap:wrap;color:rgba(255,255,255,0.65)}.l5r5e .rings #earth,.l5r5e .rings #air,.l5r5e .rings #water,.l5r5e .rings #fire,.l5r5e .rings #void{position:relative;flex:1 1 50%;text-align:center}.l5r5e .rings #earth i.i_earth,.l5r5e .rings #earth i.i_water,.l5r5e .rings #earth i.i_fire,.l5r5e .rings #earth i.i_air,.l5r5e .rings #earth i.i_void,.l5r5e .rings #air i.i_earth,.l5r5e .rings #air i.i_water,.l5r5e .rings #air i.i_fire,.l5r5e .rings #air i.i_air,.l5r5e .rings #air i.i_void,.l5r5e .rings #water i.i_earth,.l5r5e .rings #water i.i_water,.l5r5e .rings #water i.i_fire,.l5r5e .rings #water i.i_air,.l5r5e .rings #water i.i_void,.l5r5e .rings #fire i.i_earth,.l5r5e .rings #fire i.i_water,.l5r5e .rings #fire i.i_fire,.l5r5e .rings #fire i.i_air,.l5r5e .rings #fire i.i_void,.l5r5e .rings #void i.i_earth,.l5r5e .rings #void i.i_water,.l5r5e .rings #void i.i_fire,.l5r5e .rings #void i.i_air,.l5r5e .rings #void i.i_void{font-size:5rem;line-height:4.75rem}.l5r5e .rings #earth label,.l5r5e .rings #air label,.l5r5e .rings #water label,.l5r5e .rings #fire label,.l5r5e .rings #void label{position:relative;width:5rem;line-height:0;float:right}.l5r5e .rings #earth input,.l5r5e .rings #air input,.l5r5e .rings #water input,.l5r5e .rings #fire input,.l5r5e .rings #void input{position:absolute;height:2rem;width:2rem;border-radius:100%;top:0;left:0;text-align:center;font-size:1rem;border:2px solid rgba(186,187,177,0.5);color:rgba(255,255,255,0.65)}.l5r5e .rings #earth input:hover,.l5r5e .rings #air input:hover,.l5r5e .rings #water input:hover,.l5r5e .rings #fire input:hover,.l5r5e .rings #void input:hover{border:2px solid rgba(255,0,0,0.75);text-shadow:0 0 3px red;box-shadow:0 0 3px inset red}.l5r5e .rings #earth{float:right;color:#699678}.l5r5e .rings #earth input{top:auto;right:0;bottom:-0.9rem;left:auto;background:#699678}.l5r5e .rings #earth label strong{position:absolute;bottom:0.75rem;left:-1.75rem}.l5r5e .rings #air{color:#917896}.l5r5e .rings #air input{top:auto;right:auto;bottom:-0.9rem;left:0;background:#917896}.l5r5e .rings #air label{float:left}.l5r5e .rings #air label strong{position:absolute;bottom:0.75rem;right:-1rem}.l5r5e .rings #water{float:right;color:#5f919b;padding-right:2rem}.l5r5e .rings #water input{top:17%;right:-1.25rem;bottom:auto;left:auto;background:#5f919b}.l5r5e .rings #water label strong{position:absolute;bottom:-0.75rem;right:2rem}.l5r5e .rings #fire{color:#9b7350;padding-left:2rem}.l5r5e .rings #fire input{top:17%;right:auto;bottom:auto;left:-1.25rem;background:#9b7350}.l5r5e .rings #fire label{float:left}.l5r5e .rings #fire label strong{position:absolute;bottom:-0.75rem;right:2rem}.l5r5e .rings #void{top:-2rem;margin:0 calc(50% - 2.5rem);color:#4b4641}.l5r5e .rings #void input{top:-1rem;right:auto;bottom:auto;left:30%;background:#4b4641}.l5r5e .rings #void label strong{position:absolute;bottom:-0.75rem;left:1.75rem}.l5r5e.sheet article .skills-wrapper,.l5r5e.sheet article .techniques-wrapper{flex:50%}.l5r5e.sheet article .skills-wrapper>li,.l5r5e.sheet article .techniques-wrapper>li{display:flex;flex-wrap:wrap;font-size:0.85rem;margin:0 0 1rem;border:1px solid rgba(186,187,177,0.5);--notchSize: 0.75rem;-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 100%);clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 100%)}.l5r5e.sheet article .skills-wrapper>li h4,.l5r5e.sheet article .techniques-wrapper>li h4{flex:100%;margin:0;padding:0.5rem 0.5rem 0;text-align:center;background:rgba(186,187,177,0.5);color:#5a6e5a;--notchSize: 0.5rem;-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100%) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100%));clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100%) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100%))}.l5r5e.sheet article .skills-wrapper>li ul,.l5r5e.sheet article .techniques-wrapper>li ul{flex:50%;padding:0.25rem 0.5rem 0.25rem 0}.l5r5e.sheet article .skills-wrapper>li ul li,.l5r5e.sheet article .techniques-wrapper>li ul li{text-align:left;line-height:2rem;margin:0.25rem 0}.l5r5e.sheet article .skills-wrapper>li ul li.skill,.l5r5e.sheet article .techniques-wrapper>li ul li.skill{text-align:right}.l5r5e.sheet article .skills-wrapper>li ul li.skill span,.l5r5e.sheet article .techniques-wrapper>li ul li.skill span{color:rgba(0,0,0,0.5)}.l5r5e.sheet article .skills-wrapper>li ul li.skill span[data-skill="melee"],.l5r5e.sheet article .skills-wrapper>li ul li.skill span[data-skill="ranged"],.l5r5e.sheet article .skills-wrapper>li ul li.skill span[data-skill="unarmed"],.l5r5e.sheet article .techniques-wrapper>li ul li.skill span[data-skill="melee"],.l5r5e.sheet article .techniques-wrapper>li ul li.skill span[data-skill="ranged"],.l5r5e.sheet article .techniques-wrapper>li ul li.skill span[data-skill="unarmed"]{float:left;line-height:1rem;width:calc(100% - 2rem)}.l5r5e.sheet article .skills-wrapper>li ul.skill-category-ring-actions,.l5r5e.sheet article .techniques-wrapper>li ul.skill-category-ring-actions{padding:0.25rem 0 0.25rem 0.5rem;border-left:1px solid rgba(186,187,177,0.5)}.l5r5e.sheet article .skills-wrapper>li input,.l5r5e.sheet article .techniques-wrapper>li input{width:1.75rem;height:1.75rem;text-align:center}.l5r5e.sheet article .skills-wrapper>li:last-child,.l5r5e.sheet article .techniques-wrapper>li:last-child{margin:0}.l5r5e .item-list{flex:100%}.l5r5e .item-list .item .item-header{display:flex}.l5r5e .item-list .item .item-header .item-img{flex:0 0 32px;padding-right:0.25rem}.l5r5e .item-list .item .item-header .item-img img{border:1px solid rgba(0,0,0,0.1)}.l5r5e .item-list .item .item-header .item-name{flex:1 1 auto;font-size:1rem;line-height:1rem;color:#764f40}.l5r5e .item-list .item .item-header .item-edit,.l5r5e .item-list .item .item-header .item-delete,.l5r5e .item-list .item .item-header .technique-edit,.l5r5e .item-list .item .item-header .technique-delete,.l5r5e .item-list .item .item-header .peculiarity-edit,.l5r5e .item-list .item .item-header .peculiarity-delete,.l5r5e .item-list .item .item-header .property-edit,.l5r5e .item-list .item .item-header .property-delete{line-height:1rem;font-size:0.75rem;flex:0 0 1rem;padding:0 0.1rem}.l5r5e .item-list .item .item-header .icon-stat-container{line-height:1rem;font-size:0.75rem;padding:0 0.25rem;color:rgba(0,0,0,0.75)}.l5r5e .item-list .item .item-header .item-edit:hover,.l5r5e .item-list .item .item-header .item-delete:hover,.l5r5e .item-list .item .item-header .technique-edit:hover,.l5r5e .item-list .item .item-header .technique-delete:hover,.l5r5e .item-list .item .item-header .peculiarity-edit:hover,.l5r5e .item-list .item .item-header .peculiarity-delete:hover,.l5r5e .item-list .item .item-header .property-edit:hover,.l5r5e .item-list .item .item-header .property-delete:hover{text-shadow:0 0 3px red}.l5r5e .item-list .item .item-properties{display:flex;flex-direction:row}.l5r5e .item-list .item .item-properties>li{margin:0.25rem 0.1rem;padding:0.1rem 0.5rem;background-color:rgba(255,255,255,0.5);border:1px solid rgba(255,255,255,0.65);border-radius:1rem;width:auto;font-size:0.75rem;color:rgba(0,0,0,0.75)}.l5r5e .item-list .item .item-properties>li:first-child{margin-left:0}.l5r5e .item-list .item .item-properties>li:last-child{margin-right:0}.l5r5e .item-list .item p{font-size:0.85rem;margin:0;padding:0 0.5rem;max-width:100%}.l5r5e .item-list .item p:first-child{padding-top:0.5rem}.l5r5e .item-list .item p:last-child{padding-bottom:0.5rem}.l5r5e.advancement .sheet-header,.l5r5e.armor .sheet-header,.l5r5e.item .sheet-header,.l5r5e.peculiarity .sheet-header,.l5r5e.property .sheet-header,.l5r5e.technique .sheet-header,.l5r5e.weapon .sheet-header{margin-bottom:0.5rem}.l5r5e.advancement .sheet-header img,.l5r5e.armor .sheet-header img,.l5r5e.item .sheet-header img,.l5r5e.peculiarity .sheet-header img,.l5r5e.property .sheet-header img,.l5r5e.technique .sheet-header img,.l5r5e.weapon .sheet-header img{flex:0 0 90px;height:90px;width:90px;background:rgba(255,255,255,0.25)}.l5r5e.advancement .sheet-header h1 input,.l5r5e.armor .sheet-header h1 input,.l5r5e.item .sheet-header h1 input,.l5r5e.peculiarity .sheet-header h1 input,.l5r5e.property .sheet-header h1 input,.l5r5e.technique .sheet-header h1 input,.l5r5e.weapon .sheet-header h1 input{height:5.5rem}.l5r5e.advancement fieldset input[name="data.effects"],.l5r5e.armor fieldset input[name="data.effects"],.l5r5e.item fieldset input[name="data.effects"],.l5r5e.peculiarity fieldset input[name="data.effects"],.l5r5e.property fieldset input[name="data.effects"],.l5r5e.technique fieldset input[name="data.effects"],.l5r5e.weapon fieldset input[name="data.effects"]{text-align:left}.l5r5e.advancement .sheet-body,.l5r5e.armor .sheet-body,.l5r5e.item .sheet-body,.l5r5e.peculiarity .sheet-body,.l5r5e.property .sheet-body,.l5r5e.technique .sheet-body,.l5r5e.weapon .sheet-body{flex:100%;height:calc(100% - 90px - 0.25rem);align-self:stretch;display:flex;flex-wrap:wrap}.l5r5e.advancement article,.l5r5e.armor article,.l5r5e.item article,.l5r5e.peculiarity article,.l5r5e.property article,.l5r5e.technique article,.l5r5e.weapon article{display:flex;flex-wrap:wrap;min-height:auto}.l5r5e.advancement article label,.l5r5e.armor article label,.l5r5e.item article label,.l5r5e.peculiarity article label,.l5r5e.property article label,.l5r5e.technique article label,.l5r5e.weapon article label{color:#5a6e5a;margin:0.25rem;line-height:1.5rem}.l5r5e.advancement article.attributes,.l5r5e.armor article.attributes,.l5r5e.item article.attributes,.l5r5e.peculiarity article.attributes,.l5r5e.property article.attributes,.l5r5e.technique article.attributes,.l5r5e.weapon article.attributes{align-self:flex-start;width:100%;height:6.5rem}.l5r5e.advancement article.attributes #advancement_type,.l5r5e.advancement article.attributes #advancement_skill,.l5r5e.armor article.attributes #advancement_type,.l5r5e.armor article.attributes #advancement_skill,.l5r5e.item article.attributes #advancement_type,.l5r5e.item article.attributes #advancement_skill,.l5r5e.peculiarity article.attributes #advancement_type,.l5r5e.peculiarity article.attributes #advancement_skill,.l5r5e.property article.attributes #advancement_type,.l5r5e.property article.attributes #advancement_skill,.l5r5e.technique article.attributes #advancement_type,.l5r5e.technique article.attributes #advancement_skill,.l5r5e.weapon article.attributes #advancement_type,.l5r5e.weapon article.attributes #advancement_skill{flex:0 0 calc(40% - 2rem);margin:0.25rem}.l5r5e.advancement article.attributes select[name="data.skill"],.l5r5e.advancement article.attributes select[name="data.ring"],.l5r5e.advancement article.attributes select[name="data.peculiarity_type"],.l5r5e.advancement article.attributes select[name="data.technique_type"],.l5r5e.armor article.attributes select[name="data.skill"],.l5r5e.armor article.attributes select[name="data.ring"],.l5r5e.armor article.attributes select[name="data.peculiarity_type"],.l5r5e.armor article.attributes select[name="data.technique_type"],.l5r5e.item article.attributes select[name="data.skill"],.l5r5e.item article.attributes select[name="data.ring"],.l5r5e.item article.attributes select[name="data.peculiarity_type"],.l5r5e.item article.attributes select[name="data.technique_type"],.l5r5e.peculiarity article.attributes select[name="data.skill"],.l5r5e.peculiarity article.attributes select[name="data.ring"],.l5r5e.peculiarity article.attributes select[name="data.peculiarity_type"],.l5r5e.peculiarity article.attributes select[name="data.technique_type"],.l5r5e.property article.attributes select[name="data.skill"],.l5r5e.property article.attributes select[name="data.ring"],.l5r5e.property article.attributes select[name="data.peculiarity_type"],.l5r5e.property article.attributes select[name="data.technique_type"],.l5r5e.technique article.attributes select[name="data.skill"],.l5r5e.technique article.attributes select[name="data.ring"],.l5r5e.technique article.attributes select[name="data.peculiarity_type"],.l5r5e.technique article.attributes select[name="data.technique_type"],.l5r5e.weapon article.attributes select[name="data.skill"],.l5r5e.weapon article.attributes select[name="data.ring"],.l5r5e.weapon article.attributes select[name="data.peculiarity_type"],.l5r5e.weapon article.attributes select[name="data.technique_type"]{flex:0 0 calc(40% - 0.5rem);margin:0.25rem}.l5r5e.advancement article.attributes .attribute-value,.l5r5e.advancement article.attributes .attribute,.l5r5e.advancement article.attributes .value,.l5r5e.armor article.attributes .attribute-value,.l5r5e.armor article.attributes .attribute,.l5r5e.armor article.attributes .value,.l5r5e.item article.attributes .attribute-value,.l5r5e.item article.attributes .attribute,.l5r5e.item article.attributes .value,.l5r5e.peculiarity article.attributes .attribute-value,.l5r5e.peculiarity article.attributes .attribute,.l5r5e.peculiarity article.attributes .value,.l5r5e.property article.attributes .attribute-value,.l5r5e.property article.attributes .attribute,.l5r5e.property article.attributes .value,.l5r5e.technique article.attributes .attribute-value,.l5r5e.technique article.attributes .attribute,.l5r5e.technique article.attributes .value,.l5r5e.weapon article.attributes .attribute-value,.l5r5e.weapon article.attributes .attribute,.l5r5e.weapon article.attributes .value{flex:1 1 auto;margin:0.5rem 0.25rem 0.25rem}.l5r5e.advancement article.attributes select[name="data.advancement_type"],.l5r5e.advancement article.attributes select[name="data.skill"],.l5r5e.armor article.attributes select[name="data.advancement_type"],.l5r5e.armor article.attributes select[name="data.skill"],.l5r5e.item article.attributes select[name="data.advancement_type"],.l5r5e.item article.attributes select[name="data.skill"],.l5r5e.peculiarity article.attributes select[name="data.advancement_type"],.l5r5e.peculiarity article.attributes select[name="data.skill"],.l5r5e.property article.attributes select[name="data.advancement_type"],.l5r5e.property article.attributes select[name="data.skill"],.l5r5e.technique article.attributes select[name="data.advancement_type"],.l5r5e.technique article.attributes select[name="data.skill"],.l5r5e.weapon article.attributes select[name="data.advancement_type"],.l5r5e.weapon article.attributes select[name="data.skill"]{text-transform:capitalize}.l5r5e.advancement article.attributes .type,.l5r5e.armor article.attributes .type,.l5r5e.item article.attributes .type,.l5r5e.peculiarity article.attributes .type,.l5r5e.property article.attributes .type,.l5r5e.technique article.attributes .type,.l5r5e.weapon article.attributes .type{display:block}.l5r5e.advancement article.attributes .type label,.l5r5e.armor article.attributes .type label,.l5r5e.item article.attributes .type label,.l5r5e.peculiarity article.attributes .type label,.l5r5e.property article.attributes .type label,.l5r5e.technique article.attributes .type label,.l5r5e.weapon article.attributes .type label{width:calc(50% - 0.5rem);float:left}.l5r5e.advancement article.attributes .properties,.l5r5e.armor article.attributes .properties,.l5r5e.item article.attributes .properties,.l5r5e.peculiarity article.attributes .properties,.l5r5e.property article.attributes .properties,.l5r5e.technique article.attributes .properties,.l5r5e.weapon article.attributes .properties{flex:0 0 calc(50% - 0.5rem);margin:0.25rem}.l5r5e.advancement article.attributes .equipped,.l5r5e.armor article.attributes .equipped,.l5r5e.item article.attributes .equipped,.l5r5e.peculiarity article.attributes .equipped,.l5r5e.property article.attributes .equipped,.l5r5e.technique article.attributes .equipped,.l5r5e.weapon article.attributes .equipped{flex:100%;margin:0;text-align:right}.l5r5e.advancement article.attributes input[type="text"],.l5r5e.advancement article.attributes input[type="number"],.l5r5e.armor article.attributes input[type="text"],.l5r5e.armor article.attributes input[type="number"],.l5r5e.item article.attributes input[type="text"],.l5r5e.item article.attributes input[type="number"],.l5r5e.peculiarity article.attributes input[type="text"],.l5r5e.peculiarity article.attributes input[type="number"],.l5r5e.property article.attributes input[type="text"],.l5r5e.property article.attributes input[type="number"],.l5r5e.technique article.attributes input[type="text"],.l5r5e.technique article.attributes input[type="number"],.l5r5e.weapon article.attributes input[type="text"],.l5r5e.weapon article.attributes input[type="number"]{width:2rem}.l5r5e.advancement article.attributes input[type="text"].grip,.l5r5e.advancement article.attributes input[type="number"].grip,.l5r5e.armor article.attributes input[type="text"].grip,.l5r5e.armor article.attributes input[type="number"].grip,.l5r5e.item article.attributes input[type="text"].grip,.l5r5e.item article.attributes input[type="number"].grip,.l5r5e.peculiarity article.attributes input[type="text"].grip,.l5r5e.peculiarity article.attributes input[type="number"].grip,.l5r5e.property article.attributes input[type="text"].grip,.l5r5e.property article.attributes input[type="number"].grip,.l5r5e.technique article.attributes input[type="text"].grip,.l5r5e.technique article.attributes input[type="number"].grip,.l5r5e.weapon article.attributes input[type="text"].grip,.l5r5e.weapon article.attributes input[type="number"].grip{width:100%;margin-bottom:0.25rem}.l5r5e.advancement article.attributes input[name="data.zeni"],.l5r5e.armor article.attributes input[name="data.zeni"],.l5r5e.item article.attributes input[name="data.zeni"],.l5r5e.peculiarity article.attributes input[name="data.zeni"],.l5r5e.property article.attributes input[name="data.zeni"],.l5r5e.technique article.attributes input[name="data.zeni"],.l5r5e.weapon article.attributes input[name="data.zeni"]{width:7rem;float:right}.l5r5e.advancement article.attributes fieldset input[type="text"],.l5r5e.advancement article.attributes fieldset input[type="number"],.l5r5e.armor article.attributes fieldset input[type="text"],.l5r5e.armor article.attributes fieldset input[type="number"],.l5r5e.item article.attributes fieldset input[type="text"],.l5r5e.item article.attributes fieldset input[type="number"],.l5r5e.peculiarity article.attributes fieldset input[type="text"],.l5r5e.peculiarity article.attributes fieldset input[type="number"],.l5r5e.property article.attributes fieldset input[type="text"],.l5r5e.property article.attributes fieldset input[type="number"],.l5r5e.technique article.attributes fieldset input[type="text"],.l5r5e.technique article.attributes fieldset input[type="number"],.l5r5e.weapon article.attributes fieldset input[type="text"],.l5r5e.weapon article.attributes fieldset input[type="number"]{float:right}.l5r5e.advancement article.attributes .attribute.full,.l5r5e.armor article.attributes .attribute.full,.l5r5e.item article.attributes .attribute.full,.l5r5e.peculiarity article.attributes .attribute.full,.l5r5e.property article.attributes .attribute.full,.l5r5e.technique article.attributes .attribute.full,.l5r5e.weapon article.attributes .attribute.full{flex:100%}.l5r5e.advancement article.attributes .attribute.full input,.l5r5e.armor article.attributes .attribute.full input,.l5r5e.item article.attributes .attribute.full input,.l5r5e.peculiarity article.attributes .attribute.full input,.l5r5e.property article.attributes .attribute.full input,.l5r5e.technique article.attributes .attribute.full input,.l5r5e.weapon article.attributes .attribute.full input{float:right;width:70%}.l5r5e.advancement article.infos,.l5r5e.armor article.infos,.l5r5e.item article.infos,.l5r5e.peculiarity article.infos,.l5r5e.property article.infos,.l5r5e.technique article.infos,.l5r5e.weapon article.infos{display:flex;align-self:stretch;height:calc(100% - 7.5rem);width:100%;padding-bottom:1.25rem}.l5r5e.advancement article.infos .reference,.l5r5e.armor article.infos .reference,.l5r5e.item article.infos .reference,.l5r5e.peculiarity article.infos .reference,.l5r5e.property article.infos .reference,.l5r5e.technique article.infos .reference,.l5r5e.weapon article.infos .reference{flex:0 0 calc(100% - 0.5rem);margin:0.5rem 0.25rem}.l5r5e.advancement article.infos .reference input[name="data.book_reference"],.l5r5e.armor article.infos .reference input[name="data.book_reference"],.l5r5e.item article.infos .reference input[name="data.book_reference"],.l5r5e.peculiarity article.infos .reference input[name="data.book_reference"],.l5r5e.property article.infos .reference input[name="data.book_reference"],.l5r5e.technique article.infos .reference input[name="data.book_reference"],.l5r5e.weapon article.infos .reference input[name="data.book_reference"]{float:right;width:70%}.l5r5e.advancement article.infos fieldset,.l5r5e.armor article.infos fieldset,.l5r5e.item article.infos fieldset,.l5r5e.peculiarity article.infos fieldset,.l5r5e.property article.infos fieldset,.l5r5e.technique article.infos fieldset,.l5r5e.weapon article.infos fieldset{align-self:stretch;height:calc(100% - 2rem);box-sizing:content-box}.l5r5e.advancement article.properties fieldset,.l5r5e.armor article.properties fieldset,.l5r5e.item article.properties fieldset,.l5r5e.peculiarity article.properties fieldset,.l5r5e.property article.properties fieldset,.l5r5e.technique article.properties fieldset,.l5r5e.weapon article.properties fieldset{margin-bottom:0.5rem}.l5r5e.advancement article.attributes .attribute-value,.l5r5e.advancement article.attributes .attribute,.l5r5e.advancement article.attributes .value{flex:0 0 calc(33% - 0.5rem)}.l5r5e.advancement article.attributes .cursus{flex:0 0 calc(19% - 0.5rem);line-height:0.75rem;text-align:right;margin:0 0.25rem}.l5r5e.advancement article.attributes .cursus input{margin-top:0.25rem}.l5r5e.peculiarity article.attributes .cursus,.l5r5e.technique article.attributes .cursus{flex:0 0 calc(20% - 0.5rem);line-height:0.75rem;text-align:right;margin:0 0.25rem}.l5r5e.peculiarity article.attributes .cursus input,.l5r5e.technique article.attributes .cursus input{margin-top:0.25rem}.l5r5e.peculiarity article.attributes{height:8.5rem}.l5r5e.peculiarity article.infos{height:calc(100% - 9.5rem)}.l5r5e.item article.attributes{height:4.5rem}.l5r5e.item article.attributes .properties{flex:100%}.l5r5e.item article.infos{flex:0 0 60%;height:calc(100% - 5.5rem)}.l5r5e.item article.properties{flex:0 0 40%;height:calc(100% - 5.5rem)}.l5r5e.property article.infos{height:calc(100% - 0.5rem)}.l5r5e.armor article.attributes{height:9.5rem}.l5r5e.armor article.infos{flex:0 0 60%;height:calc(100% - 10.5rem)}.l5r5e.armor article.properties{flex:0 0 40%;height:calc(100% - 10.5rem)}.l5r5e.weapon article.attributes{height:18.5rem}.l5r5e.weapon article.attributes .stats,.l5r5e.weapon article.attributes .attribute-value{flex:0 0 calc(50% - 0.5rem);flex-wrap:wrap;margin:0.25rem}.l5r5e.weapon article.attributes .stats label,.l5r5e.weapon article.attributes .attribute-value label{width:100%}.l5r5e.weapon article.attributes .value{flex:0 0 calc(25% - 0.5rem)}.l5r5e.weapon article.attributes .category,.l5r5e.weapon article.attributes .skillType{flex:0 0 calc(50% - 0.5rem)}.l5r5e.weapon article.attributes .category input,.l5r5e.weapon article.attributes .category .attribute-dtype,.l5r5e.weapon article.attributes .skillType input,.l5r5e.weapon article.attributes .skillType .attribute-dtype{width:100%;margin:0.25rem}.l5r5e.weapon article.infos{flex:0 0 60%;height:calc(100% - 19.5rem)}.l5r5e.weapon article.properties{flex:0 0 40%;height:calc(100% - 19.5rem)}.l5r5e .item-list>li .item-description{flex:unset;height:0;margin:0;padding:0;font-size:0.75rem;color:rgba(0,0,0,0.75);overflow:hidden;background:rgba(0,0,0,0.05);border:0 none;transition:height 0.25s ease-in}.l5r5e .item-list>li div.item-description{padding:0}.l5r5e .item-list>li div.item-description:hover,.l5r5e .item-list>li div.item-description:active{padding:0}.l5r5e .item-list>li .toggle-active{height:6rem;overflow-y:auto;scrollbar-width:thin;border:1px solid rgba(186,187,177,0.5)}.l5r5e .item-list>li p.toggle-active{padding:0.25rem}.l5r5e .item-list>li:hover .item-description,.l5r5e .item-list>li:active .item-description{height:6rem;overflow-y:auto;scrollbar-width:thin;border:1px solid rgba(186,187,177,0.5)}.l5r5e .item-list>li:hover p .item-description,.l5r5e .item-list>li:active p .item-description{padding:0.25rem}.l5r5e .item-list .stance-content .item-description{display:none;height:auto}.l5r5e .item-list .stance-content .toggle-active{display:block;height:auto;border:0 none}.l5r5e .item-list .stance-content:hover .item-description{height:auto;border:0 none}.l5r5e .item-list .stance-content:hover .toggle-active{display:block}.l5r5e.twenty-questions-dialog .sheet-tabs{position:fixed;flex-direction:column;background:url("../assets/imgs/bg-20nav.webp") no-repeat;background-size:cover;width:4rem;height:41.58rem;margin:1%;line-height:5rem;padding:0.25rem;border-bottom:0 none}.l5r5e.twenty-questions-dialog .errors{position:-webkit-sticky;position:sticky;top:1rem;left:1rem;z-index:999;width:calc(100% - 1rem);background-color:#963c41;border:1px solid rgba(25,0,0,0.75);color:#fff;border-radius:1rem;text-align:center;line-height:2rem}.l5r5e.twenty-questions-dialog h3{font-size:1.25rem;color:#5a6e5a;text-shadow:0 0 rgba(0,0,0,0.25);margin:2rem 0 0.5rem 1rem}.l5r5e.twenty-questions-dialog nav .item{color:#000;font-size:2rem;font-weight:bold;background-color:rgba(255,255,255,0.25)}.l5r5e.twenty-questions-dialog nav .item.active,.l5r5e.twenty-questions-dialog nav .item:hover{color:#fff;background-color:rgba(73,12,11,0.85);--notchSize: 0.5rem;-webkit-clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)));clip-path:polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)))}.l5r5e.twenty-questions-dialog nav .item:hover{background-color:#5a6e5a}.l5r5e.twenty-questions-dialog article{padding:2% 2% 2% 18%}.l5r5e.twenty-questions-dialog article label{font-size:0.85rem;line-height:2rem}.l5r5e.twenty-questions-dialog article label.full{display:block;width:100%;text-align:right;font-size:1rem}.l5r5e.twenty-questions-dialog article label.full input{display:inline;width:80%;float:right;text-align:left;margin-left:0.5rem}.l5r5e.twenty-questions-dialog article>label{font-size:1rem;padding:0 0 0 1rem}.l5r5e.twenty-questions-dialog article table{width:100%}.l5r5e.twenty-questions-dialog article table tr th{color:#5a6e5a;font-weight:normal}.l5r5e.twenty-questions-dialog article table tr td{vertical-align:top;line-height:2rem;border:1px solid rgba(186,187,177,0.5);font-size:0.85rem;padding:0.25rem}.l5r5e.twenty-questions-dialog article table tr td.done{border:1px solid #699678;box-shadow:0 1px 5px #699678}.l5r5e.twenty-questions-dialog article select{height:2rem;color:#764f40;background:rgba(255,255,255,0.25);border:1px solid rgba(255,255,255,0.5);border-radius:0.25rem;padding:0 0.25rem;margin:0.25rem;width:calc(100% - 0.5rem)}.l5r5e.twenty-questions-dialog article textarea{color:#764f40;background:rgba(255,255,255,0.25);border:1px solid rgba(255,255,255,0.5);margin:0 0.25rem 1rem}.l5r5e.twenty-questions-dialog article>ul li{line-height:2rem}.l5r5e.twenty-questions-dialog article hr{border-top:1px solid rgba(0,0,0,0.25)}.l5r5e.twenty-questions-dialog article a.entity-link,.l5r5e.twenty-questions-dialog article a.inline-roll{color:#5a6e5a;background:rgba(255,255,255,0.25);border:1px solid rgba(0,0,0,0.25)}.l5r5e.twenty-questions-dialog article a.entity-link i,.l5r5e.twenty-questions-dialog article a.inline-roll i{color:#5a6e5a}.l5r5e.twenty-questions-dialog article .tq-drag-n-drop{border:0 none;padding:0}.l5r5e.twenty-questions-dialog article .third{width:230px}.l5r5e.twenty-questions-dialog article .fifty{width:49%}.l5r5e.twenty-questions-dialog article .or{width:100px}.l5r5e.twenty-questions-dialog article .dropbox{min-height:75px}.l5r5e.twenty-questions-dialog article .checklist{margin:0.25rem 0.25rem 1rem}.l5r5e.twenty-questions-dialog article .checklist strong{display:block;width:100%;color:#764f40}.l5r5e.twenty-questions-dialog article .checklist label{font-size:0.85rem;flex:0 0 auto;margin:0 0.25rem 0.25rem;padding:0 0.5rem;color:#5a6e5a;background:rgba(255,255,255,0.5);border:1px solid #5a6e5a;border-radius:1rem}.l5r5e.twenty-questions-dialog article .checklist label.technique{padding:0.25rem;margin:0.25rem;border-radius:0}.l5r5e.twenty-questions-dialog article .checklist input{margin:0.25rem 0 0 0;height:0.65rem;width:0.65rem}.l5r5e.twenty-questions-dialog article #generchar_disclaimer{color:#963c41;font-weight:bold;font-size:1.25rem;text-align:center;flex:100%;padding:1rem 0}.l5r5e.twenty-questions-dialog article .next{margin:2rem 0 4rem} diff --git a/system/styles/scss/global.scss b/system/styles/scss/global.scss index 59938ec..85136d7 100644 --- a/system/styles/scss/global.scss +++ b/system/styles/scss/global.scss @@ -264,6 +264,38 @@ sup { } } +.prepared { + &-character { + color: $l5r5e-earth; + } + &-adversary { + color: $l5r5e-fire; + } + &-minion { + color: $l5r5e-water; + } + &-icon { + font-weight: 900; + font-family: "Font Awesome 5 Free"; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; + &-true:before { + content: "\f06e"; + } + &-false:before { + content: "\f070"; + } + &-null:before { + content: "\f2a8"; + } + } +} + // Fix for "search anywhere" draggable icon .window-draggable-handle { z-index: 2; diff --git a/system/styles/scss/sheets.scss b/system/styles/scss/sheets.scss index 405a9a2..5d6addb 100644 --- a/system/styles/scss/sheets.scss +++ b/system/styles/scss/sheets.scss @@ -24,25 +24,6 @@ } } } - .initiative { - &-wrapper { - display: block; - flex: 100%; - text-align: center; - } - button { - width: 22%; - margin: 0 0.25rem 0.25rem; - padding: 0 0.5rem; - color: #5a6e5a; - background: rgba(255, 255, 255, 0.5); - border: 1px solid #5a6e5a; - border-radius: 1rem; - } - button:focus { - box-shadow: none; - } - } fieldset { &.advancement { display: block; @@ -592,6 +573,25 @@ } &.actor, &.npc { + .initiative { + &-wrapper { + display: block; + flex: 100%; + text-align: center; + } + button { + width: 22%; + margin: 0 0.25rem 0.25rem; + padding: 0 0.5rem; + color: #5a6e5a; + background: rgba(255, 255, 255, 0.5); + border: 1px solid #5a6e5a; + border-radius: 1rem; + } + button:focus { + box-shadow: none; + } + } .limited { h1 { margin: 0.5rem 0; diff --git a/system/styles/scss/ui.scss b/system/styles/scss/ui.scss index 103c5a9..335bd18 100644 --- a/system/styles/scss/ui.scss +++ b/system/styles/scss/ui.scss @@ -568,7 +568,6 @@ button { h3 { font-size: 0.85rem; } - .encounter { i { font-size: 23px; @@ -576,7 +575,35 @@ button { } .active { - box-shadow: 0 1px 5px $l5r5e-red; + color: $l5r5e-maho; + } + + &-icon { + font-weight: 900; + font-family: "Font Awesome 5 Free"; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; + + &-intrigue:before { + content: "\f21b"; + } + + &-duel:before { + content: "\f506"; + } + + &-skirmish:before { + content: "\f505"; + } + + &-mass_battle:before { + content: "\f447"; + } } } } diff --git a/system/system.json b/system/system.json index a1b9075..af34ec3 100644 --- a/system/system.json +++ b/system/system.json @@ -5,8 +5,27 @@ "version": "1.0.0", "minimumCoreVersion": "0.7.9", "compatibleCoreVersion": "0.7.9", + "manifestPlusVersion": "1.0.0", "socket": true, "author": "Team L5R", + "authors": [ + { + "name": "Vlyan", + "discord": "Vlyan#6771" + }, + { + "name": "Mandar" + }, + { + "name": "Carter" + }, + { + "name": "Hrunh" + }, + { + "name": "Sasmira" + } + ], "background": "L5R-Header.webp", "scripts": [], "esmodules": ["./scripts/main-l5r5e.js"], diff --git a/system/template.json b/system/template.json index 7b4dfc7..571f0e7 100644 --- a/system/template.json +++ b/system/template.json @@ -85,7 +85,8 @@ "max": 1, "value": 0 }, - "stance": "void" + "stance": "void", + "prepared": true }, "advancement": { "xp_total": 0, diff --git a/system/templates/actors/character/conflict.html b/system/templates/actors/character/conflict.html index 6329dac..0cfb5e0 100644 --- a/system/templates/actors/character/conflict.html +++ b/system/templates/actors/character/conflict.html @@ -1,9 +1,14 @@