@import url("https://fonts.googleapis.com/css2?family=Sunflower:wght@300;500;700&&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
.cookie-modal {
  position: fixed;
  bottom: 20px;
  right: -400px;
  width: 390px;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 20px;
  z-index: 1000;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.cookie-modal .panel-title-container {
  margin-bottom: 10px;
}
.cookie-modal .panel-title-container .panel-title .title-text {
  font-family: "Sunflower";
  font-weight: 700;
  color: #004b93;
  font-size: 20px;
}
.cookie-modal .panel-title-container .panel-title .title-underline-container {
  height: 3px;
  padding: 0 8px;
}
.cookie-modal .panel-title-container .panel-title .title-underline-container .title-underline {
  background-color: #fe0000;
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
.cookie-modal .cookie-message {
  font-family: "DM Sans", sans-serif;
  color: rgba(37, 37, 37, 0.6);
  font-size: 14px;
}
.cookie-modal .cookie-message .desc-link {
  color: #004b93;
  text-decoration: underline;
  cursor: pointer;
}
.cookie-modal .cookie-message .desc-link:hover {
  color: #00396e;
}
.cookie-modal .panel-button {
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background-color: #004b93;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: white;
  border: 0;
  cursor: pointer;
  transition: 0.2s;
}
.cookie-modal .panel-button:hover {
  transform: scale(1.05);
  background-color: #00396e;
}

.cookie-modal.show {
  right: 20px;
  opacity: 1;
}/*# sourceMappingURL=cookies-toast.css.map */