/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

input {
	all: unset;
  }

body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

@font-face {
    font-family: 'Lato', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Lato', sans-serif;
	color: white;
}

body {
	background: #333339;
	width: 90%;
	margin: 0 auto;
}

header {
	padding: 45px 0;
	border-bottom: 1px solid #696977;
}

header h1 {
	font-size: 50px;
}

header h1 + p {
	font-size: 25px;
	margin-top: 10px;
}

header .sleed {
	color: #00c781;
	font-weight: bold;
}

main {

}

main .section {
	padding: 45px 0;
	border-bottom: 1px solid #696977;
}

main .section h2 {
	font-size: 30px;
	margin-bottom: 30px;
}

main .subsection {
	margin-bottom: 100px;
}

main .subsection .top {
	display: flex;
	align-items: center;
}

main .subsection h3 {
	margin-right: 10px;
}


main .subsection .top .options {
	display: flex;
}

main .subsection .top .options li {
	margin: 0 3px;
	background: #666666;
	padding: 5px 15px;
	cursor: pointer;
	border-radius: 10px;
	line-height: 15px;
}

main .subsection .top .options li.active {
	background: #00c781;
}

main .subsection .container {
	padding: 15px;
	display: flex;
	margin: 20px 0;
	border: 1px solid #696977;
	background: #4b4b50;
	position: relative;
	resize: vertical;
	overflow: hidden;
	gap: 15px;
}

main .subsection .container:before {
	content: '';
	display: block;
	width: calc(100% - 30px);
	height: 1px;
	border-bottom: 2px dashed #00c781;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

main .subsection .container:after {
	content: '';
	display: block;
	height: calc(100% - 30px);
	width: 1px;
	border-right: 2px dashed #00c781;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
}

main .subsection .container:hover:after,
main .subsection .container:hover:before {
	opacity: 0.2
}

main .subsection .container .element {
	width: 150px;
	padding: 30px 0;
	background: #fbfbfb;
	resize: both;
	overflow: hidden;
	color: black;
	display: flex;
	justify-content: center;
	align-items: center;
}

main .subsection .container .element span {
	width: 50%;
	text-align: right;
	color: black;
}

main .subsection .container .element input {
	border: none;
	outline: none;
	color: black;
	font-weight: bold;
	width: auto;
	flex-grow: 0;
	min-width: 0;
	margin-left: 5px;
	border-bottom: 1px solid transparent;
	cursor: pointer;
	width: 50%;
	text-align: left;
	background: #fbfbfb;
}

main .subsection .container .element input:focus {
	background: white;
	border-bottom: 1px solid black;
}

.css textarea {
	resize: none;
	width: 100%;
	background: #4b4b50;
	border: 1px dashed #696977;
	outline: 0;
	padding: 25px;
	font-family: monospace;
}

.custom-section .element strong {
	color: inherit;
}