:root {
    --primary-color: #006D38;
    --secondary-color: #333;
    --tertiary-color: #f7f3f3;
    --fourth-color: #fff;
}

.lgpd-consent-popup {
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 99;
    background-color: var(--tertiary-color);
    width: 100%;
    height: 90px;
    box-shadow: 0 2px 4px -1px rgb(0 0 0 / 20%), 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%);
    padding-left: 367px;
    padding-right: 367px;
    left: 0;
    bottom: 0;
    font-family: sans-serif;
    color: var(--secondary-color);
    font-size: 16px;
    animation: 1.8s ease lgpd-consent-popup-animation;
    flex-direction: row;
    justify-content: center;
    box-sizing: border-box;
    justify-content: space-between;
}

.lgpd-consent-popup a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.lgpd-consent-popup p {
    width: 65%;
    font-weight: 400;
    z-index: 100;
    font-family: sans-serif !important;
    font-size: 16px;
    text-align: left;
    line-height: 1.5;    
}

.lgpd-consent-popup-button {
    margin-left: 5px;
    color: var(--fourth-color);
    background-color: var(--primary-color);
    cursor: pointer;
    border: none;
    border-radius: 50px;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    letter-spacing: .1em;
    padding: 14px 0 14px 0;
    width: 100%;
    max-width: 300px;
    text-transform: uppercase;
    font-family: sans-serif !important;
}

.lgpd-consent-popup-button:hover {
    background: var(--tertiary-colorr);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold !important;
    transition: 0.4s;
}

/*Celular*/
@media (max-width: 767px) {
    .lgpd-consent-popup {
        display: block;
        width: 100%;
        height: 180px;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 12px;
        flex-wrap: wrap;
    }

    .lgpd-consent-popup p {
        width: 90%;
        font-weight: 400;
        line-height: 1.5;
        padding: 16px 0 11px 0;
        font-size: 12px;
    }

    .lgpd-consent-popup-button {
        font-size: 10px;
        width: 55% !important;
        margin-left: 22%;
        margin-top: 15px;
    }

}

/*Tablet*/
@media (min-width: 768px) and (max-width: 1199px) {
    .lgpd-consent-popup {
        width: 100%;
        height: 200px;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 15px;
        flex-wrap: wrap;
    }

    .lgpd-consent-popup p {
        width: 100%;
        font-weight: 400;
        padding-left: 5px;
        margin-top: 30px;
    }

    .lgpd-consent-popup-button {
        font-size: 14px;
        padding: 14px 0 14px 0;
        margin: -20px 20px 10px 216px;
    }
}

/*Notebook*/
@media (min-width: 1200px) and (max-width: 1700px) {
    .lgpd-consent-popup {
        padding-left: 173px;
        padding-right: 173px;
    }
}

@keyframes lgpd-consent-popup-animation {
    from {
        bottom: -100%;
    }

    to {
        bottom: 0;
    }
}