﻿/* Styling and coloring */
.accordion {
  width: 100%;
  height: auto;
}
.report-editor {
  position: relative;
  width: 100%;
  -moz-transition: all .4s linear;
  -o-transition: all .4s linear;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  margin: auto;
  overflow: hidden;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #cedbb0;
  padding: 10px;
}
.report-editor .ReportError {
  display: block;
  background: #fe3838;
  border-radius: 5px;
  text-align: center;
  padding: 10px 0px;
  width: 100%;
  margin: auto;
}
.report-editor .report-name {
  display: block;
  margin: 0;
  padding: 10px 0px 10px 0px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #808080;
  -webkit-box-shadow: 0px 9px 5px -10px #000000;
  box-shadow: 0px 9px 5px -10px #000000;
  color: #000000;
  text-align: center;
  font-size: 25px;
  line-height: 30px;
}
.report-editor .report-name:focus {
  outline: none;
}
.report-editor table {
  width: 100%;
}
.report-editor table tbody {
  vertical-align: top;
}
.report-editor #generate-report {
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* FF3.6+ */
  /* IE10+ */
  /* IE6-9 */
  /* Old browsers */
  /* Opera 11.10+ */
  /* W3C */

  display: block;
  padding: 10px 0px;
  width: 100%;
  border: 1px solid #3aa3d1;
  border-radius: 3px;
  background-color: #00a2f5;
  color: #fff;
  text-align: center;
  -webkit-text-shadow: inset 1px 1px rbga(0, 0, 0, 0.3);
  text-shadow: inset 1px 1px rbga(0, 0, 0, 0.3);
  font-weight: 900;
  font-size: 24px;
}
.report-editor #generate-report:hover {
  background-color: #29b7ff;
}
#entry-list li {
  float: left;
  width: 41%;
  margin: 5px 10px 5px 10px;
}
.drag-entry {
  position: relative;
  float: left;
  width: 100%;
  min-height: 100px;
  border: 2px solid #fff;
  list-style: none;
  text-align: center;
}
.drag-entry li {
  width: 90%;
  position: relative;
  display: inline-block;
  margin-top: 5px;
  padding-left: 10px;
  height: auto;
  border: 1px solid #e1e1e1;
  background: #fff;
  font-size: 12px;
  line-height: 30px;
  font-weight: 600;
  text-wrap: none;
  overflow: hidden;
}
.drag-entry li:hover {
  border: 1px solid rgba(99, 182, 219, 0.6);
  cursor: move;
}
.drag-entry li:hover span.delete {
  opacity: 1;
  -moz-transition: opacity .3s linear;
  -o-transition: opacity .3s linear;
  -webkit-transition: opacity .3s linear;
  transition: opacity .3s linear;
}
.drag-entry li span.delete {
  position: absolute;
  top: 4px;
  right: 4px;
  display: block;
  width: 22px;
  height: 22px;
  background: url(/Images/btn-close.png) #ffffff center center;
  text-align: center;
  font-family: sans-serif;
  opacity: 0;
  -moz-transition: opacity .3s linear;
  -o-transition: opacity .3s linear;
  -webkit-transition: opacity .3s linear;
  transition: opacity .3s linear;
}
.drag-entry li span.delete:hover {
  background: url(/Images/btn-close-hover.png) center center #ffffff;
  color: #fff;
  cursor: pointer;
}
.list-hover {
  border: 2px dashed rgba(99, 182, 219, 0.6);
  background-color: rgba(99, 182, 219, 0.2);
  cursor: move;
}
.list-active {
  border: 2px dashed rgba(99, 182, 219, 0.6);
  background-color: rgba(99, 182, 219, 0.2);
}
#entry-list li:hover {
  cursor: copy;
}
#conditions-list li {
  cursor: n-resize;
}
#conditions-list li.list-entry-placeholder {
  min-height: 80px;
  border: 2px dashed rgba(99, 182, 219, 0.6);
  background-color: rgba(99, 182, 219, 0.2);
  cursor: move;
}
#conditions-listspan.delete {
  top: 2px;
}
#selected-entry-list li {
  cursor: n-resize;
}
#selected-entry-list li.list-entry-placeholder {
  border: 2px dashed rgba(99, 182, 219, 0.6);
  background-color: rgba(99, 182, 219, 0.2);
  cursor: move;
}
#drag-container {
  overflow: visible;
}
#drag-container li {
  border: 1px solid rgba(99, 182, 219, 0.6);
  background-color: rgba(99, 182, 219, 0.2);
  color: #00a2f5;
  cursor: move;
}
#show-debug {
  position: fixed;
  right: 0px;
  bottom: 0px;
  padding: 2px;
  border: 1px solid #e1e1e1;
  background: #fff;
  color: #00a2f5;
  font-size: 12px;
}
#show-debug:hover {
  background: #fff;
  cursor: pointer;
}
#result-txt-render-area {
  display: table;
}
#result-txt-render-area > div {
  display: table-row;
}
#result-txt-render-area > div > div {
  display: table-cell;
}
