:root {
    --background-color: #ffffff;
    --title-color: #2d2d2d;
    --text-color: #4d4d4d;
    --box-border-color: rgba(0, 0, 0, .1);
    --btn-background: #013D50;
    --btn-color: #FFFFFF;
    --font-family: 'Arial', serif;
}

#lgpd {
    display: none;
}

.lgpd-banner {
    background: var(--background-color);
    width: 95%;
    padding: 30px;
    box-sizing: border-box;
    border: 1px var(--box-border-color) solid;
    border-radius: 6px;
    max-width: 960px;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-family) !important;
}

.lgpd-banner .lgpd-title {
    font-size: 22px;
    color: var(--title-color);
    font-weight: 600;
    margin-bottom: 12px;
    font-family: var(--font-family) !important;
}

.lgpd-banner .lgpd-description {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 300;
    margin-bottom: 20px;
}

.lgpd-banner .lgpd-btn {
    background: var(--btn-background);
    color: var(--btn-color);
    text-align: center;
    padding: 10px 20px;
    margin-right: 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer !important;
}

.lgpd-banner .lgpd-btn:nth-child(2) {
    background: none;
    color: var(--btn-background);
    text-decoration: underline;
}

.lgpd-banner a {
    text-decoration: underline;
    color: var(--btn-background);
    cursor: pointer;
}

.lgpd-modal {
    display: none;
    width: 100%;
    height: 100%;
    max-width: 720px;
    max-height: 600px;
    background: #FFFFFF;
    border: 1px rgba(0, 0, 0, .1) solid;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    z-index: 99;
    box-sizing: border-box;
	-webkit-box-shadow: 0px 0px 62px 0px rgba(0,0,0,0.519);
-moz-box-shadow: 0px 0px 62px 0px rgba(0,0,0,0.519);
box-shadow: 0px 0px 62px 0px rgba(0,0,0,0.519);
}

.lgpd-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.lgpd-modal .closeModal {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 104;
    padding: 5px;
    margin: 10px;
    cursor: pointer;
    -webkit-transition: opacity 500ms;
    -moz-transition: opacity 500ms;
    -ms-transition: opacity 500ms;
    -o-transition: opacity 500ms;
    transition: opacity 500ms;
    opacity: 1 !important;
}


.lgpd-modal .closeModal:hover {
    opacity: .5;
}
