/*body {*/
/*  background-color: antiquewhite;*/
/*}*/

:root {
  --main-green: #127637;
  --main-light-green: #107637;
  --main-dark-blue: #15295a;
  --main-white: #ffffff;
  --font-family: "Manrope", sans-serif;
}

.cookie-modal {
  position: fixed;
  bottom: 20px;
  right: 0;
  max-width: 480px;
  margin: 0 20px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 40px;
  padding: 30px;
  z-index: 1000;
  display: none;
}

.cookie-modal.active {
  display: block;
  animation: fadeIn 0.5s;
}

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

.cookie-title {
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  color: var(--main-dark-blue);
  margin: 0;
}

.cookie-close {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #666;
  padding: 5px;
  height: 27px;
  margin-block: auto;
  color: var(--main-green);
  line-height: 0;
}

.cookies-divider {
  width: 60px;
  height: 7px;
  border-radius: 7px;
  background-color: var(--main-green);
  margin-block: 8px 12px;
}

.cookie-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--main-dark-blue);
  margin-bottom: 20px;
  letter-spacing: 0;
  font-family: var(--font-family);
}

.cookie-link {
  color: var(--main-light-green);
  text-decoration: none;
}

.cookie-link:hover {
  text-decoration: underline;
}

.cookie-button {
  padding: 12px 20px;
  border-radius: 25px;
  background-color: var(--main-green);
  border-color: var(--main-green);
  font-family: var(--font-family);
  line-height: 24px;
  font-size: 17px;
  color: var(--main-white);
  cursor: pointer;
  border: 0;
  display: block;
  margin-inline: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    bottom: 0;
  }
  to {
    opacity: 1;
    bottom: 20px;
  }
}

