.cookieConsentContainer {
  z-index: 999;
  /* width: 800px;
	min-height: 20px;
	box-sizing: border-box;
	padding: 30px 30px 30px 30px;
	background: #232323;
	overflow: hidden;
	position: fixed;
    bottom: 30px;
	right: 30px; */
  display: none;
  /* below is custom */
  position: fixed;
  bottom: 30px;
  left: 10%;
  right: 10%;
  padding: 5px 14px;
  align-items: center;
  justify-content: space-between;
  background-color: #eee;
  border-radius: 5px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  transition: opacity 1s;
  text-align: center;
}
.cookieConsentContainer .cookieTitle a {
  /* font-family: OpenSans, arial, "sans-serif"; */
  /* color: #ffffff; */
  /* font-size: 22px; */
  /* line-height: 20px; */
  /* display: block; */
}
.cookieConsentContainer .cookieDesc p {
  margin: 0;
  padding: 0;
  /* font-family: OpenSans, arial, "sans-serif"; */
  /* color: #ffffff; */
  /* font-size: 13px; */
  /* line-height: 20px; */
  /* display: block; */
  /* margin-top: 10px; */
}
.cookieConsentContainer .cookieDesc a {
  /* font-family: OpenSans, arial, "sans-serif"; */
  /* color: #ffffff; */
  /* text-decoration: underline; */
}
.cookieConsentContainer .cookieButton a {
  /* display: inline-block; */
  /* font-family: OpenSans, arial, "sans-serif"; */
  /* color: #ffffff; */
  /* font-size: 14px; */
  /* font-weight: bold; */
  /* margin-top: 14px; */
  /* background: #000000; */
  /* box-sizing: border-box; */
  /* padding: 15px 24px; */
  /* text-align: center; */
  transition: background 0.3s;
  /* below is custom */
  height: 20px;
  background-color: #777;
  border: none;
  color: white;
  border-radius: 2px;
  cursor: pointer;
  float: right;
}
.cookieConsentContainer .cookieButton a:hover {
  cursor: pointer;
  background: #3e9b67;
}

@media (max-width: 980px) {
  .cookieConsentContainer {
    bottom: 0px !important;
    left: 0px !important;
    width: 100% !important;
  }
}
