
.modal {
    position: fixed;
    z-index: 150;
    left: calc(100vw / 2 - 300px);
    top: 0;
    width: 600px;
    height: 500px;
    overflow: auto;
    background-color: transparent;
    padding: 10px;
    opacity: 0;
    display: none;
    transition: opacity 1s linear;
    overflow: hidden;
  }
  
  .modal.hidden {
    opacity: 0;
    display: none;
  }
  
  .modal.show {
    opacity: 1;
    display: block;
  }
  
  .modal-content {
    position: relative;
    padding: 20px 30px;
    min-width: 600px;
    width: 100%;
    margin: 12vh auto;
    max-height: 90vh;
    max-width: 90vw;
    background: #151f28;
    color: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    border-radius: 1px;
    box-sizing: border-box;
    text-align: left;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 12px;
  }
  
  .close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.5;
    pointer-events: all;
  }
  
  .close:hover,
  .close:focus {
    color: #aaa;
    text-decoration: none;
    cursor: pointer;
  }
  
  #aboutDemoBtn {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: #20549c;
    color: #f3f4f4;
    border: none;
    font-size: 15px;
    font-family: sofia-pro, Helvetica, sans-serif;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  #aboutDemoBtn:hover {
    background-color: #0d6dfdb1;
  }
  
  .modal-content p {
    font-size: larger;
    line-height: 150%;
  }
  
  a.info {
    color: #fff;
  }
  
  .ciq-logo {
      margin-left: -10px;
  }
  .ciq-logo img {
      width: 150px;
  }