Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!-- Progress bar code adapted from: https://codepen.io/joshbivens/pen/mPRovV -->
<header>
	<div class="container-fluid pt-3 text-center" style="background-color:#9890e3">
		<div class="row">
			<div class="col">
				<h1 class="display-1" style="font-family:Righteous,cursive">Mindset Trainer</h1>
				<p class="small"><strong>TRAIN YOUR BRAIN! </strong><em>Imagine</em> yourself in each scenario, <em>choose</em> your response, and <em>observe</em> how your choices change your <strong>potential for success</strong>.</p>
			</div>
		</div>
	</div>
	<div class="container-fluid pb-5 shapedividers_com-5970">
	</div>
</header>
<main>
	<div id="app" class="container-fluid py-2 px-4 align-items-center">
		<div class="container app-brain">
			<div class="row text-center">
				<div class="col">
					<div v-if="potential==100" class="growth-alert">💡🧠💡<p class="fs-3 text-success growth-alert">TRUE GROWTH MINDSET ACHIEVED!</p>
					</div>
					<div v-else-if="potential==0" class="fixed-alert">🚫🧠🚫<p class="fs-3 text-danger fixed-alert">Your mindset is way too FIXED! Try a different approach.</p>
					</div>
					<span v-else class="glow">🧠</span>
				</div>
			</div>
		</div>
		<div class="container app-bar">
			<div class="row">
				<div class="col-4">
					<p class="text-secondary" style="font-family:Righteous,cursive">POTENTIAL:</p>
				</div>
				<div class="col-8">
					<div class="app-bar-outer">
						<div class="app-bar-inner" :style="{ width: potential + '%' }" .>
							<p class="app-bar-num">{{ potential }}%</p>
						</div>
					</div>
				</div>
			</div>
		</div>
		<div class="container p-1 text-secondary app-scenarios">
			<scenario-component :scenario="activeScenario.scenario"></scenario-component>

			<div class="row p-2 text-center">
				<div class="col p-1">
					<button @click="decPotential" type="button" class="btn btn-secondary btn-sm">{{activeScenario.fixed}}</button>
				</div>
				<div class="col p-1">
					<button @click="incPotential" type="button" class="btn btn-secondary btn-sm">{{activeScenario.growth}}</button>
				</div>
			</div>
		</div>
	</div>

	<div id="info" class="container-fluid py-2 px-4 align-items-center">
		<br>
		<hr>
		<br>
		<div class="row text-left">
			<div class="col">
				<h2>🧠 Fixed-Mindset vs. Growth-Mindset</h2>
				<h2 class="small text-muted">The scientific basis behind this simulation</h2>
				<p>A <strong>Fixed-Mindset</strong> is the belief that abilities (from intelligence to creativity and athleticism) are innate; while a <strong>Growth-Mindset</strong> is the belief that abilities are highly trainable can be developed through effort and failure.</p>
			</div>
		</div>
		<div class="row text-left">
			<div class="col">
				<figure>
					<blockquote class="blockquote">
						<p>"When you enter a mindset, you enter a new world. In one world – the world of fixed traits – success is about proving you’re smart or talented. Validating yourself. In the other – the world of changing qualities – it’s about stretching yourself to learn something new. Developing yourself. You have a choice. Mindsets are just beliefs. They’re powerful beliefs, but they’re just something in your mind, and you can change your mind."</p>
					</blockquote>
					<figcaption class="blockquote-footer text-secondary">
						<a href="https://profiles.stanford.edu/carol-dweck">Dr. Carol Dweck</a> in <cite title="Source Title"><a href="https://www.amazon.com/Mindset-Updated-Changing-Fulfil-Potential/dp/147213995X/ref=pd_lpo_1?pd_rd_i=147213995X&psc=1">Mindset: Changing the Way You Think to Fulfil Your Potential</a></cite>
					</figcaption>
				</figure>
			</div>
		</div>
	</div>
</main>

<footer>
	<div class="container-fluid p-4">
		<hr>
		<div class="row text-center">
			<div class="col">
				<p>Coded with 💜 by <a href="https://coderina.io">Katerina Navab</a> &copy2022</p>
			</div>
		</div>
	</div>
</footer>
              
            
!

CSS

              
                @import url("https://fonts.googleapis.com/css2?family=Righteous&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,400;1,700&display=swap");

