#cookie-law-info-bar {
    display: block;
	max-height: 944px;
	height: auto;
	max-width: 600px;
    width: 50%;
	position: fixed;
	top: auto;
	right: auto;
	bottom: 15px;
	left: 15px;
	z-index: 9000;
	background-color: #f7f7f7;
	color: #000;
	box-sizing: border-box;
    padding: 8px;
    -webkit-box-shadow: 0 17px 17px rgba(0,0,0,.15),0 27px 55px rgba(0,0,0,.3);
    box-shadow: 0 17px 17px rgba(0,0,0,.15),0 27px 55px rgba(0,0,0,.3);
    font-size: 14px;
    line-height: 1.5;
}
.dialog-contents {
    display: block;
    padding: 16px;
    text-align: left;
}
.dialog-buttons {
    display: block;
    text-align: right;
}
.dialog-buttons a {
    display: inline-block;
	font-weight: 400;
    text-decoration: none;
    padding: 8px;
	text-transform: uppercase;
	-webkit-transition: background-color .5s ease;
	-moz-transition: background-color .5s ease;
	transition: background-color .5s ease;
}
#okClose {
    margin-left: 8px;
}
.dialog-buttons a:hover {
    text-decoration: none;
    background-color: rgba(0,0,0,.05);
    cursor: pointer;
}
@media only screen and (max-width: 767px){
    #cookie-law-info-bar {
        max-width: none;
        width: calc(100% - 32px) !important;
    }
}