@charset "utf-8";

/***********************************************/
/***************** UNIVERSEL *******************/
/***********************************************/

.bloc_cookie {
	display: inline-block;
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    height: 80px;
    background-color: #fff;
	width:-webkit-fill-available;
	width:-moz-available;
	width: fill-available;
    border-top: 1px solid #7f9f7f;
    padding: 20px;
    z-index: 99;

}

.hide {
	display:none;
}

/***********************************************/
/**************** ORDINATEUR *******************/
/***********************************************/

@media screen and (min-width: 1024px) {


}


/***********************************************/
/****************** TABLETTE *******************/
/***********************************************/

@media screen and (min-width: 100px) and (max-width: 1023px) and (orientation: landscape) {



}

/***********************************************/
/**************** SMARTPHONE *******************/
/***********************************************/

@media screen and (min-width: 100px) and (max-width: 1023px) and (orientation: portrait) {

.bloc_cookie {
    height: auto;
	padding: 30px;
	font-size:150%;
}

.bloc_cookie button {
	font-size:120%;
	margin:20px 0px;
}

.hide {
	display:none;
}

}