/* =========================================================
   COOKIE CONSENT - INNOVASALUD
   ========================================================= */

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999999;

  width: min(430px, calc(100% - 32px));

  padding: 24px;

  background: #ffffff;
  border: 1px solid rgba(0, 48, 141, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 32, 92, 0.18);

  font-family: inherit;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent__title {
  margin: 0 0 10px;

  color: #00308d;
  font-size: 20px;
  font-weight: 700;
}

.cookie-consent__text {
  margin: 0 0 16px;

  color: #525b68;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent__text a {
  color: #00308d;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-consent__button {
  min-width: 130px;
  min-height: 44px;

  padding: 10px 18px;

  cursor: pointer;

  border: 0;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;
}

.cookie-consent__button--accept {
  color: #ffffff;
  background: #00308d;
}

.cookie-consent__button--accept:hover {
  background: #66b533;
}

.cookie-consent__button--reject {
  color: #00308d;
  background: #edf4ff;
}

.cookie-consent__button--reject:hover {
  background: #e1eaf8;
}

@media (max-width: 600px) {
  .cookie-consent {
    right: 16px;
    bottom: 16px;
    left: 16px;

    width: auto;

    padding: 20px;
  }

  .cookie-consent__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__button {
    width: 100%;
  }
}