.btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background-color 0.2s, color 0.2s;
}
.btn--primary {
  background-color: #1a73e8;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #135cbc;
}
.btn--secondary {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: #ffffff;
  padding: 1rem 0;
  z-index: 1000;
}
.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  gap: 2rem;
}
.cookie-banner__text {
  flex: 1 1 70%;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }
  .cookie-banner__text {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cookie-banner__buttons {
    justify-content: flex-start;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(33, 37, 41, 0.5);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  color: #000;
}
.modal__content {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal__content h2 {
  font-size: 1.7rem;
  line-height: 1.2;
}
.modal__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.modal__header a {
  display: block;
  width: 100%;
  height: 100%;
  width: 216px;
  height: 47px;
  transition: var(--transition);
  background: url(../img/logo-black.svg) 50% / contain no-repeat;
}
.modal__description {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.modal__description a {
  color: #1a73e8;
  text-decoration: underline;
}
.modal__description a:hover {
  text-decoration: none;
}
.modal__footer {
  margin-top: 2rem;
  text-align: right;
}
.modal__link {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6c757d;
}
.modal__link a {
  color: #1a73e8;
  text-decoration: none;
}
.modal__link a:hover {
  text-decoration: underline;
}

.cookie-categories .cookie-category {
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 0;
}
.cookie-categories .cookie-category:last-child {
  border-bottom: none;
}
.cookie-categories .cookie-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.cookie-categories .cookie-category__header h3 {
  margin: 0;
  font-size: 1.125rem;
}
.cookie-categories .cookie-category p {
  color: #6c757d;
  font-size: 0.875rem;
  line-height: 1.2;
  margin: 0;
}
.cookie-categories .cookie-category p a {
  color: #1a73e8;
  text-decoration: underline;
}
.cookie-categories .cookie-category p a:hover {
  text-decoration: none;
}
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .slider {
  background-color: #1a73e8;
}
.switch input:checked + .slider:before {
  transform: translateX(20px);
}
.switch input:disabled + .slider {
  opacity: 0.5;
  cursor: not-allowed;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ced4da;
  transition: 0.4s;
  border-radius: 24px;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: #ffffff;
  transition: 0.4s;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .cookie-banner__content {
    text-align: center;
  }
  .cookie-banner__buttons {
    flex-direction: column;
    width: 100%;
  }
  .modal__header {
    flex-direction: column;
    align-items: center;
    gap: 1;
  }
  .cookie-banner__buttons .btn {
    width: 100%;
  }
  .modal__content {
    padding: 1rem;
  }
  .cookie-category__header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
} /*# sourceMappingURL=main.css.map */
