.consent-dialog .ui-dialog-content a,
.consent-dialog .ui-dialog-content a:hover,
.consent-dialog .ui-dialog-content a:active {
  color: #0056b3;
}
.consent-dialog .consent-switch-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.consent-dialog .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.consent-dialog .switch input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.consent-dialog .switch input[type=checkbox]:checked + .slider {
  background-color: #cb4437;
}
.consent-dialog .switch input[type=checkbox]:checked + .slider::before {
  transform: translateX(26px);
}
.consent-dialog .switch input[type=checkbox] :focus + .slider {
  box-shadow: 0 0 1px #cb4437;
}
.consent-dialog .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.2s ease;
}
.consent-dialog .switch .slider.round {
  border-radius: 34px;
}
.consent-dialog .switch .slider.round::before {
  border-radius: 50%;
}
.consent-dialog .switch .slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.2s ease;
}
.consent-dialog .switch.highlight {
  border-radius: 18px;
  animation-name: highlightSwitch;
  animation-duration: 1s;
  animation-iteration-count: 3;
  animation-delay: 1s;
}
@keyframes highlightSwitch {
  0% {
    box-shadow: 0 0 2px 3px white;
  }
  50% {
    box-shadow: 0 0 3px 2px #cb4437;
  }
  100% {
    box-shadow: 0 0 2px 3px white;
  }
}
.consent-dialog .cookies-details {
  max-height: 200px;
  overflow-y: scroll;
}
.consent-dialog .cookies-details .detail-row {
  margin-top: 0.5rem;
  background: #e3e3e3;
  padding: 0.5rem;
  border-radius: 3px;
}
.consent-dialog .cookies-details .detail-row .detail-item {
  display: flex;
  flex-direction: row;
}
.consent-dialog .cookies-details .detail-row .detail-item .category-title {
  width: 100px;
  flex: 0 0 100px;
  text-transform: capitalize;
}/*# sourceMappingURL=consent-dialog.css.map */
