body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}
body header {
  background-color: #69181d;
  color: white;
  padding: 20px;
  text-align: center;
}
body header h1 {
  margin: 0;
  font-size: 2.5em;
}
body header nav {
  margin-top: 2px;
}
body header nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}
body header nav li {
  margin: 0 15px;
}
body header nav li a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}
body header nav li a:hover {
  text-decoration: underline;
}
body header .search-container {
  position: relative;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
}
body header .search-container .search-label {
  font-size: 1.2em;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
body header .search-container .search-input {
  width: 100%;
  padding: 12px;
  font-size: 1.2em;
  border: 2px solid #69181d;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: white;
  text-align: center;
}
body header .search-container .suggestions-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border: 1px solid #ddd;
  border-top: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: none;
}
body header .search-container .suggestions-list.visible {
  display: block;
}
body header .search-container .suggestions-list li {
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: black;
}
body header .search-container .suggestions-list li:hover {
  background-color: #f1f1f1;
}
body footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
  font-size: 1.1em;
}
body footer p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px;
}
body footer a:hover {
  text-decoration: underline;
  color: #fdda25;
}
body footer p a {
  margin: 0 10px;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 600px) {
  body footer p {
    flex-direction: column;
    align-items: center;
  }
  body footer p a {
    margin-bottom: 5px;
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
.cookie {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 10px;
}
.cookie .content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  max-height: 80%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .cookie .content {
    max-width: 90%;
  }
}
.cookie .content h3 {
  color: #69181d;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
.cookie .content p {
  color: black;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.5;
  word-wrap: break-word;
}
.cookie .content form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie .content form span {
  font-weight: bold;
  color: #69181d;
  margin-bottom: 0.5rem;
}
.cookie .content form .radio-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}
.cookie .content form .radio-group input[type=radio] {
  display: none;
}
.cookie .content form .radio-group .radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 2px solid #d3d3d3;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #f0f0f0;
  color: #d3d3d3;
  font-size: 1rem;
}
.cookie .content form .radio-group .radio-option.selected-accept {
  border-color: #28a745;
  color: #28a745;
  background-color: rgb(175.1304347826, 235.8695652174, 189);
}
.cookie .content form .radio-group .radio-option.selected-reject {
  border-color: #dc3545;
  color: #dc3545;
  background-color: rgb(250.1265822785, 226.8734177215, 229.1012658228);
}
.cookie .content form .radio-group .radio-option:not(.selected-accept):not(.selected-reject) {
  background-color: #f0f0f0;
  color: #d3d3d3;
  border-color: #d3d3d3;
}
.cookie .content form input[type=submit] {
  background-color: #69181d;
  color: white;
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}
.cookie .content form input[type=submit]:hover {
  background-color: rgb(63.488372093, 14.511627907, 17.5348837209);
}

.form-error {
  color: #dc3545;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  display: none;
}
.form-error.visible {
  display: block;
}/*# sourceMappingURL=cookiebox.css.map */