#gdpr {
  width: calc(100% - 24px);
  max-width: 343px;
  position: fixed;
  background: white;
  padding: 16px;
  box-shadow: 0 0 8px rgba(31, 38, 61, 0.24), 0 0 32px rgba(31, 38, 61, 0.12);
  border-radius: 4px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10000;
  font-size: 16px;
  font-weight: normal;
  display: none;
  bottom: -200px;
}
#gdpr.is-shown {
  bottom: calc(64px + env(safe-area-inset-bottom));
}
#gdpr.is-really-shown {
  display: block;
}
@media only screen and (min-width: 1224px) {
  #gdpr.is-really-shown {
    display: flex;
  }
}
#gdpr .gdpr-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
  max-width: 830px;
}
#gdpr .gdpr-text {
  line-height: 1.5;
}
#gdpr .gdpr-buttons {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#gdpr .gdpr-buttons .link {
  color: #164BCA;
}
#gdpr .kbtn i {
  position: relative;
  top: 2px;
  margin-left: 13px;
}
@media only screen and (min-width: 768px) {
  #gdpr {
    max-width: 720px;
  }
  #gdpr .gdpr-buttons {
    justify-content: flex-end;
    column-gap: 40px;
    gap: 40px;
  }
}
@media only screen and (min-width: 1224px) {
  #gdpr {
    padding: 24px;
    max-width: 1224px;
    margin-bottom: 0;
    justify-content: space-between;
    align-items: center;
  }
  #gdpr .gdpr-top {
    margin-bottom: 0;
  }
}
