#cookie_bottom_bar {
    position: fixed;
    bottom: 0;
    z-index: 2;
    padding: 24px 0;
    font-size: 15px;
    width: 100%;
    background: #ffffff;
    text-align: center;
    line-height: 24px;

	 -webkit-box-shadow: 0 -4px 13px rgba(0,0,0,0.09);
	 -moz-box-shadow: 0 -4px 13px rgba(0,0,0,0.09);
	 box-shadow: 0 -4px 13px rgba(0,0,0,0.09);

    -webkit-transform: 	translate(0, 100%);
    -moz-transform: 		translate(0, 100%);
    transform: 				translate(0, 100%);

    -webkit-transition:  -webkit-transform 0.25s ease-out;
    -moz-transition: 			-moz-transform 0.25s ease-out;
    transition: 					  transform 0.25s ease-out; }
#cookie_bottom_bar.active {
    -webkit-transform: 	translate(0, 0);
    -moz-transform: 		translate(0, 0);
    transform: 				translate(0, 0); }

#cookie_bottom_bar p {
    display: inline-block;
    vertical-align: top;
    margin-right: 8px;
    margin-bottom: 0; }
#cookie_bottom_bar a {
    color: #212121;
    text-decoration: underline; }
#cookie_bottom_bar a:hover {
    color: #212121;
    text-decoration: underline; }

@media(max-width: 1199px){
    #cookie_bottom_bar {
        padding: 16px 72px 16px 0;
    }
}
@media(max-width: 767px){
    #cookie_bottom_bar {
        padding: 12px 48px 12px 32px;
        font-size: 12px;
        line-height: 16px;
    }
}
