.gdpr {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 40px;
  height: 40px;
  max-width: 100%;
  font-family: Calibri, sans-serif;
}
.gdpr__btn {
  width: 48px;
  height: 48px;
  border: none;
  padding: 0;
  margin: 0;
  position: fixed;
  z-index: 9000;
  bottom: 16px;
  right: 16px;
  background: #6b7280;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gdpr__btn:hover {
  transform: translateY(-2px);
  background: #4b5563;
  box-shadow: 0 6px 16px rgba(107, 114, 128, 0.4);
}
.gdpr__btn:active {
  transform: translateY(0);
}
.gdpr__btn svg {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gdpr__btn svg,
.gdpr__btn path {
  fill: #ffffff;
}
.gdpr__btn--hidden {
  display: none;
}
@media (max-width: 640px) {
  .gdpr__btn {
    width: 44px;
    height: 44px;
    bottom: 12px;
    right: 12px;
  }
  .gdpr__btn svg {
    width: 16px;
    height: 16px;
  }
}
