/* Email and editor */

body {
    background-color: #F0F1F3;
    font-family: 'Helvetica Neue', 'Segoe UI', Helvetica, sans-serif;
    font-size: 15px;
    line-height: 26px;
    margin: 0;
    color: #444;
}

pre {
    background: #f4f4f4f4;
    padding: 2px;
}

table.wrapper {
    width: 100%;
    border: none;
    margin: none;
    padding: none;
}

.wrap {
    background-color: #fff;
    padding: 30px;
    max-width: 525px;
    margin: 0 auto;
    border-radius: 5px;
}

.button {
    background: #0055d4;
    border-radius: 3px;
    text-decoration: none !important;
    color: #fff !important;
    font-weight: bold;
    padding: 10px 30px;
    display: inline-block;
}
.button:hover {
    background: #111;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}

h1 {
}
h2 {
  color: #E15718;
}
h3 {
  color: #3498DB;
  margin-top: 0;
  margin-bottom: 0;
}
h3 a {
  color: #3498DB;
  text-decoration: none;
}
a.domain {
  color: #E15718;
  text-decoration: none;
}
a.noline {
    text-decoration: none;
}


.header {
    text-align: center;
    font-size: 12px;
    color: #888;
}
.header a {
    color: #888;
    margin-right: 5px;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: #888;
}
.footer a {
    color: #888;
    margin-right: 5px;
}

.gutter {
    padding: 30px;
}
/*
img {
    max-width: 100%;
    height: auto;
}
*/

a {
    color: #0055d4;
}
a:hover {
    color: #111;
}
    @media screen and (max-width: 600px) {
    .wrap {
        max-width: auto;
    }
    .gutter {
        padding: 10px;
    }
}

/* --------------- */
/* Editor specific */
/* --------------- */


*[contenteditable] {
    outline: none;
}

/* Edit slider */

.showonhover {
    opacity: 1;
    transition: 0.4s;
}
.showonhover:hover {
    opacity: 1;
}
@media (hover: hover) {
    .showonhover {
        opacity: 0;
    }
}
.edit-slider {
    width: 34px;
    overflow: hidden;
    transition: width .4s ease-in-out;
    -webkit-transition: width .4s ease-in-out;
    -moz-transition: width .4s ease-in-out;
}
.edit-slider:hover, .edit-slider:active {
	width: 305px;
}
.edit-slider > button:first-child {
    opacity: 100;
    transition: opacity .4s ease-in-out;
}
.edit-slider:hover > button:first-child, .edit-slider:active > button:first-child {
    opacity: 0;
    transition: opacity .4s ease-in-out;
}

.fileupload::-webkit-file-upload-button {
    visibility: hidden;
}
.fileupload::before {
    content: '\f093'; /* FontAwesome Unicode upload icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
}

/* Login page */

.login-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f5f5f5;
}
.login-form {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: 0 auto;
}
.login-form .checkbox {
    font-weight: 400;
}
.login-form .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
}
.login-form .form-control:focus {
    z-index: 2;
}
.login-form input[type="text"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.login-form input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}