.hidden {
    display: none;
    visibility: hidden;
  }
  
  .consent-div {
    position: absolute;
    bottom: 0px;
    width: 100%;
    background-color: rgba(0, 0, 0, .95);
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
    font-family: Arial;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  .consent-content {
    width: 100%;
    max-width: 1200px;
    margin: 16px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .consent-text {
    width: 65%;
    color: #fff;
    font-size: medium;
    line-height: 1.5;
  }
  
  .consent-text > a {
    color: #fff;
  }
  
  .consent-actions {
    width: 30%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: end;
    justify-content: end;
    margin-left: 5%;
  }
  
  .btn {
    height: 40px;
    width: 110px;
    background-color: #777;
    border: none;
    color: white;
    border-radius: 200px;
    cursor: pointer;
    font-size: medium;
    margin: 8px;
  }
  
  .inline {
    display: inline-block;
    margin-right: 5px;
  }
  
  #accept-btn,
  #save-btn {
    background-color: #009FE3;
  }
  
  #reject-btn,
  #cancel-btn {
    border-color: #fff;
    background: transparent;
    border-style: solid;
    border-width: 1px;
  }