/* TsConsent */
:root {
  --ts-widget-bg: #fff;
  --ts-widget-offset: 20px;
  --ts-widget-max: 420px;
  --ts-color: #000;
  --ts-color-hover: #006eff;
  --ts-radius: 6px;
  --ts-btn-radius: 4px;
  --ts-primary-color: #006eff;
  --ts-secondary-color: #eaeff2;
  --ts-btn-primary-color: #ffffff;
  --ts-btn-primary-bg: #2d4156;
  --ts-btn-primary-hover-bg: #006eff;
  --ts-btn-secondary-color: #2d4156;
  --ts-btn-secondary-bg: #eaeff2;
  --ts-btn-secondary-hover-color: #2d4156;
  --ts-btn-secondary-hover-bg: #d8e0e6;
  --ts-modal-border-color: #f1f3f5;
  --ts-overlay-bg: rgba(4, 6, 8, .85);
  --ts-toggle-color: #fff;
  --ts-toggle-bg: #919ea6;
  --ts-toggle-handle-bg: #fff;
  --ts-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
}

@media (min-width: 1024px) {

  .TsConsent.-LeftBottom .TsConsent__Widget {
    right: auto;
  }

  .TsConsent.-LeftBottom .TsConsent__Widget {
    left: var(--ts-widget-offset);
  }

  .TsConsent.-RightBottom .TsConsent__Widget {
    left: auto;
  }

  .TsConsent.-RightBottom .TsConsent__Widget {
    right: var(--ts-widget-offset);
  }

  .TsConsent.-FullBottom .TsConsent__WidgetContainer {
    margin-left: auto;
    margin-right: auto;
  }

  .TsConsent.-FullBottom .TsConsent__WidgetContainer {
    max-width: var(--ts-widget-max);
  }

  .TsConsent.-FullBottom .TsConsent__Widget {
    left: 0px;
  }

  .TsConsent.-FullBottom .TsConsent__Widget {
    right: 0px;
  }

  .TsConsent.-FullBottom .TsConsent__Widget {
    bottom: 0px;
  }

  .TsConsent.-FullBottom .TsConsent__Widget {
    max-width: none;
  }

  .TsConsent.-FullBottom .TsConsent__Widget {
    border-radius: 0px;
  }

}

.TsConsent {
  color: #000;
  position: fixed;
  z-index: 99999;
  font-size: 13px;
}

.TsConsent p:first-child {
  margin-top: 0;
}

.TsConsent p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1600px) {

  .TsConsent {
    font-size: 14px;
  }
  
}

.TsConsent {
  color: var(--ts-color);

}

.TsConsent p {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  line-height: inherit;
}

.TsConsent button,
.TsConsent a {
  color: #000;
  font-family: inherit;
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: var(--ts-transition);
}

.TsConsent a {
  font-weight: 700;
}

.TsConsent a:hover {
  text-decoration: underline;
}

.TsConsent__Widget {
  position: fixed;
  padding: 20px;
}

@media (min-width: 641px) {

  .TsConsent__Widget {
    right: auto;
  }
}

@media (min-width: 1024px) {

  .TsConsent__Widget {
    padding-left: 28px;
    padding-right: 28px;
  }
}

.TsConsent__Widget {
  font-family: inherit;
  background: var(--ts-widget-bg);
  top: auto;
  bottom: var(--ts-widget-offset);
  left: var(--ts-widget-offset);
  right: var(--ts-widget-offset);
  border-radius: var(--ts-radius);
  max-width: var(--ts-widget-max);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);

}

.TsConsent__Widget.-Close {
  display: none;
}

.TsConsent__Heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (min-width: 1600px) {

  .TsConsent__Heading {
    font-size: 16px;
  }
}

.TsConsent__Heading small {
  margin-top: 4px;
  display: block;
  line-height: 1;
  font-size: 60%;
}

