@media only screen and (max-width: 984px) {
    .termCookie{
        display: block;
        font-size: 14px;
        left: 5%;
        width: 90%;
    }
    .btnCookie{
        width:90%;
        margin: 2%;
        font-size: 14px;
    }
    .textCookie{
        margin-left: 20px;
        margin-right: 20px;
    }
}


@media only screen and (min-width: 984px) {
    .termCookie{
        display: inline-flex;
        left: 5%;
        width: 90%;
    }
    .btnCookie{
        width: 100px;
        font-size: 14px;

    }
    .textCookie{
        padding-right: 25px;
    }
}


@media only screen and (min-width: 1570px){
    .termCookie{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media only screen and (min-width: 1921px){
    .termCookie{
        width: 60%;
        left: 20%;
    }
}


.termCookie{
    position: fixed;
    text-align: center;
    font-family: Lato, Arial, Helvetica, sans-serif;
    background-color: rgba(64, 64, 64, .9);
    box-shadow: 0 8px 6px 0 rgba(0,0,0,.41);
    color: #fff;
    height: auto;
    bottom: -100%;
    margin-bottom: 1%;
    padding: 2%;
    border-radius: 3px;
    overflow: hidden;
    transition: 300ms;
    z-index: 100;
}


.termCookie.active{
    bottom: 0%;
}


.btnCookie{
    font-family: Lato, Arial, Helvetica, sans-serif;
    text-align: center;
    background-color: #A52A2A;
    height: 40px;
    color: #fff;
    border: #000;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.41);
}