@charset "utf-8";
/* CSS Document */

.cookieNotice {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;        
    background-color: #EEEDED;
    border-top: 1px solid #565B5B;
    bottom: 0;
    color: #565B5B;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px;
    position: fixed;
    width: 100%;
    z-index: 999;
}
#cookieBtn {
    background-color: #565b5b;
    border: medium none;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px !important;
    height: auto;
    margin: 0;
    padding: 5px 10px;
    text-transform: none;
    top: auto;
    white-space: nowrap;
    width: auto;
}
#cookieBtn:hover {
	background-color: #414444;
}
a.cookie-link {
	color:#009fc1;
    border-bottom: 1px dotted #009fc1;
	text-decoration:none;
    transition: none;    
}
a.cookie-link:visited {
	color:#765F97;
    border-bottom: 1px dotted #765f97;
	text-decoration:none;
    transition: none;    
}
a.cookie-link:hover {
	color:#d77b00;
    border-bottom: 1px dotted #d77b00;
	text-decoration:none;
    transition: none;    
}
a.cookie-link:active {
	color:#00C3DC;
    border-bottom: 1px dotted #00c3dc;
	text-decoration:none;
    transition: none;    
}
.cookieText {
    float: left;
    margin-left: 15%;
    width: 50%;
    font-size: 12px;
    line-height: 16px;
}
.cookieBtnCnt {
    float: right;
    margin-left: 50px;
    margin-right: 20%;
    width: 10%;
}
.noMargin {
	margin:0;
}

@media only screen and (max-width: 1030px) {
.cookieNotice {
	width:auto;
}
.cookieText {
    margin-left: 0;
    width: 100%;
}
.cookieText > p {
	font-size: 14px;
}
.cookieBtnCnt {
    margin: 10px 20px;
    text-align: center;
    width: 100%;
}
}

