.cookieConsentContainer {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1002;
    padding: 30px 30px 30px 30px;
    width: 22%;
    min-height: 20px;
    box-sizing: border-box;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 3px 15px 0px #0000001f;
}

.cookieConsentContainer .cookieTitle p {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 2%;
    color: #363636;
    font-size: 20px;
    line-height: 20px;
}

.cookieConsentContainer .cookieTitle p i {
    margin-right: 2%;
    font-size: 25px;
}

.cookieConsentContainer .cookieDesc p {
    display: block;
    margin: 0;
    margin-top: 1%;
    padding: 0;
    color: #363636;
    font-size: 13px;
    line-height: 20px;
}

.cookieConsentContainer .cookieDesc a {
    color: #fff;
    text-decoration: underline;
}

.cookieConsentContainer .cookieDesc span {
    text-decoration: underline;
    color: blue;
    cursor: pointer;
}

.cookieConsentContainer .cookieButton {
    text-align: end;
}

.cookieConsentContainer .cookieButton a {
    display: inline-block;
    margin-top: 14px;
    padding: 4% 10%;
    box-sizing: border-box;
    background: var(--cor-topbar);
    border: 2px solid var(--cor-topbar);
    border-radius: 5px;
    box-shadow: 5px 3px 15px 0px #0000001f;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    transition: .25s all linear;
}

.cookieConsentContainer .cookieButton a:hover {
    background: transparent;
    color: #363636;
    transform: translateY(-3px);
    cursor: pointer;
}

#abrir-politicas {
    color: #363636;

    &:hover {
        color: black;
        text-decoration: underline;
        cursor: pointer;
    }
}

.popup-politicas {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.20);

    &>.container-politicas {
        position: relative;
        padding: 30px;
        width: 35%;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 5px 3px 15px 0px #0000001f;

        &>.politicas-title {
            font-size: 25px;
            text-align: center;
        }

        &>.politicas-text {
            border-bottom: 5px solid var(--cor-topbar);
            font-size: 15px;
            letter-spacing: .5px;
            text-align: justify;
        }

        &>button {
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: transparent;
            border: none;
            font-size: 32px;
            font-weight: 700;
        }
    }
}

@media (max-width:1440px) {
    .cookieConsentContainer {
        width: 35% !important;
    }

    .container-politicas {
        width: 60% !important;
    }
}

@media (max-width:980px) {
    .cookieConsentContainer {
        bottom: 0 !important;
        left: 0 !important;
        margin: 5%;
        width: 90% !important;
    }

    .container-politicas {
        width: 90% !important;

        &>.politicas-title {
            font-size: 17px !important;

            &>p {
                margin-bottom: 3% !important;
            }
        }

        &>.politicas-text {
            font-size: 13px !important;
        }
    }
}