/* =Container
-------------------------------------------------------------- */
#liveblog-container {
  font-family: sans-serif;
  margin: 10px 0;
  width: 100%;
  display: block;
}

.liveblog-form {
  position: relative;
}

/* =Form Actions
-------------------------------------------------------------- */
.liveblog-actions {
  display: block;
  padding: 5px 20px 16px 20px;
  border-radius: 3px;
  /* border: 1px solid #dfdfdf;
  background: #fafafa; */
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.liveblog-actions.uploading {
  border-color: #ccc;
  background: #e6e6e6;
}

.liveblog-actions legend {
  background: transparent;
  margin: 6px 0 10px;
  padding: 5px;
  float: left;
}

.liveblog-actions legend ul,
.liveblog-actions legend li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.liveblog-actions legend ul a {
  text-decoration: none;
  border: none;
}

.liveblog-actions legend ul a:hover {
  text-decoration: none;
  border: none;
}

.liveblog-actions legend ul .active a {
  color: #333;
  font-weight: bold;
  cursor: text;
}

.liveblog-actions legend ul .active a:hover {
  color: #333;
}

.liveblog-html-edit-toggle,
.liveblog-rich-form-entry {
  display: none;
}

.liveblog-form.rich-text-enabled .liveblog-rich-form-entry,
.liveblog-form.rich-text-enabled .liveblog-html-edit-toggle {
  display: block;
}

.liveblog-html-edit-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: smaller;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 2;
}

