/**
 * Desenvolvido por SnowPath.
 */

.cookieConsentContainer {
    z-index: 999;
    width: 500px;
    min-height: 20px;
    box-sizing: border-box;
    padding: 30px 30px 30px 30px;
    border: 1px solid #7bbc54;
    background: #353334;
    overflow: hidden;
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: none
}

.cookieConsentContainer .cookieTitle a {
    font-family: OpenSans, arial, sans-serif;
    color: #7bbc54;
    font-size: 22px;
    line-height: 20px;
    display: block
}

.cookieConsentContainer .cookieDesc p {
    margin: 0;
    padding: 0;
    font-family: OpenSans, arial, sans-serif;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    display: block;
    margin-top: 10px
}

.cookieConsentContainer .cookieDesc a {
    font-family: OpenSans, arial, sans-serif;
    color: #fff;
    text-decoration: underline
}

.cookieConsentContainer .cookieButton a {
    display: inline-block;
    font-family: OpenSans, arial, sans-serif;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-top: 14px;
    background: #7bbc54;
    box-sizing: border-box;
    padding: 15px 24px;
    text-align: center;
    transition: background .3s
}

.cookieConsentContainer .cookieButton a:hover {
    cursor: pointer;
    background: #7bbc54;
}

@media (max-width: 767px) {
    .cookieConsentContainer {
        bottom: 0!important;
        left: 0!important;
        width: 100%!important
    }
}