.TsConsent__Sptext {
  padding: 20px;
  border-radius: var(--ts-radius);
  border: 1px solid var(--ts-modal-border-color);
}

.TsConsent__Content {
  font-size: 13px;
  line-height: 1.5;
}

.TsConsent__Link {
  border-bottom-width: 1px;
  font-weight: 600;
  line-height: 1;
}

.TsConsent__Link:hover {
  color: var(--ts-color-hover);
  border-color: var(--ts-color-hover);
}

.TsConsent__Btns {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.TsConsent__Btns .TsConsent__Btn {
  width: 100%;
}

.TsConsent__BtnClose {
  display: flex;
  height: 40px;
  width: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border: none;
}

.ts-checkbox.TsConsent__BtnClose input {
  margin-top: 0px;
  margin-bottom: 0px;
}

.TsConsent__BtnClose {
  background-color: #eaeff2;
  border-radius: var(--ts-btn-radius);

}

.TsConsent__BtnClose span {
  position: relative;
  display: block;
  width: 100%;
}

.TsConsent__BtnClose span:before,
.TsConsent__BtnClose span:after {
  content: '';
  background: var(--ts-color);
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: auto;
  margin-right: auto;
  height: 0.2em;
  width: 1.2em;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: var(--ts-btn-radius);
}

.TsConsent__BtnClose span:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.TsConsent__BtnClose:hover {
  color: var(--ts-btn-secondary-hover-color);
  background-color: #d8e0e6;
}

.TsConsent__Btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-style: none;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  outline: 2px solid transparent;
  outline-offset: 2px;
  min-height: 40px;
  border-radius: var(--ts-btn-radius);
  transition: var(--ts-transition);
}


@media (min-width: 1024px) {
  
  .TsConsent__Btn {
    font-size: 13px;
    padding-left: 20px;
    padding-right: 20px;
  }

}

.ts-checkbox.TsConsent__Btn input {
  margin-top: 0px;
  margin-bottom: 0px;
}

.TsConsent__Btn.-Primary {
  color: var(--ts-btn-primary-color);
  background-color: var(--ts-btn-primary-bg);

}

.TsConsent__Btn.-Primary:hover {
  background-color: var(--ts-btn-secondary-hover-bg);
}

.TsConsent__Btn.-Secondary {
  color: #000;
  background-color: #eaeff2;

}

.TsConsent__Btn.-Secondary:hover {
  color: #000;
  background-color: #d8e0e6;
}

.TsConsent__Overlay {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  max-height: 100%;
  overflow-y: auto;
}

