.btnCoockies {
    width: 250px;
    height: 20px;
    background: #ffcc00;
    text-align: center;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    border: 0px solid #000000;
    font-weight: 700;
    color: black;
    cursor: pointer;
    margin-bottom: 10px;
}

.contenedorCoockies {
    width: 100%;
    height: 75px;
    position: fixed;
    display: block;
    background: #303030;
    font-size: 12px;
    padding: 3px;
    color: white;
    border-top: 1px #ffffff solid;
    z-index: 9999;
}

.contenedorCoockies div {
    float: left;
    padding: 2px;
}

@media (max-width: 480px){
    .contenedorCoockies {
        height: 150px;
        align-items: center;
        justify-content: center;
    }
    .btnCoockies {
        height: 25px;
        margin-bottom: 25px;
        font-size: 13px;
    }
}