.twpx-consent-popup {
  --color: #fff;
  position: fixed;
  bottom: 80px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  -webkit-transform: translate(-50%, 50px);
  transform: translate(-50%, 50px);
  box-sizing: border-box;
  
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  pointer-events: none;

  padding: var(--twpx-button-padding-m, 16px) var(--twpx-block-padding-l, 24px);
  gap: var(--twpx-block-gap-xl, 32px);

  border-radius: var(--twpx-button-border-radius-s, 4px);
  background: var(--base-background-black, #000);
  width: calc(100% - 80px * 2);
  
  color: var(--twpx-text-color-white, #FFF);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.2px; /* 130% */

  z-index: 1000;
}
.twpx-consent-popup--show {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  pointer-events: auto;
  z-index: 99999;
}
.twpx-consent-popup--hide {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media (print) {
  .twpx-consent-popup {
    display: none !important;
  }
}
.twpx-consent-popup a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;

  color: var(--twpx-text-color-attention, #FFE100);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.2px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.twpx-consent-popup a:hover {
  opacity: 0.7;
}

.twpx-consent-popup-text a {
  white-space: nowrap;
}

.twpx-consent-popup-button,
.twpx-consent-popup a.twpx-consent-popup-button {
  white-space: nowrap;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  cursor: pointer;
  box-sizing: border-box;

  display: flex;
  flex-shrink: 0;
  height: 37px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: var(--twpx-button-border-radius-s, 4px);
  background: var(--twpx-button-color-white, #FFF);
  color: var(--twpx-button-text-black, #000) !important;
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px; /* 100% */
  text-decoration: none;
}
.twpx-consent-popup-button:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .twpx-consent-popup {
    width: calc(100% - 15px * 2);
    bottom: 15px;
    left: 15px;
    display: block;
    padding: 25px !important;
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }

  .twpx-consent-popup.twpx-consent-popup--show {
    -webkit-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
  }

  .twpx-consent-popup-text {
    margin-bottom: 32px;
  }

  .twpx-consent-popup-button {
    display: block;
    text-align: center;
    width: 100% !important;
  }
}