

#cookie-information {
    width: auto;
    height: auto;
    background-color: black;
    position: fixed;
    z-index: 999999;
    top: 0;
    border-top: 1px solid silver;
    border: 1px solid silver;
    display: block;
    transition: all 0.25s linear;
    box-sizing: border-box;
    border-radius : 10px;
    margin-left: 20%;
    margin-right: 20%;
    
}

#cookie-information .content {
	padding: 5px;
	transition: all 0.25s linear;
	box-sizing: border-box;
	display: block;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

#cookie-information .content .cookie-img {
	width: 10%;
    height: 10%;
    margin: 0 20px 5px 0;
    float: left;
    vertical-align: middle;
    border: 0;
    
}

#cookie-information .content .close-cookie {
    background-color: black;
    margin: 0 20px 5px 0;
    cursor: pointer;
    display: block;
    float: right;
    vertical-align: middle;
}

#cookie-information .content .close-cookie img {
    width: 30px;
    height: 30px;
    padding: 5px;
    border: solid 1px;
    border-radius: 25px;
}