﻿/*-----------------------------------------------------------------------------------*/
/* VARIABLES */
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/* LAYOUT */
/*-----------------------------------------------------------------------------------*/
/* --------------------- CSS PROPERTIES --------------------- */
/* --------------------- ELEMENT STATES --------------------- */
/* --------------------- ANIMATION --------------------- */
/* --------------------- FLEXBOX --------------------- */
.gdpr-modal *, .gdpr-modal::after, .gdpr-modal::before, .gdpr-banner *, .gdpr-banner::after, .gdpr-banner::before {
  box-sizing: border-box; }

.gdpr-modal *:focus, .gdpr-banner *:focus {
  outline: none;
  outline: 0px;
  outline: -webkit-focus-ring-color 0;
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none; }

.gdpr-modal a:focus,
.gdpr-modal button:focus,
.gdpr-modal .gdpr-modal__toggle-option input[type="checkbox"]:focus ~ label .gdpr-modal__toggle-option__switch,
.gdpr-modal .gdpr-banner__toggle-option input[type="checkbox"]:focus ~ label .gdpr-banner__toggle-option__switch, .gdpr-banner a:focus,
.gdpr-banner button:focus,
.gdpr-banner .gdpr-modal__toggle-option input[type="checkbox"]:focus ~ label .gdpr-modal__toggle-option__switch,
.gdpr-banner .gdpr-banner__toggle-option input[type="checkbox"]:focus ~ label .gdpr-banner__toggle-option__switch {
  outline: 2px solid #cfcfcf;
  text-decoration: none; }

.gdpr-modal a, .gdpr-banner a {
  font-weight: 400;
  color: #363636;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .gdpr-modal a:hover, .gdpr-modal a:focus, .gdpr-banner a:hover, .gdpr-banner a:focus {
    color: #33383d;
    text-decoration: none; }

