
/* 
Cookies Styles */
/* #wrapper {
    padding-top: 95px;
} */

@font-face {
    font-family: 'proximanova';
    src: url('proximanova.woff2') format('woff2'),
         url('proximanova.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'proximanova-semibold';
    src: url('proximanova-semibold.woff2') format('woff2'),
         url('proximanova-semibold.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'proximanova-bold';
    src: url('proximanova-bold.woff2') format('woff2'),
         url('proximanova-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
.content-principal{
    position: relative;
}

.cookie {
    display: block;
    height: 61px;
    width: 100%;
    background-color: #292828;
    background-position: center;
    position: fixed;
    bottom: 0;
    z-index: 2;
}

.cookie .container {
    color: #FFF;
    font-size: 23px;
    text-align: center;
    font-weight: 400;
    margin-right: auto;
    margin-left: auto;
    display: grid;
    grid-template-columns: auto auto;
    height:61px;
    grid-column-gap: 30px;
    justify-content: center;
    align-items:center;
}

.titulor-cookie {
    font-size: 16px;
    font-family: 'proxima-nova';
    padding: 0 30px;
}
.titulor-cookie a{
    color: #FFF;  
    cursor: pointer;
    width: 100%;  
}
.btn-content{
    align-self: center;
    text-align: left;
    padding-left: 20px;
    display: grid;
}

.btn-cookie{   
        padding: 8px 24px;
        border-radius: 36px;
        font-family: 'proxima-nova';
        font-size: 16px !important;
        color: #fff;
        background-color: #0065F3;    
        text-decoration: none;
        border: none;
        outline: none;
        cursor: pointer;
        transition: all .2s ease-in-out; 
}

.btn-cookie:hover{
    background: #0559CF;
    transition: all .2s ease-in-out;
    color: #FFF;
}

@media only screen and (max-width: 1000px) {
    .cookie{
        height: 130px;
    }
    .cookie .container{
        grid-template-columns: auto;
        height: 105px;
    }
    .titulor-cookie {
        font-size: 14px;
        font-family: 'proxima-nova';
        padding: 0 30px;
    }
    .btn-content {
        display: grid;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 0;
        font-size: 14px;
    }
    .btn-cookie{  
        font-size: 14px;
    }
}



