﻿#cookie-wrapper {
    position: fixed;
    width: 100%;
    bottom: 5px;
    z-index: 10000;
}

#cookie-notice {
    position: relative;
    width: 850px;
    border: 1px solid #fff;
    background-color: #222;
    box-shadow: 0 0 2px #fff;

    margin-left: auto;
    margin-right: auto;
    padding: 10px 0 10px 0;
    text-align: center;

    -ms-border-radius: 25px;
    border-radius: 25px;
}

#close-cookie {
    position: absolute;
    top: 0;
    right: 0;
    width: 37px;
    height: 37px;
    background-color: #000;
    color: #FFF;
    
    text-align: center;
    font-size: 18px;
    line-height: 2.1;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    
    -ms-border-radius: 50px;
    border-radius: 50px;

    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
}

#close-cookie:hover {
    background-color: red;
    -webkit-box-shadow: 0 0 5px #f00;
    -ms-box-shadow: 0 0 5px #f00;
    box-shadow: 0 0 5px #f00
}