/*-----------------------------------------------------------------------------------*/
/* TRIGGER */
/*-----------------------------------------------------------------------------------*/
.gdpr-modal__trigger,
.gdpr-banner__trigger {
  position: fixed;
  z-index: 99999999998;
  bottom: 0;
  left: 20px;
  max-width: 200px;
  height: 30px;
  line-height: 30px;
  padding: 0 10px !important;
  cursor: pointer;
  font-family: "Poppins", arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: center;
  vertical-align: middle;
  border: 1px solid transparent;
  -webkit-border-radius: 2px 2px 0px 0px !important;
  -moz-border-radius: 2px 2px 0px 0px !important;
  -ms-border-radius: 2px 2px 0px 0px !important;
  border-radius: 2px 2px 0px 0px !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: visible;
  -webkit-appearance: button;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #ffffff;
  background: #9c9c9c;
  border-color: #9c9c9c; }
  @media (min-width: 768px) {
    .gdpr-modal__trigger,
    .gdpr-banner__trigger {
      left: 30px;
      height: 40px;
      line-height: 40px;
      padding: 0 14px !important;
      max-width: 200px;
      font-size: 12px; } }
  .gdpr-modal__trigger .gdpr-modal__trigger_icon,
  .gdpr-banner__trigger .gdpr-modal__trigger_icon {
    display: inline-block;
    width: 16px !important;
    height: 16px !important;
    margin: -3px 0px 0 0;
    vertical-align: middle; }
    @media (min-width: 768px) {
      .gdpr-modal__trigger .gdpr-modal__trigger_icon,
      .gdpr-banner__trigger .gdpr-modal__trigger_icon {
        width: 21px !important;
        height: 21px !important; } }
  .gdpr-modal__trigger:hover, .gdpr-modal__trigger:focus,
  .gdpr-banner__trigger:hover,
  .gdpr-banner__trigger:focus {
    color: #ffffff;
    background: #363636;
    border-color: #363636; }

/*-----------------------------------------------------------------------------------*/
/* MODAL */
/*-----------------------------------------------------------------------------------*/
.gdpr-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999999999;
  width: 100%;
  height: 100%;
  background: rgba(54, 54, 54, 0.8);
  opacity: 0;
  outline: 0;
  display: none;
  overflow-x: hidden;
  overflow-y: auto; }
  .gdpr-modal--active {
    display: block;
    opacity: 1; }
  .gdpr-modal__content {
    display: block;
    background: #ffffff;
    position: relative;
    padding: 13px;
    width: 100%;
    max-width: 287px;
    margin: 20px auto;
    border-radius: 5px;
    font-family: "Poppins", arial, sans-serif;
    font-size: 9px;
    line-height: 1.6;
    font-weight: 400;
    color: #33383d;
    letter-spacing: 0.03em;
    text-align: left; }
    @media (min-width: 768px) {
      .gdpr-modal__content {
        max-width: 378px;
        margin: 50px auto;
        padding: 17px; } }
    @media (min-width: 768px) {
      .gdpr-modal__content {
        font-size: 11px; } }
    .gdpr-modal__content__title {
      font-size: 15px;
      font-weight: 500; }
      @media (min-width: 768px) {
        .gdpr-modal__content__title {
          font-size: 16px; } }
      @media (min-width: 992px) {
        .gdpr-modal__content__title {
          font-size: 18px; } }
      .gdpr-modal__content__title svg {
        display: inline-block;
        width: 19px !important;
        height: 19px !important;
        margin: -3px 3px 0 0;
        vertical-align: middle; }
        @media (min-width: 768px) {
          .gdpr-modal__content__title svg {
            width: 24px !important;
            height: 24px !important; } }
    .gdpr-modal__content__intro {
      font-size: 10px;
      font-weight: 400;
      margin-bottom: 10px;
      line-height: 1.7; }
      @media (min-width: 768px) {
        .gdpr-modal__content__intro {
          font-size: 13px;
          margin-bottom: 15px; } }
      .gdpr-modal__content__intro p {
        font-size: 10px;
        margin-top: 6px !important;
        margin-bottom: 0 !important; }
        @media (min-width: 768px) {
          .gdpr-modal__content__intro p {
            font-size: 13px;
            margin-top: 9px !important;
            margin-bottom: 0 !important; } }
        .gdpr-modal__content__intro p:first-child {
          margin-top: 0 !important; }
        .gdpr-modal__content__intro p:last-child {
          margin-bottom: 0 !important; }
    .gdpr-modal__content__control {
      margin-bottom: 12px;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      @media (min-width: 768px) {
        .gdpr-modal__content__control {
          margin-bottom: 18px; } }
    .gdpr-modal__content__footer {
      padding-top: 12px; }
      @media (min-width: 768px) {
        .gdpr-modal__content__footer {
          padding-top: 15px; } }
  .gdpr-modal__close {
    width: auto;
    height: 29px;
    padding: 0px 8px !important;
    line-height: 28px;
    cursor: pointer;
    font-family: "Poppins", arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.03em;
    border: 1px solid transparent;
    -webkit-border-radius: 2px !important;
    -moz-border-radius: 2px !important;
    -ms-border-radius: 2px !important;
    border-radius: 2px !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible;
    -webkit-appearance: button;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ffffff;
    background: #9c9c9c;
    border-color: #9c9c9c; }
    .gdpr-modal__close:hover, .gdpr-modal__close:focus {
      color: #ffffff;
      background: #363636;
      border-color: #363636; }
  .gdpr-modal__save {
    position: relative;
    width: 100%;
    min-height: 1px;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    width: auto;
    height: 40px;
    padding: 0 10px !important;
    cursor: pointer;
    font-family: "Poppins", arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.03em;
    border: 1px solid transparent;
    border-radius: 2px !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible;
    -webkit-appearance: button;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-right: 5px;
    color: #ffffff;
    background: #5fc054;
    border-color: #5fc054; }
    @media (min-width: 768px) {
      .gdpr-modal__save {
        height: 42px;
        font-size: 14px;
        padding: 0 12px; } }
    .gdpr-modal__save:hover, .gdpr-modal__save:focus {
      color: #ffffff;
      background: #363636;
      border-color: #363636; }
  .gdpr-modal__check {
    position: relative;
    width: 100%;
    min-height: 1px;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    width: auto;
    height: 40px;
    padding: 0 10px !important;
    cursor: pointer;
    font-family: "Poppins", arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.03em;
    border: 1px solid transparent;
    border-radius: 2px !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible;
    -webkit-appearance: button;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #ffffff;
    background: #5c5c5c;
    border-color: #5c5c5c; }
    @media (min-width: 768px) {
      .gdpr-modal__check {
        height: 42px;
        font-size: 14px;
        padding: 0 12px; } }
    .gdpr-modal__check:hover, .gdpr-modal__check:focus {
      color: #ffffff;
      background: #363636;
      border-color: #363636; }

/*-----------------------------------------------------------------------------------*/
/* CATEGORY ACCORDIAN */
/*-----------------------------------------------------------------------------------*/
.gdpr-modal__category,
.gdpr-banner__category {
  padding-top: 6px;
  border-width: 2px 0 0 0;
  border-style: dotted;
  border-color: #cfcfcf; }
  .gdpr-modal__category:not(:first-child),
  .gdpr-banner__category:not(:first-child) {
    margin-top: 6px; }
  .gdpr-modal__category:last-child,
  .gdpr-banner__category:last-child {
    border-width: 2px 0 2px 0;
    padding-bottom: 6px; }
  .gdpr-modal__category__heading,
  .gdpr-banner__category__heading {
    outline: 0;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .gdpr-modal__category__heading__title,
    .gdpr-banner__category__heading__title {
      position: relative;
      width: 100%;
      min-height: 1px;
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%;
      font-size: 12px;
      font-weight: 500;
      line-height: 1.4;
      margin: auto 0; }
      @media (min-width: 768px) {
        .gdpr-modal__category__heading__title,
        .gdpr-banner__category__heading__title {
          font-size: 14px; } }
    .gdpr-modal__category__heading__control,
    .gdpr-banner__category__heading__control {
      position: relative;
      width: 100%;
      min-height: 1px;
      flex: 0 0 auto;
      width: auto;
      max-width: none;
      text-align: left; }
      @media (min-width: 768px) {
        .gdpr-modal__category__heading__control,
        .gdpr-banner__category__heading__control {
          text-align: right; } }
      .gdpr-modal__category__heading__control .small,
      .gdpr-banner__category__heading__control .small {
        width: 70px;
        height: 29px;
        display: inline-block;
        padding: 0px 5px;
        margin: 0 5px 0 0;
        font-size: 10px;
        font-weight: 400;
        line-height: 29px;
        color: #ffffff;
        background: #5fc054;
        vertical-align: middle;
        text-align: center;
        border-radius: 2px; }
    .gdpr-modal__category__heading__description,
    .gdpr-banner__category__heading__description {
      position: relative;
      width: 100%;
      min-height: 1px;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
      line-height: 1.5;
      margin-top: 8px; }
  .gdpr-modal__category__content,
  .gdpr-banner__category__content {
    overflow: hidden;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease;
    transition-property: all;
    transition-timing-function: ease; }
    .gdpr-modal__category__content__table,
    .gdpr-banner__category__content__table {
      color: #616b75;
      margin-top: 10px;
      padding: 0; }
      .gdpr-modal__category__content__table a,
      .gdpr-banner__category__content__table a {
        color: #616b75;
        font-weight: 400; }
      .gdpr-modal__category__content__table table,
      .gdpr-modal__category__content__table thead,
      .gdpr-modal__category__content__table tbody,
      .gdpr-modal__category__content__table th,
      .gdpr-modal__category__content__table td,
      .gdpr-modal__category__content__table tr,
      .gdpr-banner__category__content__table table,
      .gdpr-banner__category__content__table thead,
      .gdpr-banner__category__content__table tbody,
      .gdpr-banner__category__content__table th,
      .gdpr-banner__category__content__table td,
      .gdpr-banner__category__content__table tr {
        display: block; }
      .gdpr-modal__category__content__table table,
      .gdpr-banner__category__content__table table {
        border-spacing: 0;
        border-collapse: collapse; }
        .gdpr-modal__category__content__table table thead tr,
        .gdpr-banner__category__content__table table thead tr {
          display: none; }
          .gdpr-modal__category__content__table table thead tr th,
          .gdpr-banner__category__content__table table thead tr th {
            text-align: inherit;
            vertical-align: top;
            padding-bottom: 13px;
            font-size: 8px; }
            @media (min-width: 768px) {
              .gdpr-modal__category__content__table table thead tr th,
              .gdpr-banner__category__content__table table thead tr th {
                font-size: 11px;
                padding-bottom: 15px; } }
            .gdpr-modal__category__content__table table thead tr th:not(:first-child),
            .gdpr-banner__category__content__table table thead tr th:not(:first-child) {
              padding-right: 13px;
              padding-left: 13px; }
              @media (min-width: 768px) {
                .gdpr-modal__category__content__table table thead tr th:not(:first-child),
                .gdpr-banner__category__content__table table thead tr th:not(:first-child) {
                  padding-right: 15px;
                  padding-left: 15px; } }
            .gdpr-modal__category__content__table table thead tr th:first-child,
            .gdpr-banner__category__content__table table thead tr th:first-child {
              padding-right: 13px; }
              @media (min-width: 768px) {
                .gdpr-modal__category__content__table table thead tr th:first-child,
                .gdpr-banner__category__content__table table thead tr th:first-child {
                  padding-right: 15px; } }
            .gdpr-modal__category__content__table table thead tr th:last-child,
            .gdpr-banner__category__content__table table thead tr th:last-child {
              padding-left: 13px; }
              @media (min-width: 768px) {
                .gdpr-modal__category__content__table table thead tr th:last-child,
                .gdpr-banner__category__content__table table thead tr th:last-child {
                  padding-left: 15px; } }
        .gdpr-modal__category__content__table table tbody tr,
        .gdpr-banner__category__content__table table tbody tr {
          border-width: 2px 0 0 0  !important;
          border-style: solid  !important;
          border-color: #b6b6b6; }
          .gdpr-modal__category__content__table table tbody tr:not(:first-child),
          .gdpr-banner__category__content__table table tbody tr:not(:first-child) {
            margin-top: 10px;
            margin-bottom: 7px; }
          .gdpr-modal__category__content__table table tbody tr td,
          .gdpr-banner__category__content__table table tbody tr td {
            vertical-align: top;
            border: none;
            border-width: 0 0 1px 0 !important;
            border-style: solid  !important;
            border-color: #cfcfcf;
            position: relative;
            padding: 5px 0px 5px 20% !important;
            white-space: normal;
            text-align: left;
            font-size: 9px; }
            @media (min-width: 768px) {
              .gdpr-modal__category__content__table table tbody tr td,
              .gdpr-banner__category__content__table table tbody tr td {
                font-size: 11px; } }
            .gdpr-modal__category__content__table table tbody tr td:before,
            .gdpr-banner__category__content__table table tbody tr td:before {
              position: absolute;
              top: 5px;
              left: 0;
              width: 45%;
              padding-right: 1px;
              white-space: nowrap;
              text-align: left;
              font-weight: 500;
              content: attr(data-title); }

/*-----------------------------------------------------------------------------------*/
/* CATEGORY TRIGGER */
/*-----------------------------------------------------------------------------------*/
.gdpr-modal__category__trigger,
.gdpr-banner__category__trigger {
  width: auto;
  height: 29px;
  padding: 0px 8px !important;
  line-height: 28px;
  cursor: pointer;
  font-family: "Poppins", arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  -webkit-border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  -ms-border-radius: 2px !important;
  border-radius: 2px !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: visible;
  -webkit-appearance: button;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 50px;
  text-transform: none;
  color: #ffffff;
  background: #9c9c9c; }
  .gdpr-modal__category__trigger:hover, .gdpr-modal__category__trigger:focus,
  .gdpr-banner__category__trigger:hover,
  .gdpr-banner__category__trigger:focus {
    color: #ffffff;
    background: #363636; }

/*-----------------------------------------------------------------------------------*/
/* CATEGORY TOGGLE */
/*-----------------------------------------------------------------------------------*/
.gdpr-modal__toggle-option,
.gdpr-banner__toggle-option {
  position: relative;
  height: 29px;
  width: 70px;
  margin: 0 5px 0 0;
  display: inline-block;
  vertical-align: middle; }
  .gdpr-modal__toggle-option label,
  .gdpr-banner__toggle-option label {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important; }
    .gdpr-modal__toggle-option label:before, .gdpr-modal__toggle-option label:after,
    .gdpr-banner__toggle-option label:before,
    .gdpr-banner__toggle-option label:after {
      display: none !important; }
    .gdpr-modal__toggle-option label .gdpr-modal__toggle-option__switch,
    .gdpr-modal__toggle-option label .gdpr-banner__toggle-option__switch,
    .gdpr-banner__toggle-option label .gdpr-modal__toggle-option__switch,
    .gdpr-banner__toggle-option label .gdpr-banner__toggle-option__switch {
      position: relative;
      background: #ff5252;
      transition: background 0.3s cubic-bezier(0, 1, 0.5, 1);
      height: 29px;
      flex: 0 0 70px;
      border-radius: 2px !important; }
      .gdpr-modal__toggle-option label .gdpr-modal__toggle-option__switch:before,
      .gdpr-modal__toggle-option label .gdpr-banner__toggle-option__switch:before,
      .gdpr-banner__toggle-option label .gdpr-modal__toggle-option__switch:before,
      .gdpr-banner__toggle-option label .gdpr-banner__toggle-option__switch:before {
        content: attr(data-checked);
        position: absolute;
        top: 0;
        text-transform: uppercase;
        text-align: center;
        color: #ff5252;
        left: 35px;
        font-family: "Poppins", arial, sans-serif;
        font-size: 10px;
        font-weight: 500;
        line-height: 29px;
        width: 35px; }
      .gdpr-modal__toggle-option label .gdpr-modal__toggle-option__switch:after,
      .gdpr-modal__toggle-option label .gdpr-banner__toggle-option__switch:after,
      .gdpr-banner__toggle-option label .gdpr-modal__toggle-option__switch:after,
      .gdpr-banner__toggle-option label .gdpr-banner__toggle-option__switch:after {
        content: attr(data-unchecked);
        position: absolute;
        z-index: 5;
        background: #ffffff;
        text-transform: uppercase;
        text-align: center;
        color: #ff5252;
        top: 1px;
        left: 1px;
        width: 34px;
        font-family: "Poppins", arial, sans-serif;
        font-size: 10px;
        font-weight: 500;
        line-height: 27px;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1);
        -moz-transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1);
        -o-transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1);
        -ms-transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1);
        transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1); }
  .gdpr-modal__toggle-option input[type="checkbox"],
  .gdpr-banner__toggle-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0; }
    .gdpr-modal__toggle-option input[type="checkbox"][disabled] ~ label,
    .gdpr-banner__toggle-option input[type="checkbox"][disabled] ~ label {
      pointer-events: none;
      color: rgba(255, 82, 82, 0.5); }
      .gdpr-modal__toggle-option input[type="checkbox"][disabled] ~ label .gdpr-modal__toggle-option__switch,
      .gdpr-modal__toggle-option input[type="checkbox"][disabled] ~ label .gdpr-banner__toggle-option__switch,
      .gdpr-banner__toggle-option input[type="checkbox"][disabled] ~ label .gdpr-modal__toggle-option__switch,
      .gdpr-banner__toggle-option input[type="checkbox"][disabled] ~ label .gdpr-banner__toggle-option__switch {
        opacity: 0.4; }
        .gdpr-modal__toggle-option input[type="checkbox"][disabled] ~ label .gdpr-modal__toggle-option__switch:before,
        .gdpr-modal__toggle-option input[type="checkbox"][disabled] ~ label .gdpr-banner__toggle-option__switch:before,
        .gdpr-banner__toggle-option input[type="checkbox"][disabled] ~ label .gdpr-modal__toggle-option__switch:before,
        .gdpr-banner__toggle-option input[type="checkbox"][disabled] ~ label .gdpr-banner__toggle-option__switch:before {
          content: attr(data-unchecked);
          left: 0; }
    .gdpr-modal__toggle-option input[type="checkbox"]:checked ~ label .gdpr-modal__toggle-option__switch,
    .gdpr-modal__toggle-option input[type="checkbox"]:checked ~ label .gdpr-banner__toggle-option__switch,
    .gdpr-banner__toggle-option input[type="checkbox"]:checked ~ label .gdpr-modal__toggle-option__switch,
    .gdpr-banner__toggle-option input[type="checkbox"]:checked ~ label .gdpr-banner__toggle-option__switch {
      background-color: #5fc054; }
      .gdpr-modal__toggle-option input[type="checkbox"]:checked ~ label .gdpr-modal__toggle-option__switch:before,
      .gdpr-modal__toggle-option input[type="checkbox"]:checked ~ label .gdpr-banner__toggle-option__switch:before,
      .gdpr-banner__toggle-option input[type="checkbox"]:checked ~ label .gdpr-modal__toggle-option__switch:before,
      .gdpr-banner__toggle-option input[type="checkbox"]:checked ~ label .gdpr-banner__toggle-option__switch:before {
        content: attr(data-unchecked);
        left: 0;
        color: #5fc054; }
      .gdpr-modal__toggle-option input[type="checkbox"]:checked ~ label .gdpr-modal__toggle-option__switch:after,
      .gdpr-modal__toggle-option input[type="checkbox"]:checked ~ label .gdpr-banner__toggle-option__switch:after,
      .gdpr-banner__toggle-option input[type="checkbox"]:checked ~ label .gdpr-modal__toggle-option__switch:after,
      .gdpr-banner__toggle-option input[type="checkbox"]:checked ~ label .gdpr-banner__toggle-option__switch:after {
        content: attr(data-checked);
        color: #5fc054;
        -webkit-transform: translate3d(34px, 0, 0);
        -moz-transform: translate3d(34px, 0, 0);
        -o-transform: translate3d(34px, 0, 0);
        -ms-transform: translate3d(34px, 0, 0);
        transform: translate3d(34px, 0, 0); }

/*-----------------------------------------------------------------------------------*/
/* BANNER */
/*-----------------------------------------------------------------------------------*/
@keyframes slideUp {
  0% {
    transform: translateY(100%); }
  100% {
    transform: translateY(0); } }

.gdpr-banner {
  position: fixed;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999999999;
  outline: 0;
  background: #ffffff;
  width: 100%;
  font-family: "Poppins", arial, sans-serif;
  font-size: 9px;
  line-height: 1.6;
  font-weight: 400;
  color: #33383d;
  letter-spacing: 0.03em;
  text-align: left;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  display: none;
  visibility: hidden; }
  @media (min-width: 768px) {
    .gdpr-banner {
      font-size: 11px; } }
  .gdpr-banner--active {
    display: block;
    opacity: 1;
    visibility: visible;
    animation: 0.6s ease-out 0s 1 slideUp; }
  .gdpr-banner__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .gdpr-banner__categorisation {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    visibility: hidden;
    max-height: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-transition: max-height 0.8s ease-out, visibility 0.8s ease-out;
    -moz-transition: max-height 0.8s ease-out, visibility 0.8s ease-out;
    -o-transition: max-height 0.8s ease-out, visibility 0.8s ease-out;
    -ms-transition: max-height 0.8s ease-out, visibility 0.8s ease-out;
    transition: max-height 0.8s ease-out, visibility 0.8s ease-out; }
  .gdpr-banner--categorisation-open .gdpr-banner__categorisation {
    visibility: visible;
    max-height: 100vh;
    -webkit-transition: max-height 1.5s ease-out, visibility 1.5s ease-out;
    -moz-transition: max-height 1.5s ease-out, visibility 1.5s ease-out;
    -o-transition: max-height 1.5s ease-out, visibility 1.5s ease-out;
    -ms-transition: max-height 1.5s ease-out, visibility 1.5s ease-out;
    transition: max-height 1.5s ease-out, visibility 1.5s ease-out; }
  .gdpr-banner__content, .gdpr-banner__categorisation {
    padding: 0 20px; }
    .gdpr-banner__content__left, .gdpr-banner__categorisation__left {
      position: relative;
      width: 100%;
      min-height: 1px;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
      text-align: left; }
      @media (min-width: 768px) {
        .gdpr-banner__content__left, .gdpr-banner__categorisation__left {
          position: relative;
          width: 100%;
          min-height: 1px;
          -ms-flex: 0 0 66.666667%;
          flex: 0 0 66.666667%;
          max-width: 66.666667%; } }
    .gdpr-banner__content__right, .gdpr-banner__categorisation__right {
      position: relative;
      width: 100%;
      min-height: 1px;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
      @media (min-width: 768px) {
        .gdpr-banner__content__right, .gdpr-banner__categorisation__right {
          position: relative;
          width: 100%;
          min-height: 1px;
          flex-basis: 0;
          flex-grow: 1;
          max-width: 100%;
          text-align: right; } }
    .gdpr-banner__content__control, .gdpr-banner__categorisation__control {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .gdpr-banner__content__left {
    padding-top: 20px; }
    @media (min-width: 768px) {
      .gdpr-banner__content__left {
        padding-bottom: 20px; } }
    .gdpr-banner__content__left p {
      font-size: 12px !important;
      margin-top: 6px !important;
      margin-bottom: 0 !important; }
      @media (min-width: 768px) {
        .gdpr-banner__content__left p {
          font-size: 13px !important;
          margin-top: 9px !important;
          margin-bottom: 0 !important; } }
      .gdpr-banner__content__left p:first-child {
        margin-top: 0 !important; }
  .gdpr-banner__content__right {
    padding-top: 20px;
    padding-bottom: 20px; }
    @media (min-width: 768px) {
      .gdpr-banner__content__right {
        margin-left: 15px; } }
    @media (min-width: 992px) {
      .gdpr-banner__content__right {
        margin-left: 45px; } }
  @media (min-width: 768px) {
    .gdpr-banner__categorisation__left {
      padding-bottom: 20px; } }
  .gdpr-banner__categorisation__right {
    padding-top: 20px;
    padding-bottom: 20px; }
    @media (min-width: 768px) {
      .gdpr-banner__categorisation__right {
        padding-top: 0;
        margin-left: 15px; } }
    @media (min-width: 992px) {
      .gdpr-banner__categorisation__right {
        margin-left: 45px; } }
  .gdpr-banner__categorisation__container {
    padding: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #cfcfcf;
    max-height: 125px;
    overflow-y: scroll;
    /*IE*/
    /*Edge*/
    /*Firefox*/
    /*From version 64 - https://drafts.csswg.org/css-scrollbars-1/*/
    scrollbar-width: thin;
    scrollbar-color: #cfcfcf #ffffff;
    /*Chrome*/ }
    @media (min-width: 576px) {
      .gdpr-banner__categorisation__container {
        max-height: 250px;
        padding: 15px; } }
    @media (min-width: 768px) {
      .gdpr-banner__categorisation__container {
        max-height: 250px; } }
    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
      .gdpr-banner__categorisation__container {
        margin-right: -10px;
        padding-top: 32px;
        margin-top: -32px;
        margin-bottom: -32px;
        padding-bottom: 32px;
        /* ie scrollbar color properties */
        scrollbar-base-color: #ffffff;
        scrollbar-face-color: #cfcfcf;
        scrollbar-3dlight-color: #cfcfcf;
        scrollbar-highlight-color: #cfcfcf;
        scrollbar-track-color: #ffffff;
        scrollbar-arrow-color: #cfcfcf;
        scrollbar-shadow-color: #cfcfcf;
        scrollbar-dark-shadow-color: #cfcfcf; }
        .gdpr-banner__categorisation__container:after {
          content: "";
          height: 32px;
          display: block; } }
    @supports (-ms-ime-align: auto) {
      .gdpr-banner__categorisation__container {
        margin-right: -10px;
        padding-top: 16px;
        margin-top: -16px;
        margin-bottom: -16px;
        padding-bottom: 16px; }
        .gdpr-banner__categorisation__container:after {
          content: "";
          height: 16px;
          display: block; } }
    .gdpr-banner__categorisation__container ::-webkit-scrollbar-track {
      background-color: #ffffff;
      width: 3px; }
    .gdpr-banner__categorisation__container ::-webkit-scrollbar-thumb {
      background-color: #cfcfcf;
      border: 1px solid transparent;
      background-clip: content-box; }
    .gdpr-banner__categorisation__container ::-webkit-scrollbar {
      width: 7px; }
  .gdpr-banner__close {
    width: auto;
    height: 29px;
    padding: 0px 8px !important;
    line-height: 28px;
    cursor: pointer;
    font-family: "Poppins", arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.03em;
    border: 1px solid transparent;
    -webkit-border-radius: 2px !important;
    -moz-border-radius: 2px !important;
    -ms-border-radius: 2px !important;
    border-radius: 2px !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible;
    -webkit-appearance: button;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ffffff;
    background: #9c9c9c;
    border-color: #9c9c9c; }
    .gdpr-banner__close:hover, .gdpr-banner__close:focus {
      color: #ffffff;
      background: #363636;
      border-color: #363636; }
  .gdpr-banner__check {
    position: relative;
    width: 100%;
    min-height: 1px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: auto;
    height: 40px;
    padding: 0 10px !important;
    cursor: pointer;
    font-family: "Poppins", arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.03em;
    border: 1px solid transparent;
    border-radius: 2px !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible;
    -webkit-appearance: button;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #ffffff;
    background: #5c5c5c;
    border-color: #5c5c5c; }
    @media (min-width: 768px) {
      .gdpr-banner__check {
        height: 42px;
        font-size: 14px;
        padding: 0 12px; } }
    .gdpr-banner__check:hover, .gdpr-banner__check:focus {
      color: #ffffff;
      background: #363636;
      border-color: #363636; }
  .gdpr-banner__preference {
    position: relative;
    width: 100%;
    min-height: 1px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: auto;
    height: 40px;
    padding: 0 10px !important;
    cursor: pointer;
    font-family: "Poppins", arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.03em;
    border: 1px solid transparent;
    border-radius: 2px !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible;
    -webkit-appearance: button;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 4px;
    color: #ffffff;
    background: #5c5c5c;
    border-color: #5c5c5c; }
    @media (min-width: 768px) {
      .gdpr-banner__preference {
        height: 42px;
        font-size: 14px;
        padding: 0 12px; } }
    .gdpr-banner__preference:hover, .gdpr-banner__preference:focus {
      color: #ffffff;
      background: #363636;
      border-color: #363636; }
  .gdpr-banner__save {
    position: relative;
    width: 100%;
    min-height: 1px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: auto;
    height: 40px;
    padding: 0 10px !important;
    cursor: pointer;
    font-family: "Poppins", arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.03em;
    border: 1px solid transparent;
    border-radius: 2px !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible;
    -webkit-appearance: button;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #ffffff;
    background: #5fc054;
    border-color: #5fc054; }
    @media (min-width: 768px) {
      .gdpr-banner__save {
        height: 42px;
        font-size: 14px;
        padding: 0 12px; } }
    .gdpr-banner__save:hover, .gdpr-banner__save:focus {
      color: #ffffff;
      background: #363636;
      border-color: #363636; }
  .gdpr-banner__branding {
    font-size: 10px !important;
    display: inline-block;
    padding-top: 6px; }
    @media (min-width: 768px) {
      .gdpr-banner__branding {
        font-size: 11px !important;
        padding-top: 8px; } }
    .gdpr-banner__branding--sm {
      display: block;
      padding: 0 20px 20px; }
      @media (min-width: 768px) {
        .gdpr-banner__branding--sm {
          display: none; } }
    .gdpr-banner__branding--lg {
      display: none; }
      @media (min-width: 768px) {
        .gdpr-banner__branding--lg {
          display: block;
          margin-top: 12px; } }

/*DSAR CSS*/
.dsar-form label {
  width: 100% !important;
  display: inline-block !important;
  margin-bottom: .8rem !important;
  vertical-align: baseline !important;
  font-weight: 500 !important;
  font-size: 9px !important; }

@media (min-width: 768px) {
  .dsar-form label {
    margin-bottom: .5rem !important;
    font-size: 12px !important; } }

.dsar-input, .dsar-select {
  display: block !important;
  width: 100% !important;
  height: 30px !important;
  padding: .8rem .6rem !important;
  font-size: 9px !important;
  font-weight: 500 !important;
  color: black !important;
  background-color: #fefefe !important;
  border-width: .1rem !important;
  border-style: solid !important;
  border-color: #ced4da !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  border-radius: 0 !important;
  -webkit-transition: border-color .3s ease-in-out;
  -moz-transition: border-color .3s ease-in-out;
  -o-transition: border-color .3s ease-in-out;
  -ms-transition: border-color .3s ease-in-out;
  transition: border-color .3s ease-in-out; }

@media (min-width: 768px) {
  .dsar-input, .dsar-select {
    padding: .8rem .6rem !important;
    font-size: 11px !important; } }

.dsar-form .form-group {
  position: relative;
  margin-bottom: .6rem; }

.dsar-btn {
  margin-top: .5rem !important; }

.dsar-select {
  padding: .1rem .2rem !important; }

.gdpr-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999999999;
  width: 100%;
  height: 100%;
  background: rgba(54, 54, 54, 0.8);
  opacity: 0;
  outline: 0;
  display: none;
  overflow-x: hidden;
  overflow-y: auto; }

.gdpr-modal--active {
  display: block;
  opacity: 1; }

.gdpr-modal__content {
  display: block;
  background: #fff;
  position: relative;
  padding: 13px;
  width: 100%;
  max-width: 287px;
  margin: 20px auto;
  border-radius: 5px;
  font-family: "Poppins", arial, sans-serif;
  font-size: 8px;
  line-height: 1.6;
  font-weight: 400;
  color: #33383d;
  letter-spacing: 0.01rem;
  text-align: left; }

@media (min-width: 768px) {
  .gdpr-modal__content {
    max-width: 378px;
    margin: 50px auto;
    padding: 17px; } }

@media (min-width: 768px) {
  .gdpr-modal__content {
    font-size: 11px; } }

.gdpr-modal__content__title {
  font-size: 15px;
  font-weight: 500; }

@media (min-width: 768px) {
  .gdpr-modal__content__title {
    font-size: 16px; } }

@media (min-width: 992px) {
  .gdpr-modal__content__title {
    font-size: 18px; } }

.gdpr-modal__content__title img {
  display: inline-block;
  width: 19px !important;
  height: 19px !important;
  margin: -3px 3px 0 0;
  vertical-align: middle; }

@media (min-width: 768px) {
  .gdpr-modal__content__title img {
    width: 24px !important;
    height: 24px !important; } }

.gdpr-modal__content__intro {
  margin-top: 6px !important;
  font-size: 9px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.7; }

@media (min-width: 768px) {
  .gdpr-modal__content__intro {
    margin-top: 9px !important;
    font-size: 12px;
    margin-bottom: 15px; } }

.gdpr-modal__content__intro p {
  font-size: 9px;
  margin-top: 6px !important;
  margin-bottom: 0 !important; }

@media (min-width: 768px) {
  .gdpr-modal__content__intro p {
    font-size: 12px;
    margin-top: 9px !important;
    margin-bottom: 0 !important; } }

.gdpr-modal__check {
  position: relative;
  width: 100%;
  min-height: 1px;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  width: 20%;
  height: 32px;
  padding: 0 5px !important;
  cursor: pointer;
  font-family: "Poppins", arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02rem;
  text-align: center;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 2px !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: visible;
  -webkit-appearance: button;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  background: #9c9c9c;
  border-color: #9c9c9c; }

@media (min-width: 768px) {
  .gdpr-modal__check {
    height: 37px;
    font-size: 12px;
    padding: 0 12px; } }

.gdpr-modal__check:hover,
.gdpr-modal__check:focus {
  color: #fff;
  background: #363636;
  border-color: #363636; }

.row.flex.dsarflexrow {
  display: flex;
  margin-left: 0px; }

.invisible {
  visibility: hidden; }
