#limited-access-modal.modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s;
  }
  
  #limited-access-modal .modal-content {
    margin-top:10%;
    margin-left:25%;
    position: relative;
    background-color: #fefefe;
    width: 100%;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s;
    width: 400px;
    max-width: 70%;
    font-size: 11px;
    min-height: 140px;
    border-radius: 5px;
  }
  
  #limited-access-modal .close {
    padding: 8px 4px;
    color: #BEBEBE;
    float: right;
    font-size: 14px;
    font-weight: bold;
  }

   #limited-access-modal .ok {
    padding: 8px 4px;
    float: right;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-left: 1px solid #D3D3D3;
    margin-top: 2px;
    padding-left: 12px;
  }
  
  #limited-access-modal .close:hover,
  #limited-access-modal .close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
  }
  
  #limited-access-modal .modal-header {
    padding: 2px 16px;
    max-height: 35px;
    color: #696969;
    border-bottom: solid 1px #eeeeee;
  }
  
  #limited-access-modal .modal-body {padding: 2px 16px;}
  
  #limited-access-modal .modal-footer {
    padding-right: 12px;
    background-color: #F5F5F5;
    color: #489afe;
    min-height: 40px;
    border-radius: 5px;
  }