/*@Editor-classes
Tip module|.module-tip
Note module|.module-note
Alert module|.module-alert
Stats|.stats
Button|a.button-wysiwyg
@Editor-classes*/

* {
    box-sizing: border-box;
}

html {
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    font-family: proxima-soft, sans-serif;
}

body {
    font-size: 1.25rem;
    font-family: proxima-soft, sans-serif;
    color: #3e4142;
    line-height: 1.5;
}

h1, h2, h3 {
    font-family: 'Raleway', sans-serif;
}

h1 {
    font-size: 2.625rem;
    font-weight: 400;
    line-height: 1.25;
}

h2 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3125;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

h6 {
    font-size: 0.875rem;
    font-weight: 600;
}

p {
    margin-top: 0;
}

code,
pre {
    font-family: 'Droid Sans Mono', monospace;
    font-size: 0.875rem;
    color: #67717e;
}

pre {
    border: 1px solid #c2ccd6;
    background-color: #f2f6f8;
    border-radius: 2px;
    padding: 0 20px;
    overflow-x: auto;
}

a {
    color: #4c4bbc;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #8c47a0;
}

ol:not([class]) {
    counter-reset: li;
    list-style-type: none;
    padding: 0;
}

ol:not([class]) > li:not([class]) {
    position: relative;
    line-height: 1.5;
    margin-bottom: 1em;
    padding-left: 60px;
}

ol:not([class]) > li:not([class]):before {
    counter-increment: li;
    content: counter(li);
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
    width : 32px;
    height: 32px;
    line-height: 28px;
    font-weight: 600;
    color: #038714;
    border: 2px solid #038714;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

ul:not([class]) {
    list-style-type: none;
    padding: 0;
}

ul:not([class]) > li:not([class]) {
    position: relative;
    margin-bottom: 1em;
    padding-left: 35px;
}

ul:not([class]) > li:not([class]):before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4c4bbc;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 4px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 15px 0;
}

th {
    border-bottom: 1px solid #d5e0e6;
    border-right: 20px solid #fff;
    text-align: left;
}

td {
    border-bottom: 1px solid #d5e0e6;
    border-right: 20px solid #fff;
}

tr:last-child td {
    border-bottom: none;
}

.module-tip {
    background-color: #f3fcf4;
    border: 1px solid #a3cfa9;
}

.module-note {
    background-color: #fbf8e2;
    border: 1px solid #dec694;
}

.module-alert {
    background-color: #f9ecef;
    border: 1px solid #ba2d4d;
}

.module-tip,
.module-note,
.module-alert {
    padding: 12px 20px 12px 60px;
    border-radius: 2px;
    display: block;
    margin: 1em 0;
}

.module-tip a,
.module-note a,
.module-alert a {
    text-decoration: underline;
    color: #3e4142;
}

.module-tip a {
    text-decoration-color: #2cb73e;
}

.module-note a {
    text-decoration-color: #b8a893;
}

.module-alert a {
    text-decoration-color: #a9405f;
}

.module-tip a:hover,
.module-note a:hover,
.module-alert a:hover {
    text-decoration: none;
}

.module-tip:before,
.module-note:before,
.module-alert:before {
    content: '';
    display: inline-block;
    margin-left: -40px;
    margin-right: 16px;
    vertical-align: -10%;
}

.stats {
	color: #038714;
	font-weight: bold;
}

a.button-wysiwyg {
	color: #fff;
	background-color: #4c4bbc;
	font-size: 1.125rem;
	border-radius: 2px;
	padding: 7px 20px;
	display: inline-block;
}