#cookieOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #a5d3a2;
    z-index: 999;
    display: none;
}

#cookieWindow {
    background: none repeat scroll 0 0 #F5F5F5;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0 3px 5px #4c9547;
    min-height: 200px;
    min-width: 330px;
    overflow: auto;

    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #80a95a;
    width: 700px;
    z-index: 1000;
    display: none;
}

#cookieWindow .modalcontent {
	padding: 20px;
	line-height: 1.4;
	font-size: 15px;
}
#cookieWindow .modalcontent a{text-decoration: underline;}

.cookieButtons {margin-top: 10px;}
.cookieBtn {
	background-color: #367e00;
    padding: 10px 10px 11px;
    border-radius: 10px;
    /*font-family: 'Open Sans', sans-serif;*/
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    border: none;
    opacity: 1;
    transition: opacity 0.3s;
    width: 100%;
}
.limitedCookies {
	background-color: #b7b7b7;
	margin-bottom: 0;
}
.cookieBtn:hover {opacity: 0.9}
/*.cookieBtn:focus {background-color: red;} */

@media (max-width: 767px) {
    #cookieWindow {
        width: 400px;
    }
}

@media (max-width: 479px) {
    #cookieWindow {
        width: 340px;
    }
}