.cookie-consent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  color: #fff;
  background: rgba(0,0,0,.7);
  padding: 1.2em;
  box-sizing: border-box;
  visibility: visible;
		z-index: 9999;
}
.cookie-btns {
  display: flex;
  margin: 0 10px;
}
.cookie-btns > .btn {
  margin: 0 10px;
}
.cookie-consent a {
  color: #fff !important;
}
.cookie-consent a:hover {
	text-decoration: none;
}
.cookie-agree {
  color: #fff;
		font-weight: 500;
  background: #439988;
  padding: .5em 1.5em;
		transition: .4s;
		border-radius: 5px;
}
.cookie-agree:hover {
  background: #77B3A7;
}
.cookie-disagree {
  color: #fff;
	 border: 1px solid #FFF;
  padding: .5em 1.5em;
		transition: .4s;
		border-radius: 5px;
}
.cookie-disagree:hover {
		background: #FFF;
		color: #000;
}
.cookie-agree:hover, .cookie-disagree:hover {
  cursor: pointer;
}
@media only screen and (max-width:768px) {
  .cookie-consent {
    flex-direction: column;
    line-height: 1.4;
  }
  .cookie-text {
    margin-bottom: 1em;
  }
	.cookie-agree:hover{
  background: #439988;
	}
	.cookie-disagree:hover {
    color: #fff;
    border: 1px solid #FFF;
    background: none;
		}
}