/***************** LGPD ***************/

#lgpd-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .93);
    height: 0;
    overflow: hidden;
    padding: 0;
    z-index: -9999;
}

#lgpd-modal.lgpd-modal--show {
    height: auto;
    padding: 20px 0;
    z-index: 9999;
}

.lgpd-modal__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.lgpd-modal__desc {
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    margin: 0;
    padding: 0 40px 0 0;
    text-align: justify;
}

.lgpd-modal__link {
    color: #fff!important;
    text-decoration:underline;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.lgpd-modal__link:hover {
    color: #c38c00 !important;
    text-decoration: underline!important;
}

.lgpd-modal__btn {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    line-height: 1;
    padding: 7px 20px;
    border-radius: var(--br-small);
    letter-spacing: .5px;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.lgpd-modal__btn:after, .lgpd-modal__btn:before {
    content: "";
    position: absolute;
    right: 18px;
    width: 15px;
    height: 3px;
    background: #fff;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate( 45deg);
    -ms-transform: translateY(-50%) rotate( 45deg);
    transform: translateY(-50%) rotate( 45deg);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    display: none;
}

.lgpd-modal__btn:after {
    -webkit-transform: translateY(-50%) rotate( -45deg);
        -ms-transform: translateY(-50%) rotate( -45deg);
            transform: translateY(-50%) rotate( -45deg);
}

@media (min-width:1024px) {
    .lgpd-modal__btn:hover {
        background: #fff;
        color: #333;
    }
    .lgpd-modal__btn:hover:before, .lgpd-modal__btn:hover:after {
        background: #333;
    }
}

@media (max-width:1023px) {
    .lgpd-modal__flex {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .lgpd-modal__desc {
        padding: 0 0 20px 0;
        text-align: center;
    }
}