/* 
    Document   : eurocookie.css
    Created on : 2013-04-05, 08:41:38
    Author     : Tomasz Skręt
    Description:
        Style boxa z informacją o ciasteczkach
*/

div#eurociastko {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #E5E5E5;
    color: #000;
    -webkit-box-shadow:  0px 5px 15px 0px rgba(128, 128, 128, 0.5);
    box-shadow:  0px 5px 15px 0px rgba(128, 128, 128, 0.5);
    z-index: 10000;
}

div#eurociastko.pokaz {
    display: block;
}

div#eurociastko div.inner {
    width: 960px;
    margin: 10px auto;
    position: relative;
    padding-right: 120px;
}

div#eurociastko div.inner a.close {
    display: block;
    padding: 5px 10px;
    font-size: 18px;
    color: #fff;
    position: absolute;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    top: 50%;
    right: 0;
    text-decoration: none;
    text-align: center;

    background: #bfd255; /* Old browsers */
    background: -moz-linear-gradient(top,  #bfd255 0%, #8eb92a 50%, #72aa00 51%, #9ecb2d 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bfd255), color-stop(50%,#8eb92a), color-stop(51%,#72aa00), color-stop(100%,#9ecb2d)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bfd255', endColorstr='#9ecb2d',GradientType=0 ); /* IE6-9 */
}