/*---------------------------------------------------------
 Body (editor-style.css)
-------------------------------------------------------- */
body {
    max-width: 100% !important;
    margin: 9px 10px !important;
}
/*---------------------------------------------------------
 Buttons (editor-style.css)
-------------------------------------------------------- */
.ttfmake-button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    padding: 10px 14px;
    font-size: 13px;
    color: #ffffff;
    border: 0;
    background: #171717;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
/* Deprecated in 1.4.1 */
.color-primary-background {
    background-color: #0094c5;
}
.color-secondary-background {
    background-color: #eaecee;
}
.ttfmake-success {
    background-color: #339d56;
}
.ttfmake-error {
    background-color: #d04242;
}
.ttfmake-important {
    background-color: #f89e01;
}
.ttfmake-download:after {
    content: "\f0ab";
    padding-left: 6px;
    font-family: FontAwesome;
}
/*---------------------------------------------------------
 Notices / Alerts (editor-style.css)
-------------------------------------------------------- */
.ttfmake-notice {
    background: #e5e5e5;
    border: 2px solid #808080;
    color: #808080;
    margin-bottom: 22px;
    margin-bottom: 2.2rem;
    padding: 10px 20px;
}
.ttfmake-notice p {
    margin-top: 0;
}
.ttfmake-notice p:last-of-type {
    margin-bottom: 0; //reset
}
/* Deprecated in 1.4.1 */
.ttfmake-alert {
    margin-bottom: 22px;
    padding: 33px 32px;
    font-size: 14px;
    background-color: #eaecee;
}
.ttfmake-alert.ttfmake-success {
    color: #339d56;
    background-color: #eef7f1;
}
.ttfmake-alert.ttfmake-error {
    color: #d04242;
    background-color: #f7eeee;
}
.ttfmake-alert.ttfmake-important {
    color: #f89e01;
    background-color: #fffde5;
}
/*---------------------------------------------------------
 Lists (editor-style.css)
-------------------------------------------------------- */
ul {
    list-style: disc;
}
ol {
    list-style: decimal;
}
ul,
ol {
    margin: 0 0 22px 0;
    padding-left: 20px;
}
ul.ttfmake-list,
ol.ttfmake-list {
    padding-left: 0;
    list-style: none;
}
ul.ttfmake-list li:before,
ol.ttfmake-list li:before {
    padding-right: 10px;
    font-family: FontAwesome;
}
/* Deprecated in 1.4.1 */
ul.ttfmake-list-check li:before,
ol.ttfmake-list-check li:before {
    content: "\f14a";
    color: #339d56;
}
ul.ttfmake-list-check2 li:before,
ol.ttfmake-list-check2 li:before {
    content: "\f046";
    color: #339d56;
}
ul.ttfmake-list-star li:before,
ol.ttfmake-list-star li:before {
    content: "\f005";
    color: #f89e01;
}
ul.ttfmake-list-dot li:before,
ol.ttfmake-list-dot li:before {
    content: "\f192";
    color: #0094c5;
}