@media (min-width: 1024px) {

  .TsConsent__Overlay {
    display: flex;
  }

  .TsConsent__Overlay {
    flex-wrap: wrap;
  }

  .TsConsent__Overlay {
    align-items: center;
  }

  .TsConsent__Overlay {
    justify-content: center;
  }

  .ts-checkbox.TsConsent__Overlay input {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

.TsConsent__Overlay {
  background: var(--ts-overlay-bg);

}

.TsConsent__Overlay.-Close {
  display: none;
}

.TsConsent__Modal {
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

@media (min-width: 1280px) {

  .TsConsent__Modal {
    max-width: 740px;
  }

}

.TsConsent__ModalHeader,
.TsConsent__ModalMain,
.TsConsent__ModalFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.ts-checkbox.TsConsent__ModalHeader input,
.ts-checkbox.TsConsent__ModalMain input,
.ts-checkbox.TsConsent__ModalFooter input {
  margin-top: 0px;
  margin-bottom: 0px;
}

@media (min-width: 1024px) {

  .TsConsent__ModalHeader,
  .TsConsent__ModalMain,
  .TsConsent__ModalFooter {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 1600px) {

  .TsConsent__ModalHeader,
  .TsConsent__ModalMain,
  .TsConsent__ModalFooter {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.TsConsent__ModalHeader {
  border-bottom: 1px solid var(--ts-modal-border-color);
}

.TsConsent__ModalMain {
  display: block;
  min-height: 400px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.TsConsent__ModalFooter {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid var(--ts-modal-border-color);
}

@media (min-width: 1024px) {
  .TsConsent__Modal {
    border-radius: var(--ts-radius)
  }
}

.TsConsent__BtnsGroup {
  width: 100%;
}

@media (min-width: 1024px) {

  .TsConsent__BtnsGroup {
    display: flex;
  }

  .TsConsent__BtnsGroup {
    align-items: center;
  }

  .TsConsent__BtnsGroup {
    justify-content: space-between;
  }

  .TsConsent__BtnsGroup> :not([hidden])~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(20px * var(--tw-space-x-reverse));
    margin-left: calc(20px * calc(1 - var(--tw-space-x-reverse)));
  }

  .ts-checkbox.TsConsent__BtnsGroup input {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

@media (max-width: 1023px) {

  .TsConsent__BtnsGroup> :not([hidden])~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(10px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(10px * var(--tw-space-y-reverse));
  }
}

@media (min-width: 1024px) {

  .TsConsent__BtnsGroup.-toL {
    width: auto;
  }

  .TsConsent__BtnsGroup.-toL {
    justify-content: flex-start;
  }
}

@media (max-width: 1023px) {

  .TsConsent__BtnsGroup .TsConsent__Btn {
    display: flex;
  }

  .TsConsent__BtnsGroup .TsConsent__Btn {
    width: 100%;
  }
}

.TsConsent__Options {
  margin-top: 40px;
  margin-bottom: 40px;
}

.TsConsent__Options> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(8px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(8px * var(--tw-space-y-reverse));
}

.TsConsent__Options {
  font-size: 14px;
}

.TsConsent__Option {
  background-color: #eaeff2;
  border-radius: var(--ts-radius);

}

.TsConsent__OptionHeader {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.ts-checkbox.TsConsent__OptionHeader input {
  margin-top: 0px;
  margin-bottom: 0px;
}

.TsConsent__OptionArrow {
  margin-right: 12px;
  height: 10px;
  width: 10px;
}

@media (min-width: 1024px) {

  .TsConsent__OptionArrow {
    margin-right: 16px;
  }
}

.TsConsent__OptionArrow {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAA5gAAAOYBIly6UQAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAD6SURBVFiF7dbBbcIwGIbh90NMwBRM0Ck6EAdOLFFaaG9lGCSmgD2+XhLJBRLsH0cgEUv/xU78PoccIts8ck0eWh8BI6AFSJpKepc0Hzooad60pu3eDDgAbmZhmyEGWCSdQ9Nml2wOhjiLt/MLcLxyUBXRETdwAlh2HFZB9MQNrAAEfAyBuBH/ASbtg9UROXHbpC8IWNdA5Mb/AWohSuIXgATxGUGUxq8CoohIvBOQIL5yENF4LyAXcU/8JiBBbHoi4XgWIIjIimcDEsS2ZrwIkIkoihcDEsR3jXgI0PFNbCJx26i5MLQkvQHY3ofvuAdQYz3HX/EIeGnAH1PUhjgyxbaMAAAAAElFTkSuQmCC');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.5;
  transform: rotate(-180deg);
}

.TsConsent__OptionContent {
  font-size: 13px;
  background-color: #f1f3f5;
}

.TsConsent__OptionHeader,
.TsConsent__OptionContent {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
  padding-right: 12px;
}

@media (min-width: 1024px) {

  .TsConsent__OptionHeader,
  .TsConsent__OptionContent {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1600px) {

  .TsConsent__OptionHeader,
  .TsConsent__OptionContent {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.TsConsent__Option:not(.-Open) .TsConsent__OptionContent {
  display: none;
}

.TsConsent__Option:not(.-Open) .TsConsent__OptionArrow {
  transform: rotate(0deg);
}

.TsConsent__Xhr {
  transition: var(--ts-transition);
}

.TsConsent__Xhr:not(.-Loaded) {
  opacity: 0;
}

.TsConsent__FlexNone {
  flex: none;
}

.TsConsent__FlexAuto {
  flex: 1 1 auto;
}

.TsConsent__Toggle {
  position: relative;
  z-index: 1;
  margin-left: 8px;
  height: 28px;
  width: 56px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 9999px;
  color: var(--ts-toggle-color);
  background-color: var(--ts-toggle-bg);
  display: block;
}

.TsConsent__Toggle input.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.TsConsent__ToggleHandle {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 24px;
  width: 24px;
  border-radius: 9999px;
  z-index: 1;
  background-color: var(--ts-toggle-handle-bg);
  transition: var(--ts-transition);
}

.TsConsent__ToggleAcceptIcon,
.TsConsent__ToggleDeclineIcon {
  pointer-events: none;
  position: absolute;
  top: 50%;
  display: block;
  height: 10px;
  width: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  filter: invert(100%);
}

.TsConsent__ToggleAcceptIcon {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAA3QAAAN0BcFOiBwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAEuSURBVFiF7Zc9TgMxEEbfrBB3QIpEwW3oSUGDaNJxDwIEEn6SJso1OAISZ6DjGBCGIrOQKN7dCbHXSGBpqvU379lea7WiquQcRVb6v0AOARHZF5GeiOwBoKqtlC12DMwBBd6AozbhMwMv11PyIxCRApgCp4HHu7lWXtZJTviNqqZ5CR3w4dfcnPDoAg74aC1jwQ5wBhy0CbccXeDdJn0AE6BoA14KPAcCM6+EA37bkA8KuCS2hZcCxzUNKiUc8DvXDlqz800kYsFXriHQ90jEhK8IWPOLBomdBvj9xtc3cLaXNYCXmPCggEMiVA8/gVcKmMRVanitgEkMmuCAJBMwiesK+HhbuEvAJPp8fy/mwDAGXFUXTTxDRDrAIfCoqq+ukKevVyDV+Ht/Rr9O4BOblMCKtQVnSwAAAABJRU5ErkJggg==');
  left: 10px;
}

.TsConsent__ToggleDeclineIcon {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAA3NCSVQICAjb4U/gAAAACXBIWXMAAADdAAAA3QFwU6IHAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAABVQTFRF////AAAAAAAAAAAAAAAAAAAAAAAAPYbscQAAAAZ0Uk5TABJap87hjnVPfgAAAIBJREFUKFNjUDVkQALCQQxhKQIIPqNbKoNZmiNCQCQtGYgRShjdgLJgAq4AJIlQApVDKIFJwWi4DIyB0AthIZkOYSLbD2IjWw9WgqwArARZAVgJigKQEhQFmAIYWtANxbAW3WEYTkf3HIb30QMIIwjRAxkjGjAiCiMqMSIbPTkAAEWNNe2XXuP6AAAAAElFTkSuQmCC');
  right: 10px;
}

.TsConsent__ToggleBg {
  pointer-events: none;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  background-color: var(--ts-btn-primary-bg);
  opacity: 0;
  transition: var(--ts-transition);
}

.TsConsent__Toggle input:checked~.TsConsent__ToggleHandle {
  transform: translateX(28px);
}

.TsConsent__Toggle input:checked~.TsConsent__ToggleBg {
  opacity: 1;
}

.TsConsent__Toggle.-Disabled {
  pointer-events: none;
  cursor: auto;
  opacity: 0.25;
}

@media (max-width: 400px) {

  .TsConsent__Btn {
    font-size: 11px;
    padding: 10px;
  }

  .TsConsent,
  .TsConsent__OptionContent {
    font-size: 12px;
  }

  .TsConsent__Options {
    font-size: 12px;
  }

}

/* end TsConsent */