/*---------------------------
** Cookie alert css
---------------------------*/

.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 700px;
  z-index: 999999;
  padding: 0 15px;
  box-sizing: border-box;
}

.cookie-consent__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  color: #0C0528;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.1);
  border: 1px solid #EAEAEA;
}

.cookie-consent__message {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: #747474;
  margin: 0;
}

.cookie-consent__agree {
  flex-shrink: 0;
  white-space: nowrap;
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 20px;
}

@media only screen and (max-width: 767px) {
  .cookie-consent {
    bottom: 12px;
    padding: 0 12px;
  }

  .cookie-consent__box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 16px;
    padding: 16px 20px;
  }
}
