/* 
    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;
    bottom: 0;
    width: 100%;
    background-color: #E5E5E5;
    -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 p {
    margin-bottom: 5px;
}
div#eurociastko.pokaz {
    display: block;
}

div#eurociastko div.inner {
    width: 900px;
    margin: 10px auto;
    position: relative;
    padding-right: 120px;
}


div#eurociastko div.inner a.close {

    display: block;
    padding: 8px 12px;
    color: #fff;
    font-family: "Open Sans";
    font-size: 15px;
    font-weight: bold;
    position: absolute;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    top: 0;
    right: 0;
    text-decoration: none;
    text-align: center;

    border-top: 1px #87c101 solid;
    border-left: 1px #87c101 solid;
    border-right: 1px #87c101 solid;
    border-bottom: 1px #09aa10 solid;

    text-shadow: -1px 0 1px #09aa10;

    background: #09aa10;
    /*background: rgb(160,221,84);*/
/*    background: -moz-linear-gradient(top,  rgba(160,221,84,1) 0%, rgba(157,219,82,1) 7%, rgba(139,210,68,1) 25%, rgba(117,202,57,1) 43%, rgba(110,195,52,1) 54%, rgba(95,188,47,1) 68%, rgba(78,175,36,1) 93%, rgba(78,175,36,1) 96%, rgba(97,194,55,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(160,221,84,1)), color-stop(7%,rgba(157,219,82,1)), color-stop(25%,rgba(139,210,68,1)), color-stop(43%,rgba(117,202,57,1)), color-stop(54%,rgba(110,195,52,1)), color-stop(68%,rgba(95,188,47,1)), color-stop(93%,rgba(78,175,36,1)), color-stop(96%,rgba(78,175,36,1)), color-stop(100%,rgba(97,194,55,1)));
    background: -webkit-linear-gradient(top,  rgba(160,221,84,1) 0%,rgba(157,219,82,1) 7%,rgba(139,210,68,1) 25%,rgba(117,202,57,1) 43%,rgba(110,195,52,1) 54%,rgba(95,188,47,1) 68%,rgba(78,175,36,1) 93%,rgba(78,175,36,1) 96%,rgba(97,194,55,1) 100%);
    background: -o-linear-gradient(top,  rgba(160,221,84,1) 0%,rgba(157,219,82,1) 7%,rgba(139,210,68,1) 25%,rgba(117,202,57,1) 43%,rgba(110,195,52,1) 54%,rgba(95,188,47,1) 68%,rgba(78,175,36,1) 93%,rgba(78,175,36,1) 96%,rgba(97,194,55,1) 100%);
    background: -ms-linear-gradient(top,  rgba(160,221,84,1) 0%,rgba(157,219,82,1) 7%,rgba(139,210,68,1) 25%,rgba(117,202,57,1) 43%,rgba(110,195,52,1) 54%,rgba(95,188,47,1) 68%,rgba(78,175,36,1) 93%,rgba(78,175,36,1) 96%,rgba(97,194,55,1) 100%);
    background: linear-gradient(to bottom,  rgba(160,221,84,1) 0%,rgba(157,219,82,1) 7%,rgba(139,210,68,1) 25%,rgba(117,202,57,1) 43%,rgba(110,195,52,1) 54%,rgba(95,188,47,1) 68%,rgba(78,175,36,1) 93%,rgba(78,175,36,1) 96%,rgba(97,194,55,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a0dd54', endColorstr='#61c237',GradientType=0 );*/

}

@media (min-width: 768px) and (max-width: 1024px) { 
    div#eurociastko div.inner {
        width: 75%;
        margin: 10px auto;
        position: relative;
        padding-right: 120px;
    }
}
@media (max-width: 767px) { 
    div#eurociastko div.inner p {
        text-align: justify;
    }
    div#eurociastko div.inner {
        width: auto;
        margin: 10px;
        position: relative;
        padding: 0;
    }
    div#eurociastko div.inner a.close {
        position: relative;
        margin: 0 auto;
        width: 100px;
    }
}