.lgpd {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 20px 100px;
    background-color: #5180E0;
    color:#FFF;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 4px;
}

.lgpd--left #popup--lgpd {
    border: none;
    background-color: transparent;
    color: #FFF;
    text-decoration: underline;
}

.lgpd--right button {
    border: none;
    border-radius: 4px;
    background-color: #4e4e4e;
    color: #FFF;
    font-size: 18px;
    padding: 10px 33px;
    cursor: pointer;
}

.lgpd-popup {
    display: none;
}

div.cookies-modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(43, 43, 43, 0.95);
    z-index: 999;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

div#cookies-modal div.cookie-modal-body {
    background-color: #fff;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 4px;
    height: 80vh;
    width: 65vw;
    opacity: 100;
    display: flex;
    flex-direction: column;
}

div#cookies-modal div.cookie-modal-body div.cookie-header {
    padding: 20px 24px;
    box-shadow: 0 3px 6px #00000018;
    font-size: 16px;
    font-weight: bold;
}

div#cookies-modal div.cookie-modal-body div.content {
    height: auto;
    flex-grow: 1;
    overflow-y: scroll;
    overflow-x: hidden;
    font-size: 20px;
    padding: 20px 30px;
    border-top: 1px solid #D4D4D4;
    border-bottom: 1px solid #D4D4D4;
}

div#cookies-modal div.cookie-modal-body div.cookie-footer {
    padding: 16px;
    display: flex;
    flex-direction: row-reverse;
    box-shadow: 0 -3px 6px #00000018;
}