* { box-sizing: border-box; }
body { margin: 0; }

#cookit {
  position: fixed;
  width: 100%;
  bottom: 0;
  padding: 20px;
  display: flex;
  z-index: 999;
  background-color:rgba(0,0,0,0.9) !important;
}
#cookit.hidden { display: none; }

#cookit #cookit-container {
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  
}

#cookit #cookit-container > * { margin: .4rem; }
#cookit #cookit-container h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 8px;
	width:100%;
	color:#c0b479 !important;
}
#cookit #cookit-container p { line-height: 1.4em; font-size:1em; float:left; width:80%; color:#c0b479 !important; }

#cookit #cookit-container p a{ color:#c0b479 !important; text-decoration:underline; }

#cookit #cookit-container a {
    
}
#cookit #cookit-container a:hover { opacity: .9; }

#cookit #cookit-container #cookit-button {
  padding: .5rem 1rem;
  margin-left: auto;
  background-color:#c0b479;
  text-align:center;
  color:#FFF;
  font-weight:600;
  font-size:1.1em;
  text-decoration: none;
    /* float: right; */
    width: 140px;
    position: absolute;
    right: 20px;
    top: 50px;
}

@media only screen and (max-width: 768px) {
	
#cookit #cookit-container #cookit-button {
    position: relative !important;
	float:right !important;
	right: 0px;
    top: 5px;
}
	
	}