.cookie-rules a {
  color: #fff;
}

.cookie-rules {
  font-size: 13px;
  background: #607D8B;
  border-radius: 8px;
  padding: 10px;
  /*max-width: 525px;*/
  color: #fff;
  position: fixed;
  left: 20px;
  bottom: -160px;
  z-index: 0;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  box-shadow: 0 0 36px 0 #0000006e;
  transition: bottom 0.9s ease-out 1.5s, opacity 0.5s ease-out 0.1s;
  opacity: 0;
  font-family: Arial, sans-serif;
}

.cookie-rules.shown {
  bottom: 20px;
  opacity: 1;
}

.cookie-rules.accepted {
  opacity: 0;
  bottom: -160px;
  transition: bottom 0.9s ease-out 0.1s, opacity 0.9s ease-out 0.2s;
}

.cookie-rules .agree-cookie {
  color: #000306;
  display: inline-block;
  border-radius: 4px;
  background: #bfe3ff;
  padding: 7px 18px;
  font-size: 15px;
  float: right;
  cursor: pointer;
  margin-left: 20px;
  transition: 0.2s;
  letter-spacing: 0.5px;
}

.cookie-rules .agree-cookie:hover {
  background: #1877ed;
  color: #ffffff;
}