.lgpd-wrapper {
    width: 100%;
    margin: 0px auto;
    padding-left: 100px;
    padding-right: 100px;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    align-items: center;
    backdrop-filter: blur(20px);
    --webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #000;
    z-index: 100;
}

.lgpd-wrapper p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 20px;
    text-align: left;
}

.lgpd-wrapper a{
    color: #000;
    font-weight: 600;
    text-decoration: underline;
    transition: all ease-in-out .4s;
    -webkit-transition: all ease-in-out .4s;
    -moz-transition: all ease-in-out .4s;
    -ms-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
}

.lgpd-wrapper a:hover,
.lgpd-wrapper a:focus {
    color: rgb(50, 50, 50);
    text-decoration: underline;
}

.btn-config .btn {
    color: #fff;
    text-align: justify;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    text-transform: uppercase;
    background-color: #000;
    padding: 12px 32px;
    border: 2px solid #000;
    border-radius: 0;
    transition: all ease-in-out .4s;
    -webkit-transition: all ease-in-out .4s;
    -moz-transition: all ease-in-out .4s;
    -ms-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.btn-config .btn:hover,
.btn-config .btn:focus {
    color: #000;
    background-color: #fff;
}

@media only screen and (max-width: 992px) {

    .lgpd-wrapper{
        width: 100%;
        text-align: center;
        margin: 0 auto;
        box-sizing: border-box;
        position: fixed;
        bottom: 0;
        left: 0;
        padding: 6%;
        flex-flow: column;
    }
    .lgpd-wrapper p {
        margin-bottom: 20px;
        padding-right: 0%;
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        text-align: center;
    }
    .btn-config .btn {
        text-align: center;
        font-size: .8rem;
    }
}