diff --git a/src/facilities/bodyModification/createBrand.js b/src/facilities/bodyModification/createBrand.js
index 7e91b9630f23ba25575f1f06c98af3afd14cea9f..9111db8da8dfa2fe561f807f86d7d832a771d8bd 100644
--- a/src/facilities/bodyModification/createBrand.js
+++ b/src/facilities/bodyModification/createBrand.js
@@ -4,7 +4,6 @@ App.Medicine.Modification.Select.brand = function(slave, cheat = false) {
 	let div = document.createElement('div');
 	const {his, His, him, He} = getPronouns(slave);
 
-	p.classList.add("indent");
 	for (const brandPlace in slave.brand) {
 		div = document.createElement('div');
 		div.append(`${His} ${brandPlace} is marked with ${slave.brand[brandPlace]}`);
@@ -55,8 +54,6 @@ App.Medicine.Modification.Select.brand = function(slave, cheat = false) {
 
 	el.append(p);
 	p = document.createElement('p');
-	p.classList.add("indent");
-
 
 	div = document.createElement('div');
 	div.append(`Use ''${V.brandDesign.local}'' or choose another brand: `);
@@ -69,7 +66,6 @@ App.Medicine.Modification.Select.brand = function(slave, cheat = false) {
 	p.append(symbolBlock("FS"));
 
 	div = document.createElement('div');
-	div.classList.add("indent");
 	div.append(`Or design your own: `);
 	div.append(
 		App.UI.DOM.makeTextBox(
@@ -84,7 +80,6 @@ App.Medicine.Modification.Select.brand = function(slave, cheat = false) {
 	el.append(p);
 
 	p = document.createElement('p');
-	p.classList.add("indent");
 	App.UI.DOM.appendNewElement("div", p, "Choose a site for branding: ");
 	const body = slaveBody();
 	p.append(partLinks(body.head));
@@ -93,7 +88,6 @@ App.Medicine.Modification.Select.brand = function(slave, cheat = false) {
 	p.append(partLinks(body.legs));
 
 	div = document.createElement('div');
-	div.classList.add("indent");
 	div.append(`Or a custom site: `);
 	div.append(
 		App.UI.DOM.makeTextBox(
@@ -108,7 +102,6 @@ App.Medicine.Modification.Select.brand = function(slave, cheat = false) {
 	el.append(p);
 
 	p = document.createElement('p');
-	p.classList.add("indent");
 
 	if (["ankle", "breast", "buttock", "calf", "cheek", "ear", "foot", "hand", "lower arm", "shoulder", "testicle", "thigh", "upper arm", "wrist"].includes(V.brandTarget.local)) {
 		const leftTarget = ("left " + V.brandTarget.local);