/* EASY LAYOUT DEBUG
div {
	border: 1px solid #b5b5b5; 
	border-color:red;
} 
*/
html {
	min-height: 100%;
}
body {
	width: 100%;
	background: linear-gradient(to top, #9890e3 0%, #b1f4cf 100%);
	font-family: Poppins, sans-serif;
	color: white;
}
hr {
	border: solid 3px;
}
.app-bar {
	display: flex;
	justify-content: center;
	align-items: center;
}
.app-bar-outer {
	height: 28px;
	width: 250px;
	border: 1px solid #aaa;
	border-radius: 13px;
	padding: 3px;
}
.app-bar-inner {
	background: linear-gradient(to right, #b993d6, #8ca6db);
	height: 20px;
	width: 15px;
	border-radius: 9px;
}
.app-bar-num {
	float: right;
	padding: 0px 5px;
	font-size: 0.8rem;
}
.app-brain {
	font-size: 7rem;
}
.app-scenarios {
	border: 10px outset #b5b5b5;
	border-radius: 20px;
	box-shadow: 10px 10px 20px 12px rgba(0, 0, 0, 0.2);
	background-color: #d3d2d7;
}
.growth-alert {
	-webkit-animation-duration: 1s;
	-webkit-animation-name: growth-alert;
	-webkit-animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
}
.fixed-alert {
	-webkit-animation-duration: 1s;
	-webkit-animation-name: fixed-alert;
	-webkit-animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
}
.glow {
	-webkit-animation-duration: 1s;
	-webkit-animation-name: glow;
	-webkit-animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes fixed-alert {
	from {
		text-shadow: 0 0 5px red;
	}
	to {
		text-shadow: 0 0 20px red;
	}
}

@-webkit-keyframes growth-alert {
	from {
		text-shadow: 0 0 5px green;
	}
	to {
		text-shadow: 0 0 20px green;
	}
}
@-webkit-keyframes glow {
	from {
		text-shadow: 0 0 5px white;
	}
	to {
		text-shadow: 0 0 20px white;
	}
}

/* Below SVG generated by: shapedividers.com */
.shapedividers_com-5970 {
	overflow: hidden;
	position: relative;
}
.shapedividers_com-5970::before {
	content: "";
	font-family: "shape divider from ShapeDividers.com";
	position: absolute;
	z-index: 3;
	pointer-events: none;
	background-repeat: no-repeat;
	bottom: -0.1vw;
	left: -0.1vw;
	right: -0.1vw;
	top: -0.1vw;
	background-size: 100% 70px;
	background-position: 50% 0%;
	background-image: url('data:image/svg+xml;charset=utf8, <svg preserveAspectRatio="xMidYMax slice" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000 100"><g fill="%239890e3"><path d="M1008 57.6a10 10 0 00.5-3 10.1 10.1 0 00-20.3 0 9.7 9.7 0 00.5 3h-38.9a9.7 9.7 0 00.5-3 10.1 10.1 0 00-20.2 0 10 10 0 00.5 3h-38.9a9.7 9.7 0 00.5-3 10.1 10.1 0 00-20.2 0 10 10 0 00.5 3h-38.9a10 10 0 00.5-3 10.1 10.1 0 00-20.3 0 9.7 9.7 0 00.5 3h-38.8a9.7 9.7 0 00.5-3 10.1 10.1 0 00-20.3 0 10 10 0 00.5 3h-38.9a9.7 9.7 0 00.5-3 10.1 10.1 0 00-20.2 0 10 10 0 00.5 3h-38.9a10 10 0 00.5-3 10.1 10.1 0 00-20.2 0 9.7 9.7 0 00.5 3h-39a10 10 0 00.6-3 10.1 10.1 0 00-20.3 0 10 10 0 00.5 3H543a10 10 0 00.5-3 10.1 10.1 0 00-20.3 0 10 10 0 00.5 3h-38.8a9.7 9.7 0 00.5-3 10.1 10.1 0 00-20.3 0 10 10 0 00.5 3h-38.9a10 10 0 00.5-3 10.1 10.1 0 00-20.2 0 9.7 9.7 0 00.5 3h-38.9a10 10 0 00.5-3 10.1 10.1 0 00-20.2 0 10 10 0 00.4 3h-38.8a9.7 9.7 0 00.5-3 10.1 10.1 0 00-20.3 0 10 10 0 00.5 3h-38.8a10 10 0 00.4-3 10.1 10.1 0 00-20.2 0 9.7 9.7 0 00.5 3h-38.9a10 10 0 00.5-3 10.1 10.1 0 00-20.2 0 9.7 9.7 0 00.5 3H136a9.7 9.7 0 00.5-3 10.1 10.1 0 00-20.3 0 10 10 0 00.5 3H78a10 10 0 00.5-3 10.1 10.1 0 00-20.3 0 10 10 0 00.5 3H19.8a10 10 0 00.4-3 10 10 0 00-10-10A10 10 0 000 54.5V34.8h27.9a10.1 10.1 0 0020.2 0H86a10.1 10.1 0 0020.3 0H144a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.3 0h37.8a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0H551a10.1 10.1 0 0020.3 0h37.8a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0h37.8a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0H958a10.1 10.1 0 0020.3 0h33.5v22.7zM0 57.6v-3a9.7 9.7 0 00.5 3z" opacity=".3"/><path d="M968.1 24.9a10 10 0 00-10.1 10H920a10.1 10.1 0 00-20.2 0H862a10.1 10.1 0 00-20.2 0h-38a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-38a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-38a10.1 10.1 0 00-20.2 0H455a10.1 10.1 0 00-20.3 0H397a10.1 10.1 0 00-20.2 0h-38a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.3 0h-37.8a10.1 10.1 0 00-20.3 0H48.1a10.1 10.1 0 00-20.2 0H0V14a10 10 0 0010.1 10 10 10 0 0010.2-10H58a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.1 0h38a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0H407a10.1 10.1 0 0020.2 0H465a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0h37.8a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0H872a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h3.3v20.8h-33.6a10 10 0 00-10-10z" opacity=".5"/><path d="M968.1 24.9a10 10 0 00-10.1 10H920a10.1 10.1 0 00-20.2 0H862a10.1 10.1 0 00-20.2 0h-38a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-38a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-38a10.1 10.1 0 00-20.2 0H455a10.1 10.1 0 00-20.3 0H397a10.1 10.1 0 00-20.2 0h-38a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.3 0h-37.8a10.1 10.1 0 00-20.3 0H48.1a10.1 10.1 0 00-20.2 0H0V14a10 10 0 0010.1 10 10 10 0 0010.2-10H58a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.1 0h38a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0H407a10.1 10.1 0 0020.2 0H465a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0h37.8a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0H872a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h3.3v20.8h-33.6a10 10 0 00-10-10zM533.3 64.5a10.1 10.1 0 01-9.7-6.9H543a10.1 10.1 0 01-9.6 7zM533.3 44.6a10 10 0 0110 10 10 10 0 01-.4 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.2-10z" opacity=".3"/><path d="M533.3 44.6a10 10 0 0110 10 10 10 0 01-.4 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.2-10zM503 44.9a10 10 0 01-10.1-10H513a10 10 0 01-10.1 10z" opacity=".3"/><path d="M503 44.9a10 10 0 01-10.1-10H513a10 10 0 01-10.1 10zM503 24.9a10 10 0 0110.1 10H493a10 10 0 0110.1-10z" opacity=".5"/><path d="M503 24.9a10 10 0 0110.1 10H493a10 10 0 0110.1-10z" opacity=".3"/><path d="M503 24.9a10 10 0 0110.1 10H493a10 10 0 0110.1-10z" opacity=".5"/><path d="M475.1 64.5a10.1 10.1 0 01-9.6-6.9h19.3a10.1 10.1 0 01-9.7 7zM475.1 44.6a10 10 0 0110.2 10 9.7 9.7 0 01-.5 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M475.1 44.6a10 10 0 0110.2 10 9.7 9.7 0 01-.5 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.1-10zM445 44.9a10 10 0 01-10.2-10H455a10 10 0 01-10 10z" opacity=".3"/><path d="M445 44.9a10 10 0 01-10.2-10H455a10 10 0 01-10 10zM445 24.9a10 10 0 0110 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M445 24.9a10 10 0 0110 10h-20.2a10 10 0 0110.1-10z" opacity=".3"/><path d="M445 24.9a10 10 0 0110 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M417 64.5a10.1 10.1 0 01-9.6-6.9h19.2a10.1 10.1 0 01-9.6 7zM417 44.6a10 10 0 0110.1 10 10 10 0 01-.5 3h-19.2a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M417 44.6a10 10 0 0110.1 10 10 10 0 01-.5 3h-19.2a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10zM386.8 44.9a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10z" opacity=".3"/><path d="M386.8 44.9a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10zM386.8 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110-10z" opacity=".5"/><path d="M386.8 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110-10z" opacity=".3"/><path d="M386.8 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110-10z" opacity=".5"/><path d="M358.9 64.5a10.1 10.1 0 01-9.6-6.9h19.2a10.1 10.1 0 01-9.6 7zM358.9 44.6a10 10 0 0110.1 10 10 10 0 01-.5 3h-19.3a10 10 0 01-.4-3 10 10 0 0110-10z" opacity=".3"/><path d="M358.9 44.6a10 10 0 0110.1 10 10 10 0 01-.5 3h-19.3a10 10 0 01-.4-3 10 10 0 0110-10zM328.6 44.9a10 10 0 01-10-10h20.2a10 10 0 01-10.2 10z" opacity=".3"/><path d="M328.6 44.9a10 10 0 01-10-10h20.2a10 10 0 01-10.2 10zM328.6 24.9a10 10 0 0110.2 10h-20.3a10 10 0 0110.1-10z" opacity=".5"/><path d="M328.6 24.9a10 10 0 0110.2 10h-20.3a10 10 0 0110.1-10z" opacity=".3"/><path d="M328.6 24.9a10 10 0 0110.2 10h-20.3a10 10 0 0110.1-10z" opacity=".5"/><path d="M300.8 64.5a10.1 10.1 0 01-9.7-6.9h19.3a10.1 10.1 0 01-9.6 7zM300.8 44.6a10 10 0 0110 10 9.7 9.7 0 01-.4 3H291a10 10 0 01-.5-3 10 10 0 0110.2-10z" opacity=".3"/><path d="M300.8 44.6a10 10 0 0110 10 9.7 9.7 0 01-.4 3H291a10 10 0 01-.5-3 10 10 0 0110.2-10zM270.5 44.9a10 10 0 01-10.1-10h20.3a10 10 0 01-10.2 10z" opacity=".3"/><path d="M270.5 44.9a10 10 0 01-10.1-10h20.3a10 10 0 01-10.2 10zM270.5 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M270.5 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".3"/><path d="M270.5 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M242.6 64.5a10.1 10.1 0 01-9.6-6.9h19.3a10.1 10.1 0 01-9.7 7zM242.6 44.6a10 10 0 0110.2 10 10 10 0 01-.5 3H233a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M242.6 44.6a10 10 0 0110.2 10 10 10 0 01-.5 3H233a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10zM212.4 44.9a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10z" opacity=".3"/><path d="M212.4 44.9a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10zM212.4 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M212.4 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".3"/><path d="M212.4 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M184.5 64.5a10.1 10.1 0 01-9.6-6.9H194a10.1 10.1 0 01-9.6 7zM184.5 44.6a10 10 0 0110.1 10 10 10 0 01-.5 3H175a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M184.5 44.6a10 10 0 0110.1 10 10 10 0 01-.5 3H175a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10zM154.3 44.9a10 10 0 01-10.2-10h20.3a10 10 0 01-10.1 10z" opacity=".3"/><path d="M154.3 44.9a10 10 0 01-10.2-10h20.3a10 10 0 01-10.1 10zM154.3 24.9a10 10 0 0110.1 10h-20.3a10 10 0 0110.2-10z" opacity=".5"/><path d="M154.3 24.9a10 10 0 0110.1 10h-20.3a10 10 0 0110.2-10z" opacity=".3"/><path d="M154.3 24.9a10 10 0 0110.1 10h-20.3a10 10 0 0110.2-10z" opacity=".5"/><path d="M126.4 64.5a10.1 10.1 0 01-9.7-6.9H136a10.1 10.1 0 01-9.6 7zM126.4 44.6a10 10 0 0110.1 10 9.7 9.7 0 01-.5 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.2-10z" opacity=".3"/><path d="M126.4 44.6a10 10 0 0110.1 10 9.7 9.7 0 01-.5 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.2-10zM96.2 44.9a10 10 0 01-10.2-10h20.3a10 10 0 01-10.1 10z" opacity=".3"/><path d="M96.2 44.9a10 10 0 01-10.2-10h20.3a10 10 0 01-10.1 10zM96.2 24.9a10 10 0 0110 10H86a10 10 0 0110.2-10z" opacity=".5"/><path d="M96.2 24.9a10 10 0 0110 10H86a10 10 0 0110.2-10z" opacity=".3"/><path d="M96.2 24.9a10 10 0 0110 10H86a10 10 0 0110.2-10z" opacity=".5"/><path d="M68.3 64.5a10.1 10.1 0 01-9.7-6.9H78a10.1 10.1 0 01-9.7 7zM68.3 44.6a10 10 0 0110 10 10 10 0 01-.4 3H58.6a10 10 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M68.3 44.6a10 10 0 0110 10 10 10 0 01-.4 3H58.6a10 10 0 01-.5-3 10 10 0 0110.1-10zM38 44.9a10 10 0 01-10.1-10H48a10 10 0 01-10.1 10z" opacity=".3"/><path d="M38 44.9a10 10 0 01-10.1-10H48a10 10 0 01-10.1 10zM38 24.9a10 10 0 0110.1 10H28a10 10 0 0110.1-10z" opacity=".5"/><path d="M38 24.9a10 10 0 0110.1 10H28a10 10 0 0110.1-10z" opacity=".3"/><path d="M38 24.9a10 10 0 0110.1 10H28a10 10 0 0110.1-10z" opacity=".5"/><path d="M10.1 64.5a10.1 10.1 0 01-9.6-6.9h19.3a10.1 10.1 0 01-9.7 7zM10.1 44.6a10 10 0 0110.2 10 10 10 0 01-.5 3H.5a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M10.1 44.6a10 10 0 0110.2 10 10 10 0 01-.5 3H.5a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10zM998.3 64.5a10.1 10.1 0 01-9.6-6.9h19.3a10.1 10.1 0 01-9.7 7zM998.3 44.6a10 10 0 0110.2 10 10 10 0 01-.5 3h-19.3a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M998.3 44.6a10 10 0 0110.2 10 10 10 0 01-.5 3h-19.3a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M998.3 24a10 10 0 01-10-10h-38a10.1 10.1 0 01-20.2 0h-37.9a10.1 10.1 0 01-20.2 0h-38a10.1 10.1 0 01-20.2 0H776a10.1 10.1 0 01-20.3 0h-37.9a10.1 10.1 0 01-20.2 0h-37.9a10.1 10.1 0 01-20.2 0h-38a10.1 10.1 0 01-20.2 0h-38a10.1 10.1 0 01-20.2 0h-37.8a10.1 10.1 0 01-20.3 0h-37.9a10.1 10.1 0 01-20.2 0H369a10.1 10.1 0 01-20.3 0H311a10.1 10.1 0 01-20.3 0h-37.9a10.1 10.1 0 01-20.2 0h-37.9a10.1 10.1 0 01-20.2 0h-37.9a10.1 10.1 0 01-20.3 0H78.5A10.1 10.1 0 0158 14H20.2a10 10 0 01-10 10A10 10 0 010 14V0h1011.8v14h-3.3a10 10 0 01-10.2 10z"/><path d="M968.1 44.9a10 10 0 01-10.1-10h20.2a10 10 0 01-10 10z" opacity=".3"/><path d="M968.1 44.9a10 10 0 01-10.1-10h20.2a10 10 0 01-10 10zM968.1 24.9a10 10 0 0110.1 10H958a10 10 0 0110.1-10z" opacity=".5"/><path d="M968.1 24.9a10 10 0 0110.1 10H958a10 10 0 0110.1-10z" opacity=".3"/><path d="M968.1 24.9a10 10 0 0110.1 10H958a10 10 0 0110.1-10z" opacity=".5"/><path d="M940.2 64.5a10.1 10.1 0 01-9.6-6.9h19.3a10.1 10.1 0 01-9.7 7zM940.2 44.6a10 10 0 0110.1 10 9.7 9.7 0 01-.4 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M940.2 44.6a10 10 0 0110.1 10 9.7 9.7 0 01-.4 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.1-10zM910 44.9a10 10 0 01-10.1-10H920a10 10 0 01-10.1 10z" opacity=".3"/><path d="M910 44.9a10 10 0 01-10.1-10H920a10 10 0 01-10.1 10zM910 24.9a10 10 0 0110.1 10H900a10 10 0 0110.1-10z" opacity=".5"/><path d="M910 24.9a10 10 0 0110.1 10H900a10 10 0 0110.1-10z" opacity=".3"/><path d="M910 24.9a10 10 0 0110.1 10H900a10 10 0 0110.1-10z" opacity=".5"/><path d="M882 64.5a10.1 10.1 0 01-9.5-6.9h19.2a10 10 0 01-9.6 7zM882 44.6a10 10 0 0110.2 10 9.7 9.7 0 01-.5 3h-19.3a10 10 0 01-.4-3 10 10 0 0110-10z" opacity=".3"/><path d="M882 44.6a10 10 0 0110.2 10 9.7 9.7 0 01-.5 3h-19.3a10 10 0 01-.4-3 10 10 0 0110-10zM851.9 44.9a10 10 0 01-10.2-10H862a10 10 0 01-10.1 10z" opacity=".3"/><path d="M851.9 44.9a10 10 0 01-10.2-10H862a10 10 0 01-10.1 10zM851.9 24.9a10 10 0 0110 10h-20.2a10 10 0 0110.2-10z" opacity=".5"/><path d="M851.9 24.9a10 10 0 0110 10h-20.2a10 10 0 0110.2-10z" opacity=".3"/><path d="M851.9 24.9a10 10 0 0110 10h-20.2a10 10 0 0110.2-10z" opacity=".5"/><path d="M824 64.5a10.1 10.1 0 01-9.6-6.9h19.2a10.1 10.1 0 01-9.6 7zM824 44.6a10 10 0 0110.1 10 10 10 0 01-.5 3h-19.3a9.7 9.7 0 01-.5-3 10 10 0 0110.2-10z" opacity=".3"/><path d="M824 44.6a10 10 0 0110.1 10 10 10 0 01-.5 3h-19.3a9.7 9.7 0 01-.5-3 10 10 0 0110.2-10zM793.7 44.9a10 10 0 01-10-10h20.2a10 10 0 01-10.2 10z" opacity=".3"/><path d="M793.7 44.9a10 10 0 01-10-10h20.2a10 10 0 01-10.2 10zM793.7 24.9a10 10 0 0110.2 10h-20.3a10 10 0 0110.1-10z" opacity=".5"/><path d="M793.7 24.9a10 10 0 0110.2 10h-20.3a10 10 0 0110.1-10z" opacity=".3"/><path d="M793.7 24.9a10 10 0 0110.2 10h-20.3a10 10 0 0110.1-10z" opacity=".5"/><path d="M765.8 64.5a10.1 10.1 0 01-9.6-6.9h19.3a10.1 10.1 0 01-9.7 7zM765.8 44.6a10 10 0 0110.2 10 9.7 9.7 0 01-.5 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M765.8 44.6a10 10 0 0110.2 10 9.7 9.7 0 01-.5 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.1-10zM735.6 44.9a10 10 0 01-10.1-10h20.2a10 10 0 01-10 10z" opacity=".3"/><path d="M735.6 44.9a10 10 0 01-10.1-10h20.2a10 10 0 01-10 10zM735.6 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M735.6 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".3"/><path d="M735.6 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M707.7 64.5a10.1 10.1 0 01-9.6-6.9h19.2a10.1 10.1 0 01-9.6 7zM707.7 44.6a10 10 0 0110.1 10 9.7 9.7 0 01-.5 3h-19.2a10 10 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M707.7 44.6a10 10 0 0110.1 10 9.7 9.7 0 01-.5 3h-19.2a10 10 0 01-.5-3 10 10 0 0110.1-10zM677.5 44.9a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10z" opacity=".3"/><path d="M677.5 44.9a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10zM677.5 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110-10z" opacity=".5"/><path d="M677.5 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110-10z" opacity=".3"/><path d="M677.5 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110-10z" opacity=".5"/><path d="M649.6 64.5a10.1 10.1 0 01-9.6-6.9h19.3a10.1 10.1 0 01-9.7 7zM649.6 44.6a10 10 0 0110.1 10 10 10 0 01-.5 3H640a9.7 9.7 0 01-.5-3 10 10 0 0110-10z" opacity=".3"/><path d="M649.6 44.6a10 10 0 0110.1 10 10 10 0 01-.5 3H640a9.7 9.7 0 01-.5-3 10 10 0 0110-10zM619.4 44.9a10 10 0 01-10.2-10h20.3a10 10 0 01-10.1 10z" opacity=".3"/><path d="M619.4 44.9a10 10 0 01-10.2-10h20.3a10 10 0 01-10.1 10zM619.4 24.9a10 10 0 0110 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M619.4 24.9a10 10 0 0110 10h-20.2a10 10 0 0110.1-10z" opacity=".3"/><path d="M619.4 24.9a10 10 0 0110 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M591.5 64.5a10.1 10.1 0 01-9.7-6.9h19.3a10.1 10.1 0 01-9.6 7zM591.5 44.6a10 10 0 0110 10 10 10 0 01-.4 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.2-10z" opacity=".3"/><path d="M591.5 44.6a10 10 0 0110 10 10 10 0 01-.4 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.2-10zM561.2 44.9a10 10 0 01-10.1-10h20.3a10 10 0 01-10.2 10z" opacity=".3"/><path d="M561.2 44.9a10 10 0 01-10.1-10h20.3a10 10 0 01-10.2 10zM561.2 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M561.2 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".3"/><path d="M561.2 24.9a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M2000 34.8v22.8h-3.8a10.1 10.1 0 10-19.3 0h-38.8a10.1 10.1 0 10-19.3 0h-38.9a9.7 9.7 0 00.5-3 10.1 10.1 0 00-20.2 0 9.7 9.7 0 00.5 3h-38.9a10.1 10.1 0 10-19.3 0h-38.8a10.1 10.1 0 10-19.3 0h-38.8a9.7 9.7 0 00.5-3 10.1 10.1 0 00-20.3 0 9.7 9.7 0 00.5 3h-38.9a10.1 10.1 0 10-19.2 0h-38.9a10.1 10.1 0 10-19.3 0h-38.9a10.1 10.1 0 10-19.7-3 9.7 9.7 0 00.5 3H1473a9.4 9.4 0 00.5-3 10.1 10.1 0 10-19.8 3H1415a9.7 9.7 0 00.5-3 10.1 10.1 0 10-19.8 3h-38.8a9.7 9.7 0 00.5-3 10.1 10.1 0 00-20.3 0 9.7 9.7 0 00.5 3h-38.9a9.7 9.7 0 00.5-3 10.1 10.1 0 10-19.8 3h-38.8a10.1 10.1 0 10-19.3 0h-38.9a10.1 10.1 0 10-19.7-3 9.7 9.7 0 00.5 3h-38.9a9.7 9.7 0 00.5-3 10.1 10.1 0 10-19.7 3h-38.9a10.1 10.1 0 10-19.3 0h-35V34.8h4.3a10.1 10.1 0 0020.3 0h37.8a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.3 0h37.8a10.1 10.1 0 0020.3 0h38a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.3 0h37.8a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0zM988.7 57.6h-.5v-3a9.7 9.7 0 00.5 3z" opacity=".3"/><path d="M2000 14v20.8h-33.5a10.1 10.1 0 00-20.3 0h-37.9a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.3 0h-37.8a10.1 10.1 0 00-20.3 0H1734a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-38a10.1 10.1 0 00-20.2 0h-37.8a10.1 10.1 0 00-20.3 0h-38a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.3 0h-37.8a10.1 10.1 0 00-20.3 0H1327a10.1 10.1 0 00-20.2 0h-38a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.3 0h-37.8a10.1 10.1 0 00-20.3 0h-4.3V14h34.6a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0h37.8a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.3 0h37.8a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.3 0h37.8a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0z" opacity=".5"/><path d="M2000 14v20.8h-33.5a10.1 10.1 0 00-20.3 0h-37.9a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.3 0h-37.8a10.1 10.1 0 00-20.3 0H1734a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-38a10.1 10.1 0 00-20.2 0h-37.8a10.1 10.1 0 00-20.3 0h-38a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.3 0h-37.8a10.1 10.1 0 00-20.3 0H1327a10.1 10.1 0 00-20.2 0h-38a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.2 0h-37.9a10.1 10.1 0 00-20.3 0h-37.8a10.1 10.1 0 00-20.3 0h-4.3V14h34.6a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0h37.8a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.3 0h37.8a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h38a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.2 0h37.9a10.1 10.1 0 0020.3 0h37.8a10.1 10.1 0 0020.3 0h37.9a10.1 10.1 0 0020.2 0zM1521.5 64.5a10.1 10.1 0 01-9.6-7h19.2a10.1 10.1 0 01-9.6 7zM1521.5 44.5a10 10 0 0110.1 10 10 10 0 01-.5 3h-19.3a9.7 9.7 0 01-.4-3 10 10 0 0110-10z" opacity=".3"/><path d="M1521.5 44.5a10 10 0 0110.1 10 10 10 0 01-.5 3h-19.3a9.7 9.7 0 01-.4-3 10 10 0 0110-10zM1491.3 44.8a10 10 0 01-10.2-10h20.3a10 10 0 01-10.2 10z" opacity=".3"/><path d="M1491.3 44.8a10 10 0 01-10.2-10h20.3a10 10 0 01-10.2 10zM1491.3 24.8a10 10 0 0110 10h-20.2a10 10 0 0110.2-10z" opacity=".5"/><path d="M1491.3 24.8a10 10 0 0110 10h-20.2a10 10 0 0110.2-10z" opacity=".3"/><path d="M1491.3 24.8a10 10 0 0110 10h-20.2a10 10 0 0110.2-10z" opacity=".5"/><path d="M1463.3 64.5a10.1 10.1 0 01-9.6-7h19.3a10.1 10.1 0 01-9.7 7zM1463.3 44.5a10 10 0 0110.2 10 10 10 0 01-.5 3h-19.3a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M1463.3 44.5a10 10 0 0110.2 10 10 10 0 01-.5 3h-19.3a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10zM1433.1 44.8a10 10 0 01-10.1-10h20.3a10 10 0 01-10.2 10z" opacity=".3"/><path d="M1433.1 44.8a10 10 0 01-10.1-10h20.3a10 10 0 01-10.2 10zM1433.1 24.8a10 10 0 0110.1 10H1423a10 10 0 0110.1-10z" opacity=".5"/><path d="M1433.1 24.8a10 10 0 0110.1 10H1423a10 10 0 0110.1-10z" opacity=".3"/><path d="M1433.1 24.8a10 10 0 0110.1 10H1423a10 10 0 0110.1-10z" opacity=".5"/><path d="M1405.2 64.5a10.1 10.1 0 01-9.6-7h19.3a10.1 10.1 0 01-9.7 7zM1405.2 44.5a10 10 0 0110.1 10 9.7 9.7 0 01-.4 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M1405.2 44.5a10 10 0 0110.1 10 9.7 9.7 0 01-.4 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.1-10zM1375 44.8a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10z" opacity=".3"/><path d="M1375 44.8a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10zM1375 24.8a10 10 0 0110.1 10H1365a10 10 0 0110.1-10z" opacity=".5"/><path d="M1375 24.8a10 10 0 0110.1 10H1365a10 10 0 0110.1-10z" opacity=".3"/><path d="M1375 24.8a10 10 0 0110.1 10H1365a10 10 0 0110.1-10z" opacity=".5"/><path d="M1347.1 64.5a10.1 10.1 0 01-9.6-7h19.2a10.1 10.1 0 01-9.6 7zM1347.1 44.5a10 10 0 0110.1 10 10 10 0 01-.5 3h-19.2a10 10 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M1347.1 44.5a10 10 0 0110.1 10 10 10 0 01-.5 3h-19.2a10 10 0 01-.5-3 10 10 0 0110.1-10zM1316.9 44.8a10 10 0 01-10.2-10h20.3a10 10 0 01-10.1 10z" opacity=".3"/><path d="M1316.9 44.8a10 10 0 01-10.2-10h20.3a10 10 0 01-10.1 10zM1316.9 24.8a10 10 0 0110 10h-20.2a10 10 0 0110.2-10z" opacity=".5"/><path d="M1316.9 24.8a10 10 0 0110 10h-20.2a10 10 0 0110.2-10z" opacity=".3"/><path d="M1316.9 24.8a10 10 0 0110 10h-20.2a10 10 0 0110.2-10z" opacity=".5"/><path d="M1289 64.5a10.1 10.1 0 01-9.6-7h19.2a10.1 10.1 0 01-9.6 7zM1289 44.5a10 10 0 0110.1 10 10 10 0 01-.5 3h-19.2a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M1289 44.5a10 10 0 0110.1 10 10 10 0 01-.5 3h-19.2a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10zM1258.7 44.8a10 10 0 01-10-10h20.2a10 10 0 01-10.2 10z" opacity=".3"/><path d="M1258.7 44.8a10 10 0 01-10-10h20.2a10 10 0 01-10.2 10zM1258.7 24.8a10 10 0 0110.2 10h-20.3a10 10 0 0110.1-10z" opacity=".5"/><path d="M1258.7 24.8a10 10 0 0110.2 10h-20.3a10 10 0 0110.1-10z" opacity=".3"/><path d="M1258.7 24.8a10 10 0 0110.2 10h-20.3a10 10 0 0110.1-10z" opacity=".5"/><path d="M1230.8 64.5a10.1 10.1 0 01-9.6-7h19.3a10.1 10.1 0 01-9.7 7zM1230.8 44.5a10 10 0 0110.2 10 9.7 9.7 0 01-.5 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M1230.8 44.5a10 10 0 0110.2 10 9.7 9.7 0 01-.5 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.1-10zM1200.6 44.8a10 10 0 01-10.1-10h20.2a10 10 0 01-10 10z" opacity=".3"/><path d="M1200.6 44.8a10 10 0 01-10.1-10h20.2a10 10 0 01-10 10zM1200.6 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M1200.6 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".3"/><path d="M1200.6 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M1172.7 64.5a10.1 10.1 0 01-9.6-7h19.3a10.1 10.1 0 01-9.7 7zM1172.7 44.5a10 10 0 0110.1 10 9.7 9.7 0 01-.5 3h-19.2a10 10 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M1172.7 44.5a10 10 0 0110.1 10 9.7 9.7 0 01-.5 3h-19.2a10 10 0 01-.5-3 10 10 0 0110.1-10zM1142.5 44.8a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10z" opacity=".3"/><path d="M1142.5 44.8a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10zM1142.5 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110-10z" opacity=".5"/><path d="M1142.5 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110-10z" opacity=".3"/><path d="M1142.5 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110-10z" opacity=".5"/><path d="M1114.6 64.5a10.1 10.1 0 01-9.6-7h19.2a10.1 10.1 0 01-9.6 7zM1114.6 44.5a10 10 0 0110.1 10 10 10 0 01-.5 3H1105a9.7 9.7 0 01-.5-3 10 10 0 0110-10z" opacity=".3"/><path d="M1114.6 44.5a10 10 0 0110.1 10 10 10 0 01-.5 3H1105a9.7 9.7 0 01-.5-3 10 10 0 0110-10zM1084.4 44.8a10 10 0 01-10.2-10h20.3a10 10 0 01-10.1 10z" opacity=".3"/><path d="M1084.4 44.8a10 10 0 01-10.2-10h20.3a10 10 0 01-10.1 10zM1084.4 24.8a10 10 0 0110 10h-20.2a10 10 0 0110.2-10z" opacity=".5"/><path d="M1084.4 24.8a10 10 0 0110 10h-20.2a10 10 0 0110.2-10z" opacity=".3"/><path d="M1084.4 24.8a10 10 0 0110 10h-20.2a10 10 0 0110.2-10z" opacity=".5"/><path d="M1056.5 64.5a10.1 10.1 0 01-9.7-7h19.3a10.1 10.1 0 01-9.6 7zM1056.5 44.5a10 10 0 0110 10 9.7 9.7 0 01-.4 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.2-10z" opacity=".3"/><path d="M1056.5 44.5a10 10 0 0110 10 9.7 9.7 0 01-.4 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.2-10zM1026.2 44.8a10 10 0 01-10-10h20.2a10 10 0 01-10.2 10z" opacity=".3"/><path d="M1026.2 44.8a10 10 0 01-10-10h20.2a10 10 0 01-10.2 10zM1026.2 24.8a10 10 0 0110.2 10H1016a10 10 0 0110.1-10z" opacity=".5"/><path d="M1026.2 24.8a10 10 0 0110.2 10H1016a10 10 0 0110.1-10z" opacity=".3"/><path d="M1026.2 24.8a10 10 0 0110.2 10H1016a10 10 0 0110.1-10z" opacity=".5"/><path d="M1986.6 64.5a10.1 10.1 0 01-9.7-7h19.3a10.1 10.1 0 01-9.6 7zM1986.6 44.5a10 10 0 0110 10 9.7 9.7 0 01-.4 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.2-10z" opacity=".3"/><path d="M1986.6 44.5a10 10 0 0110 10 9.7 9.7 0 01-.4 3h-19.3a10 10 0 01-.5-3 10 10 0 0110.2-10z" opacity=".3"/><path d="M2000 0v14h-3.3a10.1 10.1 0 01-20.3 0h-37.9a10.1 10.1 0 01-20.2 0h-37.9a10.1 10.1 0 01-20.2 0h-37.9a10.1 10.1 0 01-20.2 0h-38a10.1 10.1 0 01-20.2 0H1706a10.1 10.1 0 01-20.2 0h-37.9a10.1 10.1 0 01-20.2 0h-38a10.1 10.1 0 01-20.2 0h-37.9a10.1 10.1 0 01-20.2 0h-38a10.1 10.1 0 01-20.2 0h-37.9a10.1 10.1 0 01-20.2 0h-37.9a10.1 10.1 0 01-20.2 0h-37.9a10.1 10.1 0 01-20.3 0H1241a10.1 10.1 0 01-20.2 0h-38a10.1 10.1 0 01-20.2 0h-37.9a10.1 10.1 0 01-20.2 0h-37.9a10.1 10.1 0 01-20.2 0h-34.6V0z"/><path d="M1956.3 44.8a10 10 0 01-10-10h20.2a10 10 0 01-10.2 10z" opacity=".3"/><path d="M1956.3 44.8a10 10 0 01-10-10h20.2a10 10 0 01-10.2 10zM1956.3 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M1956.3 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".3"/><path d="M1956.3 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M1928.4 64.5a10.1 10.1 0 01-9.6-7h19.3a10.1 10.1 0 01-9.7 7zM1928.4 44.5a10 10 0 0110.2 10 10 10 0 01-.5 3h-19.3a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M1928.4 44.5a10 10 0 0110.2 10 10 10 0 01-.5 3h-19.3a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10zM1898.2 44.8a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10z" opacity=".3"/><path d="M1898.2 44.8a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10zM1898.2 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M1898.2 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".3"/><path d="M1898.2 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M1870.3 64.5a10.1 10.1 0 01-9.6-7h19.2a10.1 10.1 0 01-9.6 7zM1870.3 44.5a10 10 0 019.6 13h-19.2a10 10 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M1870.3 44.5a10 10 0 019.6 13h-19.2a10 10 0 01-.5-3 10 10 0 0110.1-10zM1840 44.8a10 10 0 01-10-10h20.2a10 10 0 01-10.1 10z" opacity=".3"/><path d="M1840 44.8a10 10 0 01-10-10h20.2a10 10 0 01-10.1 10zM1840 24.8a10 10 0 0110.2 10H1830a10 10 0 0110-10z" opacity=".5"/><path d="M1840 24.8a10 10 0 0110.2 10H1830a10 10 0 0110-10z" opacity=".3"/><path d="M1840 24.8a10 10 0 0110.2 10H1830a10 10 0 0110-10z" opacity=".5"/><path d="M1812.2 64.5a10.1 10.1 0 01-9.7-7h19.3a10.1 10.1 0 01-9.6 7zM1812.2 44.5a10 10 0 0110.1 10 9.7 9.7 0 01-.5 3h-19.3a10 10 0 01-.4-3 10 10 0 0110-10z" opacity=".3"/><path d="M1812.2 44.5a10 10 0 0110.1 10 9.7 9.7 0 01-.5 3h-19.3a10 10 0 01-.4-3 10 10 0 0110-10zM1782 44.8a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10z" opacity=".3"/><path d="M1782 44.8a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10zM1782 24.8a10 10 0 0110.1 10H1772a10 10 0 0110.1-10z" opacity=".5"/><path d="M1782 24.8a10 10 0 0110.1 10H1772a10 10 0 0110.1-10z" opacity=".3"/><path d="M1782 24.8a10 10 0 0110.1 10H1772a10 10 0 0110.1-10z" opacity=".5"/><path d="M1754 64.5a10.1 10.1 0 01-9.6-7h19.3a10.1 10.1 0 01-9.7 7zM1754 44.5a10 10 0 0110.2 10 10 10 0 01-.5 3h-19.3a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M1754 44.5a10 10 0 0110.2 10 10 10 0 01-.5 3h-19.3a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10zM1723.8 44.8a10 10 0 01-10.1-10h20.2a10 10 0 01-10 10z" opacity=".3"/><path d="M1723.8 44.8a10 10 0 01-10.1-10h20.2a10 10 0 01-10 10zM1723.8 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M1723.8 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".3"/><path d="M1723.8 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110.1-10z" opacity=".5"/><path d="M1696 64.5a10.1 10.1 0 01-9.7-7h19.3a10.1 10.1 0 01-9.7 7zM1696 44.5a10 10 0 0110 10 10 10 0 01-.4 3h-19.3a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M1696 44.5a10 10 0 0110 10 10 10 0 01-.4 3h-19.3a9.7 9.7 0 01-.5-3 10 10 0 0110.1-10zM1665.7 44.8a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10z" opacity=".3"/><path d="M1665.7 44.8a10 10 0 01-10.1-10h20.2a10 10 0 01-10.1 10zM1665.7 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110-10z" opacity=".5"/><path d="M1665.7 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110-10z" opacity=".3"/><path d="M1665.7 24.8a10 10 0 0110.1 10h-20.2a10 10 0 0110-10z" opacity=".5"/><path d="M1637.8 64.5a10.1 10.1 0 01-9.6-7h19.2a10.1 10.1 0 01-9.6 7zM1637.8 44.5a10 10 0 0110.1 10 9.7 9.7 0 01-.5 3h-19.2a10 10 0 01-.5-3 10 10 0 0110.1-10z" opacity=".3"/><path d="M1637.8 44.5a10 10 0 0110.1 10 9.7 9.7 0 01-.5 3h-19.2a10 10 0 01-.5-3 10 10 0 0110.1-10zM1607.6 44.8a10 10 0 01-10.2-10h20.3a10 10 0 01-10.1 10z" opacity=".3"/><path d="M1607.6 44.8a10 10 0 01-10.2-10h20.3a10 10 0 01-10.1 10zM1607.6 24.8a10 10 0 0110 10h-20.2a10 10 0 0110.2-10z" opacity=".5"/><path d="M1607.6 24.8a10 10 0 0110 10h-20.2a10 10 0 0110.2-10z" opacity=".3"/><path d="M1607.6 24.8a10 10 0 0110 10h-20.2a10 10 0 0110.2-10z" opacity=".5"/><path d="M1579.7 64.5a10.1 10.1 0 01-9.7-7h19.3a10.1 10.1 0 01-9.6 7zM1579.7 44.5a10 10 0 0110 10 10 10 0 01-.4 3H1570a9.7 9.7 0 01-.5-3 10 10 0 0110.2-10z" opacity=".3"/><path d="M1579.7 44.5a10 10 0 0110 10 10 10 0 01-.4 3H1570a9.7 9.7 0 01-.5-3 10 10 0 0110.2-10zM1549.4 44.8a10 10 0 01-10-10h20.2a10 10 0 01-10.2 10z" opacity=".3"/><path d="M1549.4 44.8a10 10 0 01-10-10h20.2a10 10 0 01-10.2 10zM1549.4 24.8a10 10 0 0110.2 10h-20.3a10 10 0 0110.1-10z" opacity=".5"/><path d="M1549.4 24.8a10 10 0 0110.2 10h-20.3a10 10 0 0110.1-10z" opacity=".3"/><path d="M1549.4 24.8a10 10 0 0110.2 10h-20.3a10 10 0 0110.1-10z" opacity=".5"/></g></svg>');
}

@media (min-width: 2100px) {
	.shapedividers_com-5970::before {
		background-size: 100% calc(2vw + 70px);
	}
}

              
            
!

JS

              
                /* VUE: UI is driven by value of user's "potential for success"
 * POTENTIAL is affected by user CHOICES made in SCENARIOS
 * potential=0 represents a fully Fixed Mindset
 * potential=100 represents a true Growth Mindset
 * Scenarios from: https://www.developgoodhabits.com/fixed-growth-mindset-examples/
 */
const App = Vue.createApp({
	data() {
		return {
			potential: 25, // scale of "potential for success"
			indexScenario: 0, // index of ACTIVE scenario
			scenarios: [
				{
					scenario:
						"Your boss approaches you with a new project that involves a new type of software that you’ve never heard of before. What are your first thoughts?",
					fixed:
						"This must be a mistake. I’ve never heard of this software and I’ve never done this project before, so I can’t do this. I’ll respond and ask who I should forward this responsibility to.",
					growth:
						"Sure, I can take on this new challenge. I’ve learned new software systems in the past, so I should be able to pick up on this one pretty quickly. This project is new to me too, but I’ll learn as I go!"
				},
				{
					scenario:
						"You go into a team meeting for a project that you’ve been working on and one of your teammates comments that your portion of the project needs some work–it’s too short and it doesn’t blend in well with everyone else’s efforts. How do you respond?",
					fixed:
						"You tell your team that your work is simply more concise, which actually makes it better than everyone else’s. Or, you feel defeated, thinking you just don’t have what it takes to be on this team. ",
					growth:
						"You take this feedback into consideration and implement the advice that’s given–and when you start another team project in the future, you keep this lesson in mind by being aware of your tendency to simplify things a bit too much."
				},
				{
					scenario:
						"If you’re among the many households who tried–and inevitably failed–your first attempt at making sourdough starter during quaratine, you came out on the other side of that experience thinking one of two things:",
					fixed: "This is pointless and a waste of time because I can’t bake.",
					growth:
						"It’s ok, everyone fails at this. There is a learning curve and a lot of variables that go into this process. So I’ll assess what may have gone wrong and try again."
				},
				{
					scenario:
						"Let’s say someone at work gained recognition for a recent project that, once implemented, was able to improve the efficiency of a common process in the office. This made everyone’s life a bit easier–even your own–and there’s been a lot of talk surrounding the “win” ever since. How are you feeling?",
					fixed:
						"First of all, it’s not that big of a deal and people should get over it. Secondly, what about that quick fix you found a few months ago to a common issue in the office, where was the recognition for that? You’re not going to add to the hype, your co-worker sucks.",
					growth:
						"You’re feeling great because a once-arduous task that took up a lot of your time has now become quick and simple. You’re so thankful for your co-worker’s efforts and join in with everyone else’s praise and support toward this person."
				},
				{
					scenario:
						"It's the first day of school and you recieve your schedule for the year. You are shocked to see Intro to Photography. You find out Art is a required class this year, but you have zero artistic experience and never signed up to take the subject.",
					fixed:
						"Take an art class? Why? I’m not interested in art and I’m not good at it. I’m also not creative, so why waste my time trying to learn about a creative hobby?",
					growth:
						"There’s an opportunity to learn something? I’ll take it! I don’t know much about the topic and have never really been interested in it, but who knows, I may uncover a new passion or develop a new skill that I have never considered before!"
				},
				{
					scenario:
						"A job interviewer asks you to reflect on your strengths and weaknesses. Regardless of the response you give the interviewer, what are the honest thoughts going through your head?",
					fixed:
						"I’m not extremely confident in myself because I know there are people out there who are smarter, more talented, and more skilled than I am. However, there is nothing I can do about it because this is just how I am.",
					growth:
						"I’m confident in my ability to learn and be the best version of myself possible. I know I will always have some areas in my life that could use some improvement, and I will focus on them in due time. I  can continue to cultivate my personal qualities with effort and persistence, and I have the confidence and sense of resiliency that is needed to face any challenge."
				},
				{
					scenario:
						"You wake up late and jump out of bed, already stressed. You have to skip breakfast and coffee. You rush to the curb only to find that you’ve missed the bus or the car pool. How do you process this bad luck?",
					fixed:
						"Probably mutter, curse and call yourself or someone else names and then, remain in a foul mood for the rest of the day.",
					growth:
						"Decide to go to bed earlier tonight, set an alarm and lay out your clothes and breakfast dishes in the evening itself, so that tomorrow can be better and different."
				},
				{
					scenario:
						"Your boss calls you in to yell at you about a report you’d prepared or a project you’re handling. They think you aren’t doing a great job of it. How are you feeling when you leave the office?",
					fixed:
						"You beat yourself up, feel that you aren’t talented or skilled enough for the job or that your boss is a moron who has no idea what it takes, and then, spend the rest of the day crying and complaining and maybe even job hunting.",
					growth:
						"You evaluate your performance, seek actual, constructive feedback that can help you improve, figure out what can be better with your project and then, do that and move on!"
				}
			]
		};
	},
	methods: {
		// Change which scenario is ACTIVE (displayed)
		changeScenario() {
			if (this.indexScenario == this.scenarios.length - 1) {
				this.indexScenario = 0;
			} else {
				this.indexScenario++;
			}
		},
		// Decrease POTENTIAL if user makes a "Fixed Mindset" choice
		decPotential() {
			if (this.potential > 0) {
				this.potential -= 5;
				this.changeScenario();
			}
		},
		// Increase POTENTIAL if user makes a "Growth Mindset" choice
		incPotential() {
			if (this.potential < 100) {
				this.potential += 5;
				this.changeScenario();
			}
		}
	},
	computed: {
		// Currently active scenario object
		activeScenario() {
			return this.scenarios[this.indexScenario];
		}
	}
});

App.component("scenario-component", {
	props: ["scenario"],
	data() {
		return {};
	},
	template: `
	<div class="row pt-2 text-center">
		<div class="col">
			<p><strong>{{ scenario }}</strong></p>
		</div>
	</div>
	`
});

App.mount("#app");

              
            
!
999px

Console