 /* Lgpd */

 .lgpd-fixed {
    height: 80px;
    width: 100%;
    background: rgb(64, 64, 65, 0.8);
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 9999999999;
    display: none;
   
  }
  
  .lgpd-fixed__content {
        padding: 15px 30px;
        font-size: 17px;
        color: white;
        display: flex;
        align-items: center;
  }
  
  @media (max-width: 640px) {
  
  .lgpd-fixed {
    height: 120px;
  }
  
    .lgpd-fixed__content {
  font-size: 12px !important;
  }
  
  .lgpd-fixed .btn-lgpd {
    font-size: 10px !important;
  }
  
  }
  
  
  .lgpd-fixed span {
            color: white;
            font-weight: 600;
  
        }
    
  .lgpd-fixed  a {
            color: #5b96f5;
            font-weight: 600;
            text-decoration: underline;
      background-color:transparent;         
        }
    
  .lgpd-fixed .btn-lgpd {
            padding: 10px;
            text-transform: uppercase;
            margin-left: 10px; 
            background: #2d1077;;
            color: white;
            text-decoration: none;
            font-size: 13px;
            text-align: center;
            cursor: pointer;
      
        }
    
  .lgpd-fixed-block {
    display: block;
  }
  
  .lgpd-fixed-hidden {
    display: none;
  }