html {
  position: relative;
  min-height: 100%;
}
body {
  padding-top: 70px;
  margin-bottom: 80px;
}

footer {
  background-color: rgba(0,0,0,0.05);
  position: absolute;
  bottom: 0;
  width: 100%;
}

footer > .container-fluid {
  padding: 7px;
}

#main_page {
  padding: 30px;
  padding-top: 0px;
}

#sidebar {
  width: 150px;
  position: fixed;
  top: 0;
  left: 5px;
  z-index: 999;
  padding-top: 80px;
  color: #fff;
}

#sidebar ul.components {
  padding: 20px 0;
}

#sidebar ul p {
  color: #fff;
  padding: 10px;
}

#sidebar ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
  border-radius: 5px;
}
#sidebar ul li a:hover {
  color: #057BFF;
  background: #F1F1F1;
  border-radius: 5px;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
  color: #fff;
  background: #057BFF;
  /* opacity: 0.6; */
}

.navbar-nav .nav-item.active {
  background-color: #3392ff;
  border-radius: 5px;
}

.box-bordered {
  border: 2px solid #dee2e6;
  border-radius: 15px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.brighter-on-hover:hover {
  filter: brightness(120%);
}

.icon-list li {
  display: flex;
  align-items: flex-start;
}
.icon-list i {
  margin-right: 0.5em;
  flex-shrink: 0;
}
.icon-list span {
  flex-grow: 1;
  line-height: 1.2;
}

.right {
  position: absolute;
  right: 0px;
  width: 300px;
  border: 3px;
  padding: 10px;
}
.banner {
  width: 100%;
  background-color: blue;
}
.messages {
  width: 100%;
  height: 50px ;
  background-color: darkgray;
  list-style-type: none;
  text-align: center;
}

.reply-section {
  margin: 5px;
  list-style-type: none;
  padding-left: 50px;
}
.comment-section {
  margin: 20px;
  list-style-type: none;
  padding-left: 0;
}
.comment {
  padding: 10px;
  width:100%;
  position: relative;
  display: inline-block;
}
.reply {
  width: 90%;
}
.comment-head {
  border:1px solid #999999;
  background: #CBD6F1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.comment-body {
  border:1px solid #999999;
  overflow-wrap: break-word;
  height: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-bottom: 10px;
}
.comment-form {
  width: 100%;
}

blockquote {
  border-left: 5px solid #ccc;
  margin: 10px;
  padding: 5px;
}

pre {
  background: #171717;
  border-radius: 5px;
  color: white;
  padding: 3px;
}

.text-muted {
  font-size: 12px;
  color: #303030;
}
.link-muted {
  font-size: 12px;
  color: #303030;
  text-decoration: underline;
}

/* this is used to reset table-* classes in nested tables */
.table-plain thead tr,
.table-plain thead th,
.table-plain tbody tr,
.table-plain tbody td {
  border-left:none;
  border-right:none;
  border-top:none;
}
.table-plain tbody tr:nth-of-type(odd)  {
  background-color:transparent;
}

.errorlist {
  background-color: #FF8D8D;
  color: #750000;
  border: 1px solid #FF0000;
  border-radius: 10px;
  padding: 10px 30px;
}

.reviewtool-main {
  height: 90vh;
  max-height: 90vh;
  width: 100%;
  /* overflow-y: auto; */
}
.reviewtool-comments {
  height: 50vh;
  max-height: 50vh;
  width: 100%;
  overflow-y: auto;
}
.reviewtool-pdfviewer {
  max-height: 90hv;
}

.rotate40 {
  display: inline-block;
  transform: rotate(40deg);
  /* Safari */
  -webkit-transform: rotate(40deg);
  /* Firefox */
  -moz-transform: rotate(40deg);
  /* IE */
  -ms-transform: rotate(40deg);
  /* Opera */
  -o-transform: rotate(40deg);
}
.rotate-25 {
  display: inline-block;
  transform: rotate(-25deg);
  /* Safari */
  -webkit-transform: rotate(-25deg);
  /* Firefox */
  -moz-transform: rotate(-25deg);
  /* IE */
  -ms-transform: rotate(-25deg);
  /* Opera */
  -o-transform: rotate(-25deg);
}

.no-indent-list {
  list-style-type: none;
  padding-left: 0;
}

.alert-fixed {
  position: fixed;
  bottom: 10px;
  right: 10px;
  opacity: 0.9;
  z-index: 9999;
}
