* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    --color-primary: #6c928c;
    --color-accent: #96B499;
    --color-text: #34495e
}

html,
body {
    font-family: Source Sans Pro, Helvetica Neue, Arial, sans-serif;
    height: 100%;
    color: var(--color-text);
    font-size: 16px;
    line-height: 24px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased
}

body {
    display: flex
}
a {
    color: #3498db;
    cursor: pointer;
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

img {
    height: auto;
    max-width: 100%
}

strong {
    font-weight: 700
}

ul {
    display: block;
    padding: 0 16px
}

input[type=number] {
    -moz-appearance: textfield
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none
}

input[type=color] {
    padding: 0;
    border: none;
    outline: none;
    cursor: pointer
}

input ::-webkit-color-swatch-wrapper {
    background: #fff
}

input ::-webkit-color-swatch {
    position: relative
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none
}

::-webkit-input-placeholder {
    color: #999
}

::-moz-placeholder {
    color: #999
}

:-moz-placeholder {
    color: #999
}

:-ms-input-placeholder {
    color: #999
}

h1,
h2,
h3 {
    font-weight: 600;
    line-height: 24px
}

h1 {
    font-size: 20px;
	margin-bottom: 10px;
}

h2 {
    font-size: 18px
}

h3 {
    font-size: 16px
}

.container {
    margin: 0 auto;
    width: 1200px;
    padding: 20px 0;
}
.input,
.textarea,
input[type=checkbox] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none
}

.input,
.textarea,
.button,
input[type=checkbox],
.static,
.select {
    border-radius: 3px;
    border: 1px solid #dbdbdb;
    align-items: center;
    color: var(--color-text);
    display: inline-flex;
    position: relative
}

.input,
.textarea,
.button,
.file-cta,
.file-name,
.static,
.select {
    outline: none;
    font-size: 14px;
    line-height: 18px;
    min-height: 34px
}

.input,
.textarea {
    max-width: 100%;
    width: 100%
}

.input.error,
.textarea.error {
    border: 1px solid #ff3860
}

.input,
.textarea,
.file-cta,
.file-name {
    padding: 8px 12px
}

.button,
.file-cta,
.file-name,
.static {
    padding: 8px 16px
}

.input:hover,
.textarea:hover,
input[type=checkbox]:hover,
.select:hover,
.input:focus,
.textarea:focus {
    border-color: var(--color-primary)
}

.input[disabled],
.textarea[disabled] {
    background: #f5f5f5;
    border-color: #dbdbdb
}

.select {
    padding: 0 12px;
    flex-shrink: 0
}

.textarea {
    display: block;
    max-width: 100%;
    min-width: 100%;
    resize: vertical;
    line-height: 22px
}

.textarea.fixed-size {
    resize: none
}

.button {
    cursor: pointer;
    background: #fff;
    justify-content: center;
    text-align: center;
    white-space: nowrap
}

.button:hover {
    border-color: #b5b5b5
}

.button:active {
    background: #f9f9f9
}

.button.primary {
    color: #fff;
    z-index: 3;
    border-color: var(--color-primary);
    background: var(--color-primary)
}

.button.primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent)
}
.button span:first-child {
    margin-right: 1em
}

.button span:last-child {
    margin-left: 1em
}
.flex {
    display: flex
}
.fullwidth {
    width: 100%
}

.fullHeight {
    height: 100%
}
.mid-menus {
    align-items: center;
    justify-content: center;
    width: 130px;
    display: flex;
    padding: 0 16px
}

.mid-menus * {
    width: 100%
}

.mid-menus .button {
    margin: 0
}
.mid-menus .button:not(:first-child) {
    margin-top: 16px
}
.editarea {
	box-sizing: border-box;
    width: 1px;
    height: 75vh;
	min-height: 320px;
    flex-grow: 1;
	margin-bottom: 60px;
}
.editarea  pre{
	overflow: auto;
}