@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%
  }

  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%
  }

  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%
  }

  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%
  }
}

#universal-consent-language {
  font-size: 13px !important;
  line-height: 1.3 !important;
  color: #000 !important;
  min-height: 30px;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  display: block;
  margin-top: 10px;
}

#universal-consent-language label {
  font-size: 13px !important;
  color: #000 !important;
}

#universal-consent-language a:link,
#universal-consent-language a:visited {
  color: #000;
}

#universal-consent-language a:hover,
#universal-consent-language a:active {
  color: #000;
}

#universal-consent-language .error.visible {
  display: inline;
}

#universal-consent-language.loading {
  min-height: 30px;
  margin: 20px 0;
}

#universal-consent-language.loading-animation::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: " ";
  width: 60px;
  height: 30px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side, #7d9fb9 90%, transparent);
  background:
    var(--_g) 0% 50%,
    var(--_g) 50% 50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 50%;
  animation: l3 1s infinite linear;
  z-index: 9999;
  display: block;

  /* Fallback for aspect-ratio */
  height: 50px;
  width: calc(50px * 2);
}

#universal-consent-language .checkbox-buttons {
  display: inline;
  margin: 10px 0;
}

#universal-consent-language #toggle-all-btn {
  background-color: transparent;
  padding: 0;
  display: inline-block;
  border: 0 none;
  text-decoration: underline;
  color: #000;
  font-size: 13px;
}

#universal-consent-language #toggle-all-btn:hover {
  color: #000;
}

#universal-consent-language .eligible-buyers {
  display: inline;
}

#universal-consent-language label[data-tf-element-role^="consent-opted-advertiser-name"] {
  user-select: none;
  display: inline;
  padding: 0;
  margin: 0;
  position: relative;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.3;
}

#universal-consent-language label[data-tf-element-role^="consent-opted-advertiser-name"] input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 13px;
  height: 13px;
  margin-top: 0px;
  border-radius: 0;
  border: 1px solid black;
  background-color: #fff;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}

#universal-consent-language label[data-tf-element-role^="consent-opted-advertiser-name"] input[type="checkbox"]:checked::before,
#universal-consent-language label[data-tf-element-role^="consent-opted-advertiser-name"] input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  background-color: black;
  width: 1px;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#universal-consent-language label[data-tf-element-role^="consent-opted-advertiser-name"] input[type="checkbox"]:checked::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#universal-consent-language label[data-tf-element-role^="consent-opted-advertiser-name"] input[type="checkbox"]:checked::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#universal-consent-language #mhs-consent:empty {
  display: none;
}

#universal-consent-language #mhs-consent {
  font-size: 13px;
  line-height: 1.3;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  display: inline;
}

#universal-consent-language #mhs-consent .client {
  display: inline;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  height: auto;
}

#universal-consent-language #mhs-consent .client .client-label {
  font-size: 13px;
  display: inline;
  align-items: center;
  gap: 0 4px;
  padding: 0;
  margin: 0 4px 0 0;
  position: relative;
  cursor: pointer;
  user-select: none;
}

#universal-consent-language #mhs-consent .client .client-label input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 13px;
  height: 13px;
  margin: -3px 4px 0 0;
  border-radius: 0;
  border: 1px solid black;
  background-color: #fff;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}

#universal-consent-language #mhs-consent .client .client-label input[type="checkbox"]:checked::before,
#universal-consent-language #mhs-consent .client .client-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  background-color: black;
  width: 1px;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#universal-consent-language #mhs-consent .client .client-label input[type="checkbox"]:checked::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#universal-consent-language #mhs-consent .client .client-label input[type="checkbox"]:checked::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}