.left-content {
  border: 1px solid #c0cde0;
  border-top: none !important;
  width: 320px;
  height: 100vh;
  padding-top: 15px;
  flex-shrink: 0;
  overflow-y: auto;
}

.right-content {
  flex-grow: 1;
  overflow-y: auto;
  border-bottom: 0.1px solid #e8ebef;
}

.right-content a {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.styleArticle {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.5em;
}

.guide-view {
  display: flex;
  background-color: white;
  align-items: stretch;
  height: 100vh;
}

.fa-file-text {
  color: #f29704;
}

.jstree-wholerow-ul {
  width: 100%;
}

.jstree-node {
  position: relative !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jstree-node .jstree-anchor {
  position: absolute !important;
  width: 94%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jstree-node > span {
  display: none;
  position: absolute;
  top: -20px;
}

.jstree-node:hover > span {
  display: inline-block;
  color: red;
}

.article-body {
  padding: 10px 50px;
  margin-top: 10px;
}

.article-content {
  margin-top: 45px;
}

.arrticle-title {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: #fafafa;
  box-shadow: 0 0 0 0.75pt #d1d1d1, 0 0 3pt 0.75pt #ccc;
}

.arrticle-title .view-article {
  padding-bottom: 15px;
  padding-left: 50px;
  display: inline-table;
}

::-webkit-scrollbar {
  width: 5px;
  background: lightgray;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px #cccceb;
  border-radius: 15px;
}

::-webkit-scrollbar-thumb {
  border-radius: 15px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
  background: #cccceb;
}

.view-content #view-header {
  display: flex;
  height: 60px;
  line-height: 40px;
  padding-left: 20px;
}

.view-content #view-header h4 {
  display: inline-block;
}

.view-fullscreen {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1111111;
  display: none;
  background: #fff;
  overflow-y: auto;
}

.fix-A4 {
  max-width: 210mm;
  margin: auto;
  padding: 96px;
  box-shadow: 0 0 0 0.75pt #d1d1d1, 0 0 3pt 0.75pt #ccc;
}

.klw-new-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.fullscreen-content {
  margin-top: 20px;
}

.fullscreen-content img {
  max-width: 100%;
}

.fullscreen-content table {
  max-width: 210mm;
}

.fullscreen-title {
  margin-bottom: 10px;
}

.close-button {
  position: fixed;
  z-index: 111111111;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #f8f4f4;
  border-radius: 50%;
}

.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
    display: none !important;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

.full-screen {
  padding: 20px 74.500px;
}

label {
  display: inline-block;
  width: 15px;
}

.article-body .pull-right.action {
  display: flex;
  justify-content: space-between;
  width: 100px;
  padding-top: 10px;
}

.article-body .pull-right.action .open-fullscreen.view, .article-body .pull-right.action .open-fullscreen {
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.view-fullscreen .pull-right {
  margin-top: 20px;
  margin-right: 20px;
}

.view-fullscreen .pull-right img.close-fullscreen {
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.view-fullscreen .pull-right img#print {
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.view-fullscreen .fullscreen-btn {
  cursor: pointer;
  display: flex;
  position: fixed;
  z-index: 111111111;
  top: 20px;
  right: 20px;
  width: 100px;
  justify-content: space-around;
}

.view-fullscreen .fullscreen-btn .close-fullscreen, .view-fullscreen .fullscreen-btn #print {
  width: 30px;
  height: 30px;
}

/* for mobile*/
.is-phone h3 {
  margin-top: 3px;
  margin-bottom: 5px;
}

.is-phone .view-article {
  padding-left: 15px;
  padding-bottom: 0;
  padding-top: 4px;
}

.is-phone .left-content {
  background-color: ghostwhite;
  width: 100%;
}

.is-phone .left-content .fa.fa-times {
  padding-bottom: 5px;
  padding-right: 10px;
}

.is-phone .right-content .article .article-body {
  padding: 1px 10px 0 10px;
  margin-top: 0;
}

.is-phone .right-content .article .article-body .pull-right.action {
  padding-top: 15px;
  width: 20px;
}

.is-phone .right-content .article .article-body .pull-right.action .open-fullscreen {
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.is-phone .right-content .article .view-fullscreen #print-region.full-screen {
  padding: 10px 10px;
}

.is-phone .right-content .article .view-fullscreen .close-fullscreen {
  margin-top: -5px;
  width: 20px;
  height: 20px;
}

.is-phone .right-content .article .arrticle-title div {
  float: left;
  width: 5%;
}

.is-phone .right-content .article .arrticle-title div i {
  padding: 7px;
}

.is-phone .right-content .article .arrticle-title h3 {
  width: 95%;
  padding-left: 20px;
}

.article-content .left,
#print-region .left {
  text-align: left;
}

.article-content .right,
#print-region .right {
  text-align: right;
}

.article-content .center,
#print-region .center {
  text-align: center;
}

.article-content .bold,
#print-region .bold {
  font-weight: bold;
}

.article-content .italic,
#print-region .italic {
  font-style: italic;
}
