.cookies { position: fixed; left:0; bottom: 0; background-color: #821b1e; width: 100%; z-index: 1001;}
.content-cookie {
	color: #fff;
	width: 100%;
	max-width: 740px;
	display: block;
	margin: 0 auto;
	padding: 10px 20px;
	text-align: center;
        
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -ms-flex-direction: column;
            -webkit-flex-direction: column;
            flex-direction: column;

            justify-content: space-around;
            -webkit-justify-content: space-around;

            -webkit-box-align: center;
            -webkit-align-items: center;
            -moz-box-align: center;
            -ms-flex-align: center;
            align-items: center;
	}
.content-cookie > div {
	vertical-align: middle;
	display: table-cell;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
font-weight: normal;}

.content-cookie  p{

    color:#fff;
}

.content-cookie a{

    color: #fff;
    text-decoration: underline;
}

.content-cookie > div:nth-child(2) {
	width: auto;
}
.boton-cookie {
	font-family: 'Open Sans', sans-serif;
	background-color: transparent;
	padding: 7px 34px;
	box-sizing: border-box;
	display: inline-block;
	text-transform: uppercase;
	color: #FFF;
	float: right;
	margin: 0 10px;
	text-decoration: none;
	font-weight: normal;
        border: 1px solid  #fff;
        transition: all 0.35s ease;
}

.boton-cookie:hover{
    background-color: #fff;
    color: #821b1e;
}

@media all and (min-width: 768px){
    
    .content-cookie{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    
    justify-content: space-around;
    -webkit-justify-content: space-around;
    
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    }
    
}