* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  color: #f8fafc;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  display: flex;
  align-items: flex-end;
}

a {
  color: inherit;
}

.page-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  transition: all 0.65s cubic-bezier(0.3, 0.95, 0.45, 0.95);
}

.page-background {
  background-image: url("/img/bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(6px);
}

.cookie-banner {
  display: flex;
  flex-direction: column;
  background-color: #d1ab84;
  color: #ffffff;
  padding: 16px;
  width: 100%;
}

.cookie-wrapper {
  max-width: 902px;
  margin: 0 auto;
}

.cookie-banner__info {
  max-width: 320px;
  flex-basis: 25%;
}
.cookie-banner__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: baseline;
  margin-bottom: 20px;
  gap: 16px;
}

.cookie-banner__title {
  font-size: 38px;
  margin-bottom: 8px;
}

.cookie-banner__subtitle {
  font-size: 16px;
}

.cookie-banner__text {
  font-size: 14px;
  margin-bottom: 8px;
  flex-basis: 25%;
}

.cookie-banner__accept {
  padding-top: 4px;
  border-top: 1px solid #506991;

  .cookie-banner__text {
    max-width: 100%;
  }
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner__button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-banner__button--accept {
  background-color: #ffffff;
  color: #003087;
}

.cookie-banner__button--accept:hover {
  background-color: #003087;
  color: #ffffff;
}

.cookie-banner__button--decline {
  background-color: #cccccc;
  color: #000000;
}

.cookie-banner__button--decline:hover {
  background-color: #999999;
  color: #ffffff;
}

.cookie-banner__button--manage {
  background-color: #506991;
  color: #ffffff;
}

.cookie-banner__button--manage:hover {
  background-color: #444444;
  color: #ffffff;
}

.cookie-banner__details {
  font-size: 12px;
}

.cookie-banner__list {
  list-style-type: disc;
  list-style-position: inside;
  margin: 10px 0;
  font-size: 14px;
}

@media (max-width: 686px) {
  .cookie-banner {
    align-items: center;
  }
  .cookie-banner__content {
    justify-content: center;
    text-align: center;
  }
  .cookie-banner__accept {
    text-align: center;
  }
  .cookie-banner__text {
    max-width: 100%;
  }
  .cookie-banner__info {
    max-width: 100%;
  }
  .cookie-banner__button {
    padding: 12px 6px;
  }
}

@media (max-width: 752px) {
	.cookie-banner {
		overflow: auto;
		max-height: 55vh;
		height: 100%;
		padding-bottom: 210px;
	}
	
  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
  }

	.cookie-banner__info {
		flex-basis: 100%;
		max-width: 100%;
	}

	.cookie-banner__actions {
		padding: 0 25px;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}
}
