.privacy-policy-popup {
    width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      position:fixed;
      z-index: 999;
      bottom: 0;
      left: 0;
  }
  
  .popup__inner {
    background: #65686B;
    background-color: #65686BF7;
    max-width: calc(100% - 1rem);
    box-sizing: border-box;
    padding:4rem;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }
  
  .popup__inner .popup-copy,
  .popup__inner .popup-heading {
      color: #fff;
  }
  
  @media (min-width: 480px) {
    .privacy-policy-popup {
      align-items: center;
      flex-direction: column;
    }
  
    .popup__inner {
      border-bottom: 0px;
      max-width: 1000px;
      padding: 2rem 4rem;
      bottom: 0;
      flex-direction: row;
      width: 800px;
      left: calc(50% - 400px);
    }
  }
  
  .popup-heading {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .privacy-policy-btn {
    padding: .75rem;
    margin-left: 2rem;
    min-width: 75px;
  }
  
  .hide {
    display: none;
  }

  .ccpa-container .body-md{
    text-align: left;
    line-height: 1.5;
    padding-bottom: 15px;
    font-size: 16px;
  }

  .heading-xl {
    line-height: 1.5;
    font-size: 36px;
  }

  .ccpa-container *{
    box-sizing: border-box;
  }
  
  .ccpa-container h3 {
    font-size: 20px;
    text-align: left;
    font-weight: bold;
  }
    
  .ccpa-container p {
    line-height: 1.5;
    text-align: left;
    font-size: 16px;
  }
  
  .ccpa-container ul {
    padding-left: 20px;
    list-style-type: disc;
    font-weight:500;
  }
  
  .ccpa-container ul li {
    float: none;
    line-height: 1.5;
    margin-bottom: 10px;
    list-style-type: disc;
  }
  .ccpa-container .table{
    border-collapse: collapse;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
 
  .table th,
  .table td {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
  }

  .table th {
    font-weight: bold;
  }
  .ccpa-container strong {
    font-weight: bold;
  }
  
  .unstyled li{
    list-style-type: none;
  }