
/* 1. loading*/
#loading {
    position: fixed;
    display: none;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('loading.gif') 50% 50% no-repeat rgba(249,249,249,0.5);
  }
  
  /* 2. datalink */
  [dataLink] {
    cursor: pointer;
  }
  
  [dataLinkNewTab] {
    cursor: pointer;
  }
  
  /* 3. dailog */
  .codus-modal-background {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    padding-top: 50px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .codus-modal-content {
    border-radius: 8px;
    background-color: #fefefe;
    margin: auto;
    padding: 10px 20px 20px 20px;
    border: 1px solid #888;
    width: 80%;
  }
  
  /* The Close Button */
  .codus-modal-close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: relative;
    right: 20px;
  }
  
  .codus-modal-close:hover,
  .codus-modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }