
/* aronga cookie bar */
#aronga-cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10080;
  background: #222;
  color: #fff;
  padding: 14px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}
.aronga-cookie-bar__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.aronga-cookie-bar__text {
  flex: 1 1 220px;
  font-size: 15px;
  line-height: 1.45;
}
.aronga-cookie-bar__text a {
  color: #ffb3d0;
  text-decoration: underline;
}
.aronga-cookie-bar__btn {
  flex: 0 0 auto;
  min-height: 48px;
  min-width: 140px;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  background: #e91e63;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}
.aronga-cookie-bar__btn:hover {
  background: #c2185b;
}
@media (max-width: 575px) {
  .aronga-cookie-bar__inner { flex-direction: column; align-items: stretch; }
  .aronga-cookie-bar__btn { width: 100%; }
  /* keep above fly contacts */
  #aronga-cookie-bar { padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px)); }
}
