﻿@media(max-width: 769px) {
.Cookies {
    left: 0% !important;
    width: 100% !important;
    }
}
h4 {
    text-align: center;
}
.Cookies {
    animation-name: CookiesAnim;
    animation-duration: 1s;
    position: fixed;
    bottom: 0px;
    left: 5%;
    width: 90%;
    margin: auto;
    border-radius: 0px;
    min-height: 180px;
    background-color: #eeeeee;
    display: none;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    z-index: 1;
    padding: 20px 30px;
}
@keyframes CookiesAnim {
    0% {
        bottom: -200px;
    }
}

.Cookies button {
    display: block;
    margin: auto;
    position: relative;
    top: 30px;
    padding: 10px 40px;
    background-color: #e7a61a;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    border: none;
    width: 200px;
}

    .Cookies button:hover {
        background-color: rgb(0,0,0,0.8);
        color: white;
    }

    .Cookies button.Odmietnut {
        background: transparent;
    }

        .Cookies button.Odmietnut:hover {
            background-color: rgb(0,0,0,0.8);
            color: white;
        }
.CloseX {
    float: right;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
    color: black;
    font-weight: bold;
}
.CloseX:hover {
    cursor:pointer;
}
/*---------------------- _Layout.cshtml ----------------------

<div class="Cookies">
<h4>
Na zlepšenie vášho zážitku na našej webovej stránke používame cookies. Stlačením tlačidla "<b>Prijať</b>" súhlasíte s ich používaním.
</h4>
<div class="CloseX" onclick="RejectCookies()">x</div>
<div class="row">
<div class="col-lg-6">
<button class="Odmietnut" type="button" onclick="RejectCookies()" ><b>Odmietnúť</b></button >
<br />
</div>
<div class="col-lg-6">
<button class="" type="button" onclick="AcceptCookies()" > Prijať</button >
<br />
</div>
</div>
</div>

*/