@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Inter:wght@200&family=Montserrat&display=swap');
.lgpd-consent-wrapper{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 900;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    
}


.lgpd-consent-popup {
    font-family: 'Montserrat';
    font-weight: 600;
    display: flex;
    z-index: 2000;
    text-align: center;
    padding: 50px;
    max-width: 600px;    
    background-color: #ffffff;
    padding: 10px;
    width: 80%;
    height: 60%;
    top: 5%;   
    color: #000;
    font-size: 0.9em; 
    animation: 1s ease lgpd-consent-popup-animation;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    box-sizing: border-box;
    line-height: 130%;
    overflow-y: scroll;
}

.lgpd-consent-info {
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.lgpd-consent-popup-button {
    background: #34b4eb;
    box-shadow: 0 4px #1aa3df;
    border-radius: 5px;
    color: #fff;
    float: center;
    font-weight: 900    ;
    margin: 0 auto 30px;
    padding: 20px 60px;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
    position: relative;
}

h1 {
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    
    font-weight: 900;
}
p{
    
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}
a{
    color: rgb(0, 62, 179);
}

@keyframes lgpd-consent-popup-animation {
    from {  
        top: -100%;
    }
    to {
       top: 5%;
    }
}
@media screen and (max-width: 760px) {
    .lgpd-consent-popup {
        font-size: 0.8em;
    }
}
@media screen and (max-width: 520px) {
    .lgpd-consent-popup {
        height: 75%;
    }
}
@media screen and (max-width: 460px) {
    .lgpd-consent-popup {
        
        font-size: 0.7em;
    }
}
@media screen and (max-width: 380px) {
    .lgpd-consent-popup {   
        height: 75%;
    }
}