.liveblog-edit-commands {
  margin-bottom: 5px;
  clear: both;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.liveblog-form-entry,
.liveblog-form-rich-entry {
  color: #333;
  background: #fff;
  min-height: 100px;
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px;
  border: 1px solid #ddd;
  outline-color: #acc;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.liveblog-form-entry:focus,
.liveblog-form-rich-entry:focus {
  border-color: #AAA;
  -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#liveblog-container .liveblog-form-rich-entry {
  overflow: auto;
  line-height: 1.2em;
  display: block;
  /* if display:inline-block, then Chrome sometimes has a rendering quirk with scrolling */
}

#liveblog-container .liveblog-form-rich-entry p {
  margin-bottom: 1em;
  line-height: 1.2em;
}

/* normalize placeholder text color - mainly for IE/Firefox, Webkit added for consistency */
a.liveblog-form-entry::-webkit-input-placeholder {
  color: #A9A9A9;
}

.liveblog-form-entry:-moz-placeholder {
  color: #A9A9A9;
}

.liveblog-form-entry:-ms-input-placeholder {
  color: #A9A9A9;
}

.liveblog-rich-text-wrapper {
  position: relative;
}

.liveblog-rich-text-placeholder {
  position: absolute;
  left: 6px;
  top: 2px;
  color: #aaa;
  display: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.liveblog-formatting-command {
  display: inline-block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  margin: 1px;
  border: solid 1px transparent;
  padding: 0;
  width: 20px;
  height: 20px;
  line-height: 20px;
  cursor: pointer;
}

.liveblog-formatting-command .icon {
  background-image: url("../../../plugins/liveblog/images/icons.png?ver=0.1");
  width: 20px;
  height: 20px;
  display: block;
}

.liveblog-formatting-command:hover {
  border-color: #bbb;
  background: #eee;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#e5e5e5), to(#fff));
  background-image: -webkit-linear-gradient(bottom, #e5e5e5, #fff);
  background-image: -moz-linear-gradient(bottom, #e5e5e5, #fff);
  background-image: -o-linear-gradient(bottom, #e5e5e5, #fff);
  background-image: linear-gradient(to top, #e5e5e5, #fff);
}

.liveblog-formatting-command:active,
.liveblog-formatting-command.active {
  outline: none;
  border-color: #999 #ccc #ccc #999;
  background: #eee;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#f6f6f6), to(#e3e3e3));
  background-image: -webkit-linear-gradient(bottom, #f6f6f6, #e3e3e3);
  background-image: -moz-linear-gradient(bottom, #f6f6f6, #e3e3e3);
  background-image: -o-linear-gradient(bottom, #f6f6f6, #e3e3e3);
  background-image: linear-gradient(to top, #f6f6f6, #e3e3e3);
}

.liveblog-formatting-command[data-command="bold"] .icon {
  background-position: 0 -20px;
}

.liveblog-formatting-command[data-command="bold"]:hover .icon {
  background-position: 0 0;
}

.liveblog-formatting-command[data-command="italic"] .icon {
  background-position: -20px -20px;
}

.liveblog-formatting-command[data-command="italic"]:hover .icon {
  background-position: -20px 0;
}

.liveblog-formatting-command[data-command="underline"] .icon {
  background-position: -280px -20px;
}

.liveblog-formatting-command[data-command="underline"]:hover .icon {
  background-position: -280px 0;
}

.liveblog-formatting-command[data-command="strikeThrough"] .icon {
  background-position: -540px -20px;
}

.liveblog-formatting-command[data-command="strikeThrough"]:hover .icon {
  background-position: -540px 0;
}

.liveblog-formatting-command[data-command="createLink"] .icon {
  background-position: -160px -20px;
}

.liveblog-formatting-command[data-command="createLink"]:hover .icon {
  background-position: -160px 0;
}

.liveblog-formatting-command[data-command="unlink"] .icon {
  background-position: -180px -20px;
}

.liveblog-formatting-command[data-command="unlink"]:hover .icon {
  background-position: -180px 0;
}

.liveblog-formatting-command[data-command="removeFormat"] .icon {
  background-position: -380px -20px;
}

.liveblog-formatting-command[data-command="removeFormat"]:hover .icon {
  background-position: -380px 0;
}

/* HiDPI */
@media print, (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  .liveblog-formatting-command .icon {
    background-image: url("../../../plugins/liveblog/images/icons-2x.png?ver=0.1");
    background-size: 560px 40px;
  }
}
.drag-over .liveblog-form-entry,
.drag-over .liveblog-form-rich-entry {
  background: #efe;
  color: #333;
}

.liveblog-actions .liveblog-submit-wrapper {
  position: relative;
  line-height: 24px;
  overflow: hidden;
}

.liveblog-form-entry-submit {
  margin: 0;
}

.liveblog-submit-spinner {
  padding: 0;
  position: absolute;
  top: 50%;
  right: 50%;
}

#liveblog-update-spinner {
  margin-top: 30px;
}

#liveblog-container .button-secondary,
#liveblog-container .button {
  display: inline-block;
}

#liveblog-container .liveblog-actions .liveblog-submit-wrapper .liveblog-form-entry-submit.button {
  display: block;
  margin-top: 0;
  float: left;
}

.liveblog-actions .liveblog-submit-wrapper a {
  display: block;
  margin-top: 3px;
  font-size: 85%;
}

#liveblog-container .cancel {
  margin-left: 15px;
  float: right;
}

.liveblog-actions .liveblog-submit-wrapper .liveblog-entry-delete {
  float: right;
}

/* Remove the dotted border on :focus and the extra padding in Firefox */
#liveblog-container .button-secondary::-moz-focus-inner {
  border-width: 1px 0;
  border-style: solid none;
  border-color: transparent;
  padding: 0;
}

#liveblog-container .button-secondary {
  line-height: 24px;
}

#liveblog-container .button-secondary:focus {
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

#liveblog-container .button-secondary:active {
  text-shadow: 0 -1px 0 #fff;
  -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
}

#liveblog-container .liveblog-entry-delete:hover,
#liveblog-container .liveblog-entry-delete:focus,
#liveblog-container .liveblog-entry-delete:active,
#liveblog-container .liveblog-entry-delete {
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}

#liveblog-container .liveblog-entry-delete:active,
#liveblog-container .liveblog-entry-delete:focus,
#liveblog-container .liveblog-entry-delete:hover {
  color: #ff0000;
  text-decoration: underline;
}

/* =Feedback and Nags
-------------------------------------------------------------- */
.liveblog-message {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 5px;
  padding: 7px 10px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-shadow: 1px 1px 0 #0074a2;
}

.liveblog-hidden {
  display: none;
}

/* =Entry Container
-------------------------------------------------------------- */
#liveblog-entries {
  display: block;
  padding: 10px 0 0 0;
}

.liveblog-loading {
  color: #aaa;
  background: #f9f9f9;
  border: 1px solid #ddd;
}

.liveblog-preview {
  clear: both;
}

.liveblog-archived-message {
  background-color: lightYellow;
  padding: 12px;
  border: orange;
  border-radius: 4px;
}

/* =Single Entry
-------------------------------------------------------------- */
.liveblog-entries header {
  margin: 0;
  padding: 0;
}

