
#cookie{
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.18);
    border-radius: 10px;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: 900px;
    padding: 9px 30px 9px 30px;
    color: #563518;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    margin: 0 auto;
    z-index: 10;
}
#cookie a{
	color: #EE8D2E;
	text-decoration: underline;
}
#cookie a:hover{
	text-decoration: none;
}
#cookie > div{
    justify-content: space-between;
}
.jsCookieClose{
    border: 1px solid #EE8D2E;
    border-radius: 0.25rem;
    font-size: 15px;
    line-height: 31px;
    text-align: center;
    color: #000;
    padding: 0 10px;
    width: 160px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.cookie-text{
    color: #1A2F41;
    font-size: 12px;
    font-style: normal;
    line-height: normal;
}

@media (max-width: 680px){
	#cookie > div {
    	flex-wrap: wrap;
	}
	.jsCookieClose {
    	margin-top: 1rem;
	}
	#cookie {
    	padding: 0.7rem;
	}
}