/*!
 * Bootstrap Markdown Editor v2.0.2 (https://github.com/inacho/bootstrap-markdown-editor)
 * Copyright 2016 Ignacio de Tomás <nacho@inacho.es>
 * Licensed under MIT (https://github.com/inacho/bootstrap-markdown-editor/blob/master/LICENSE)
 */

.md-container {
  position: relative;
}
.md-loading {
  display: none;
  filter: alpha(opacity=80);
  opacity: .8;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 9999;
}
.md-icon-container {
  display: table;
  width: 100%;
  height: 100%;
}
.md-icon {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
body.md-body-fullscreen,
html.md-body-fullscreen {
  overflow: hidden;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
.md-toolbar {
  padding: 10px;
  background: #f7f7f7;
  border: 1px solid #d8d8d8;
  border-bottom: none;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.md-toolbar button {
  font-weight: bold;
}
.md-toolbar button:focus,
.md-toolbar button:active {
  outline: none !important;
}
.md-btn-file {
  position: relative;
  overflow: hidden;
}
.md-btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}
.md-textarea-hidden {
  position: absolute;
  height: 0;
  width: 0;
  left: -9999px;
  opacity: 0;
}
.md-editor,
.md-preview {
  border: 1px solid #d8d8d8;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.md-preview {
  overflow-y: auto;
  padding: 10px;
}
.md-fullscreen {
  position: absolute;
  margin: 0 !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  background: #fff;
  z-index: 9999;
}
.md-fullscreen .md-toolbar {
  border: none;
}
.md-fullscreen .md-editor,
.md-fullscreen .md-preview {
  border: none;
  width: 100% !important;
}
.md-drag-active {
    border-radius: 6px;
    border: 2px solid black;
}
