/**
 * microblog styles
 *
 * compile using command:
 * $ sass wp-content/plugins/jungto/microblog/styles.scss wp-content/plugins/jungto/microblog/styles.css
 */
/**
 * Jungto Plugin SASS Variables
 */
.jungto-blog .jungto-blog-image {
  display: inline-block;
  position: relative;
  text-align: center;
  background-color: transparent;
  border: 1px dotted #ebedee;
  border-radius: 10px;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-top: 2ch;
  margin-bottom: 2ch;
}
.jungto-blog .jungto-blog-image img, .jungto-blog .jungto-blog-image video {
  width: auto;
  height: 300px;
  object-fit: contain;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 100;
}
.jungto-blog .jungto-blog-image button {
  position: absolute;
  top: 5px;
  right: 5px;
}
.jungto-blog .youtube-container .embed {
  width: auto;
  height: 300px;
  object-fit: contain;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 100;
}
.jungto-blog .youtube-container .embed iframe {
  width: auto;
  height: 300px;
  border-radius: 3px;
}
.jungto-blog .jungto-blog-action {
  display: inline-block;
}
.jungto-blog .jungto-blog-action i {
  width: 2ch;
}
.jungto-blog .jungto-blog-content {
  position: relative;
  width: 100%;
  display: inline-block;
  font-style: italic;
  padding: 0.5rem;
  line-height: 1.5;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.jungto-blog .jungto-blog-content .jungto-blog-date {
  font-weight: 100;
  font-size: 0.8em;
}
.jungto-blog .jungto-blog-content .jungto-blog-user {
  font-weight: 100;
  font-size: 0.8em;
}
.jungto-blog .jungto-blog-content .jungto-blog-user::before {
  content: "[";
}
.jungto-blog .jungto-blog-content .jungto-blog-user::after {
  content: "]";
}
.jungto-blog .jungto-blog-content .jungto-blog-text {
  display: inline-block;
  background-color: transparent;
}
.jungto-blog .jungto-blog-content input.jungto-blog-text {
  border: 0px;
  border-bottom: 1px solid #343a40;
  height: 4ch;
}
.jungto-blog .jungto-blog-content input.jungto-blog-text::placeholder {
  color: rgba(73, 80, 87, 0.2);
}
.jungto-blog .jungto-blog-content .jungto-blog-content-line {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: auto;
  margin-bottom: 2.5ch;
}
.jungto-blog .jungto-blog-content .jungto-blog-content-line > * {
  margin-left: 5px;
  margin-right: 5px;
}
.jungto-blog .jungto-blog-content .jungto-blog-content-line > .begin {
  margin-left: 0px;
}
.jungto-blog .jungto-blog-content .jungto-blog-content-line > .begin > * {
  margin-left: 5px;
  margin-right: 5px;
  display: inline;
}
.jungto-blog .jungto-blog-content .jungto-blog-content-line > .fill {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}
.jungto-blog .jungto-blog-content .jungto-blog-content-line > .end {
  width: 10ch;
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 0px;
  text-align: right;
}
.jungto-blog .btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.jungto-blog .btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.jungto-blog .btn.btn-default {
  color: #444;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.jungto-blog .btn.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.jungto-blog .btn.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.jungto-blog .btn.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.jungto-blog .btn.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.jungto-blog .btn.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.jungto-blog .btn.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.jungto-blog .btn.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.jungto-blog .btn.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.jungto-blog .btn.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent;
}
.jungto-blog .errors {
  width: 60%;
  margin-left: 50%;
  transform: translateX(-50%);
  border: 1px #ffc107;
  border-radius: 5px;
  background-color: rgba(4, 4, 4, 0.1);
  padding: 20px 30px;
  margin-bottom: 3em;
  text-align: center;
  list-style-type: none;
}
.jungto-blog .errors .message {
  font-size: 1rem;
}
.jungto-blog .wpulike {
  width: 100%;
  text-align: right;
  padding-right: 10px;
}

.jungto-blog-item.jungto-blog-editor {
  padding: unset;
  display: none;
}

/* editor */
.jungto-blog-editor {
  width: 100%;
  margin: 0px 0px 10px 0px;
  padding: 10px;
  border-radius: 3px;
  background-color: transparent;
  /*
  // disabled in code
  #blog-image-container {
    padding-left: 3ch;
  }
  */
}
.jungto-blog-editor #jungto-image-share {
  width: 100%;
  margin-bottom: 3em;
  margin-top: 1em;
}
.jungto-blog-editor #jungto-image-share > div {
  text-align: center;
}
.jungto-blog-editor #jungto-image-share #upload-instruction {
  font-size: 1.3em;
  font-weight: bold;
}
.jungto-blog-editor #jungto-image-share #upload-instruction span {
  margin-right: 0.8em;
}
.jungto-blog-editor #jungto-image-share #sharable-image-progress {
  display: none;
  height: 300px;
  width: 300px;
}
.jungto-blog-editor #jungto-image-share #sharable-image-progress .progress-text {
  position: absolute;
  bottom: 1ch;
  width: 100%;
  font-size: 0.75em;
  font-weight: 100;
}
.jungto-blog-editor #jungto-image-share .jungto-blog-action {
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
}
.jungto-blog-editor #jungto-image-share .jungto-blog-action .btn {
  display: inline-block;
  position: relative;
  width: 7ch;
}
.jungto-blog-editor #please-login h2 {
  text-align: center;
}
.jungto-blog-editor #please-login a {
  color: #007bff;
  text-decoration: underline;
}

/* items list */
.jungto-blog-list {
  list-style-type: none !important;
  padding: 0px !important;
  margin: 0px !important;
}
.jungto-blog-list li {
  margin: 0px 0px 10px 0px;
  padding: 0.8rem;
  border-radius: 3px;
  background-color: transparent;
  /*
  .jungto-blog-content {
    &::before {
      content: '"';
    }

    &::after {
      content: '"';
    }
  }
  */
}

/* media library overrides */
.jungto-blog-media .media-frame-router {
  display: none;
}
.jungto-blog-media .attachments-browser .media-toolbar,
.jungto-blog-media .attachments-browser .media-views-heading,
.jungto-blog-media .attachments-browser .media-sidebar {
  display: none;
}
.jungto-blog-media .attachments-browser .attachments-wrapper,
.jungto-blog-media .attachments-browser .uploader-inline {
  top: 0px;
  right: 0px;
}
.jungto-blog-media .attachments-browser .attachments-wrapper .upload-ui,
.jungto-blog-media .attachments-browser .attachments-wrapper .post-upload-ui,
.jungto-blog-media .attachments-browser .uploader-inline .upload-ui,
.jungto-blog-media .attachments-browser .uploader-inline .post-upload-ui {
  display: none;
}

/* override easy lightbox container */
.page .litebox-overlay {
  z-index: 1000000;
}
.page .litebox-overlay .litebox-container {
  top: 50%;
  right: unset;
  left: 50%;
  bottom: unset;
  transform: translate(-50%, -50%);
}
.page .litebox-overlay .litebox-container img, .page .litebox-overlay .litebox-container iframe {
  border-radius: 5px;
  height: 90vh;
  width: auto;
  object-fit: contain;
}

.spinner {
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  animation: spinner 0.75s linear infinite;
}
.spinner span {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.spinner .spinner-inner-1 {
  background: linear-gradient(to right, rgba(250, 128, 114, 0) 0%, rgba(250, 128, 114, 0) 50%, salmon 51%);
}
.spinner .spinner-inner-2 {
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, white 100%);
}
.spinner .spinner-inner-3 {
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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