.liveblog-entry {
  overflow: hidden;
  margin: 0;
  padding: 20px 0 20px 50px;
  position: relative;
}
.liveblog-entry + .liveblog-entry {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.liveblog-entry.highlight {
  background-color: lightYellow;
}

.liveblog-entry .liveblog-entry-text {
  margin: 10px 0 0 0;
}
.liveblog-entry .liveblog-meta {
  position: relative;
}
.liveblog-entry .liveblog-meta .liveblog-author-name {
  line-height: 18px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
}
.liveblog-entry .liveblog-meta .liveblog-author-name a {
  color: #000;
}
.liveblog-entry .liveblog-meta .liveblog-author-avatar {
  float: left;
  margin: 0;
  position: absolute;
  left: -50px;
  top: 0;
}
.liveblog-entry .liveblog-meta .liveblog-author-avatar img {
  width: 30px;
  height: 30px;
}
.liveblog-entry .liveblog-meta .liveblog-meta-time {
  margin-left: 10px;
  font-size: 10px;
  line-height: 12px;
}

.liveblog-meta-time a {
  color: #aaa;
  text-decoration: none;
  text-transform: uppercase;
}

.liveblog-meta-time .time:before {
  content: " - ";
}

.liveblog-entry-actions {
  margin-top: 15px;
  margin-bottom: 0;
}

.liveblog-entry .liveblog-entry-actions,
.liveblog-entry .liveblog-entry-actions li {
  padding-left: 0;
  list-style: none;
}

.liveblog-fixed-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  text-align: center;
  -webkit-box-shadow: 0px 0px 8px 0px #000000;
  -moz-box-shadow: 0px 0px 8px 0px #000000;
  box-shadow: 0px 0px 8px 0px #000000;
  background-color: rgba(1, 1, 1, 0.6);
}

#liveblog-fixed-nag a {
  text-decoration: none;
  display: block;
  color: white;
}

#liveblog-fixed-nag a .num, #liveblog-socketio-error {
  font-size: 30px;
  margin: 0 3px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}

/* =Hashtags
-------------------------------------------------------------- */
.liveblog-hash {
  color: #55acee;
  font-weight: bold;
}

.liveblog-hash::before {
  content: "#";
}

/* =Authors
-------------------------------------------------------------- */
.liveblog-author {
  font-weight: bold;
}

.liveblog-author::before {
  content: "@";
}

/* =Emoji
-------------------------------------------------------------- */
.liveblog-emoji {
  width: 18px;
  height: 18px;
}

/* =Commands
-------------------------------------------------------------- */
.liveblog-command {
  display: none;
}

/* =Key Events
-------------------------------------------------------------- */
.liveblog-key-events h2 {
  color: #333;
  margin-bottom: 15px;
}

.liveblog-key-events .liveblog-entry {
  border: none;
  overflow: visible;
  padding: 0;
}

.liveblog-key-events .liveblog-entry a:hover {
  text-decoration: underline;
}

.liveblog-key-events li.liveblog-entry p {
  margin-bottom: 0;
}

.liveblog-key-events .liveblog-key-timeline {
  position: relative;
  border-left: 1px solid #bbb;
  padding-top: 1px;
}

.liveblog-key-events .liveblog-key-timeline:after,
.liveblog-key-events .liveblog-key-timeline:before {
  content: "";
  position: absolute;
  left: -5px;
  height: 1px;
  width: 10px;
  border-bottom: 1px solid #bbb;
}

.liveblog-key-events .liveblog-key-timeline:after {
  bottom: 0;
}

.liveblog-key-events .liveblog-key-timeline:before {
  top: 0;
}

.liveblog-key-events .liveblog-key-timeline li {
  position: relative;
  display: block;
  list-style: none;
  margin-bottom: 25px;
}

.liveblog-key-events .liveblog-key-timeline li:before {
  content: "";
  position: absolute;
  display: block;
  top: 11px;
  left: -4px;
  height: 7px;
  width: 7px;
  background-color: #bbb;
}

.liveblog-key-events .liveblog-key-timeline li .date {
  display: block;
  font-size: 10px;
  color: #333;
  padding-left: 20px;
}

.liveblog-key-events .liveblog-key-timeline li .title {
  padding-left: 20px;
  display: inline-block;
}

/* =Load More Buttons
-------------------------------------------------------------- */
.liveblog-load-more {
  display: block;
  width: 100%;
  margin-top: 30px;
}

[src*="lazy-load/images/1x1.trans.gif"][data-lazy-loaded] {
  display: none !important;
}

/*# sourceMappingURL=liveblog.css.map */
