@charset "UTF-8";
/** 
 * version 2
 * @release development
*/
:root {
  --epp-color-primary: #333;
  --epp-color-secondary: #333;
  --epp-color-checkbox: #808080;
  --epp-color-primary-hover: #a1a1a1;
  --epp-color-secondary-hover: #ffffff;
  --epp-color-font: #000000;
  --epp-color-gray: #f2f2f2;
  --epp-color-light: #ffffff;
  --epp-color-warning: #a06363;
  --epp-color-success: #80e8a4;
  --epp-var-borderRadius: 0;
  --epp-var-borderRadius-hover: 0;
  --epp-font-family: Source Sans Pro;
  --epp-font-p-size: 14px;
  --epp-font-h-size: 22px;
}

.eprivacy-plugin {
  /* import scss */
  /** 
   * version 2
   * @release development
  */
  /* epp-round mixin erstellt einen runden div */
  /* flex center - if center: true; item is vertical centered  */
  /* tansition mixin */
  /** 
   * version 2
   * @release development
  */
  /* modal styling */
  /* change-cookie styling */
}
.eprivacy-plugin .eprivacy-media {
  position: relative;
}
.eprivacy-plugin .eprivacy-media .eprivacy-media-content {
  position: absolute;
  background: var(--epp-color-gray);
  padding: 20px;
}
.eprivacy-plugin .eprivacy-media .eprivacy-media-content h3 {
  font-size: var(--epp-font-h-size);
  font-weight: bold;
  margin-bottom: 20px;
}
.eprivacy-plugin .eprivacy-media .eprivacy-media-content p {
  font-size: var(--epp-font-p-size);
  margin-bottom: 20px;
}
.eprivacy-plugin .eprivacy-media .eprivacy-media-content p:last-of-type {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 12px;
}
.eprivacy-plugin .eprivacy-media .eprivacy-media-content .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}
.eprivacy-plugin .eprivacy-media .eprivacy-media-content .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.eprivacy-plugin .eprivacy-media .eprivacy-media-content .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--epp-color-warning);
  transition: 0.4s;
  border-radius: 30px;
}
.eprivacy-plugin .eprivacy-media .eprivacy-media-content .switch .slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.eprivacy-plugin .eprivacy-media .eprivacy-media-content .switch input:checked + .slider {
  background-color: var(--epp-color-checkbox);
}
.eprivacy-plugin .eprivacy-media .eprivacy-media-content .switch input:focus + .slider {
  box-shadow: 0 0 1px var(--epp-color-checkbox);
}
.eprivacy-plugin .eprivacy-media .eprivacy-media-content .switch input:checked + .slider:before {
  transform: translateX(26px);
}
@media screen and (max-width: 600px) {
  .eprivacy-plugin .eprivacy-media .eprivacy-media-content {
    width: 100% !important;
    height: auto !important;
  }
}
.eprivacy-plugin .epp-cookie-dataprivacy .eppcd-wrapper > h3 {
  margin-bottom: 10px;
}
.eprivacy-plugin .epp-cookie-dataprivacy .eppcd-wrapper > p {
  margin-bottom: 30px;
}
.eprivacy-plugin .epp-cookie-dataprivacy .eppcd-wrapper .eppcd-content .eppcd-content-row, .eprivacy-plugin .epp-cookie-dataprivacy .eppcd-wrapper .eppcd-content .eppcd-content-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.eprivacy-plugin .epp-cookie-dataprivacy .eppcd-wrapper .eppcd-content .eppcd-content-row > div.eppcd-row-col, .eprivacy-plugin .epp-cookie-dataprivacy .eppcd-wrapper .eppcd-content .eppcd-content-header > div.eppcd-row-col {
  flex: 1 0 21%;
  margin: 5px 0;
}
.eprivacy-plugin .epp-cookie-dataprivacy .eppcd-wrapper .eppcd-content .eppcd-content-header {
  margin-bottom: 5px;
}
.eprivacy-plugin .epp-cookie-dataprivacy .eppcd-wrapper .eppcd-content .eppcd-content-header .eppcd-row-col {
  font-weight: bold;
}
.eprivacy-plugin .epp-cookie-dataprivacy .eppcd-settings-btn {
  padding: 14px 0 16px 0;
  color: white;
  border-radius: var(--epp-var-borderRadius);
  width: 100%;
  transition: background-color 300ms ease-in-out, transform 200ms ease-in;
  background: var(--epp-color-primary);
  border-radius: 3px;
  height: 40px;
  padding-left: 23px;
  padding-right: 23px;
  font-size: 14px;
  letter-spacing: 0.28px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid transparent;
  transition: 0.3s;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 100;
  font-size: 14px;
  line-height: 10px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .eprivacy-plugin .epp-cookie-dataprivacy .eppcd-settings-btn:hover {
    background-color: var(--epp-color-primary-hover);
  }
}
.eprivacy-plugin .epp-cookie-dataprivacy .eppcd-settings-btn:focus {
  outline: none;
}
.eprivacy-plugin .epp-modal {
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  bottom: 0;
  z-index: 999;
}
.eprivacy-plugin .epp-modal[data-type=settings] {
  background: rgba(28, 28, 28, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  width: 100%;
  height: 100vh;
}
.eprivacy-plugin .epp-modal[data-type=settings] .epp-modal-cookielist,
.eprivacy-plugin .epp-modal[data-type=settings] .epp-modal-logo {
  display: none !important;
}
.eprivacy-plugin .epp-modal[data-type=settings] .epp-modal-backtostart {
  position: absolute;
  top: 0;
  right: 0;
  height: 20px;
  width: 20px;
  background-image: url(../images/corner-up-left.svg);
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.eprivacy-plugin .epp-modal ::-webkit-scrollbar {
  width: 4px;
}
.eprivacy-plugin .epp-modal ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.eprivacy-plugin .epp-modal ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #ccc;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.eprivacy-plugin .epp-modal ::-webkit-scrollbar-thumb:window-inactive {
  background: #ccc;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper-bg.show {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--epp-color-primary);
  z-index: 1;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper {
  padding: 30px 20px 20px;
  position: absolute;
  width: 80%;
  height: auto;
  max-height: 90vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--epp-color-light);
  border-radius: var(--epp-var-borderRadius);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  overflow: hidden;
  transition: transform 200ms ease-in;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-logo {
  height: 50px;
  margin-bottom: 15px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper[data-hidden=true] {
  right: 0;
  bottom: 0;
  left: auto;
  top: auto;
  transform: translate(0, 0);
  width: 100%;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper[data-hidden=false] .epp-modal-header {
  position: relative;
  margin-top: 10px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper[data-hidden=false] .epp-modal-header h3 {
  position: relative;
  padding-left: 0;
  margin-top: 0;
  height: 22px;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper::before {
  width: 100%;
  height: 8px;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: var(--epp-color-secondary);
  z-index: 9999;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  padding: 20px 20px 10px;
  text-align: center;
  z-index: 999;
  height: auto;
  min-height: 100%;
  z-index: 999;
  width: 100%;
  height: 450px;
  background: var(--epp-color-light);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll {
  height: 380px;
  overflow-y: scroll;
  margin-top: 40px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll::-webkit-scrollbar {
  width: 4px;
  display: none;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  border-radius: 10px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #ccc;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll::-webkit-scrollbar-thumb:window-inactive {
  background: transparent;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll .epp-cookie-content {
  border-radius: var(--epp-var-borderRadius);
  padding: 20px;
  margin-bottom: 10px;
  background: var(--epp-color-light);
  border-bottom: 1px solid var(--epp-color-font);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll .epp-cookie-content:last-of-type {
  border-bottom: 0;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll .epp-cookie-content span,
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll .epp-cookie-content p {
  color: var(--epp-color-font);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll .epp-cookie-content span {
  font-family: var(--epp-font-family), sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll .epp-cookie-content p {
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 100;
  font-size: 16px;
  line-height: 22px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll .epp-cookie-content p:last-of-type {
  margin-bottom: 0;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-exit {
  cursor: pointer;
  display: flex;
  position: fixed;
  color: var(--epp-color-font);
  border-radius: var(--epp-var-borderRadius);
  padding: 7px;
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  z-index: 222;
  padding-left: 30px;
  transition: 0.3s;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-exit::after {
  position: absolute;
  top: 50%;
  left: 0;
  height: 18px;
  width: 18px;
  border-radius: 18px;
  background-image: url(../images/button-minus.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 22px;
  transform: translate(0, -50%);
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 400ms ease-in;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-exit:hover {
  transform: translateY(3px);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-lvlname {
  display: none;
  width: 30px;
  position: fixed;
  top: 4px;
  left: 0;
  line-height: 30px;
  text-transform: capitalize;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 0;
  height: 30px;
  padding: 0;
  line-height: 30px;
  top: 70px;
  left: 30px;
  border-radius: 10px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-lvlname::first-letter {
  visibility: visible;
  color: var(--epp-color-secondary);
  font-size: 14px;
  font-weight: bold;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-header {
  display: flex;
  margin-bottom: 15px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-header h3 {
  margin: 0;
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 600;
  font-size: var(--epp-font-h-size);
  line-height: 1;
  color: var(--epp-color-font);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-header::before {
  content: "";
  display: none;
  position: absolute;
  height: 40px;
  width: 40px;
  border-radius: 40px;
  background: var(--epp-color-primary); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, var(--epp-color-primary), var(--epp-color-secondary)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  top: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #e8e8e8;
  font-size: 26px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-description p {
  margin: 0;
  margin-bottom: 20px;
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 300;
  font-size: var(--epp-font-p-size);
  line-height: 20px;
  color: var(--epp-color-font);
  letter-spacing: 0px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content {
  margin-bottom: 24px;
  max-height: 500px;
  transition: max-height 400ms ease-in;
  border-bottom: 1px solidvar(--epp-color-font);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-wrapper.ico-epp-show .epp-content-checkbox .epp-content-toggle .epp-cookie-desc-toggle {
  background-image: url(../images/close.svg);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: rgba(var(--epp-color-gray), 0.5);
  padding: 11px;
  border-radius: var(--epp-var-borderRadius);
  max-width: auto;
  border-top: 1px solid var(--epp-color-font);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox:first-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  right: 10px;
  margin: 0;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label input {
  opacity: 0;
  width: 0;
  height: 0;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label .epp-checkbox-checkmark {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--epp-color-checkbox);
  transition: 0.4s;
  border-radius: 30px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label .epp-checkbox-checkmark:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label input:checked + .epp-checkbox-checkmark {
  background-color: var(--epp-color-success);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label input:disabled + .epp-checkbox-checkmark {
  background-color: var(--epp-color-success);
  opacity: 0.3;
  cursor: default;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label input:focus + .epp-checkbox-checkmark {
  box-shadow: 0 0 1px var(--epp-color-checkbox);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label input:checked + .epp-checkbox-checkmark:before {
  transform: translateX(21px);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox .epp-content-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox .epp-content-toggle.test {
  background: yellow;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox .epp-content-toggle p {
  margin: 0;
  text-transform: capitalize;
  float: left;
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--epp-color-font);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox .epp-content-toggle.epp-show-icon .epp-cookie-desc-toggle {
  background-image: url(../images/close.svg);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox .epp-content-toggle .epp-cookie-desc-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 24px;
  top: 0;
  background-image: url(../images/open.svg);
  background-repeat: no-repeat;
  float: right;
  cursor: pointer;
  transition: 0.3s;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  background-size: 20px;
  background-position: center center;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox .epp-content-toggle .epp-cookie-desc-toggle.epp-show-icon {
  background-image: url(../images/close.svg);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox .epp-content-toggle .epp-cookie-desc-toggle:hover {
  transform: translateY(3px);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox .epp-content-toggle .epp-toggle-up.epp-cookie-desc-toggle::after {
  content: "\f077";
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc {
  background-color: rgba(var(--epp-color-gray), 0.1);
  border-radius: var(--epp-var-borderRadius);
  font-size: 14px;
  z-index: 3;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc > p:first-of-type {
  padding: 11px;
  margin: 0;
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 400;
  font-size: var(--epp-font-p-size);
  line-height: 20px;
  color: var(--epp-color-font);
  padding-top: 3px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc .epp-cookie-details {
  position: relative;
  min-height: 30px;
  bottom: 5px;
  border-radius: var(--epp-var-borderRadius);
  color: #e8e8e8;
  text-align: center;
  cursor: pointer;
  padding: 0px 10px;
  border: none;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc .epp-cookie-details .epp-cookie-detail-content {
  margin-top: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 211px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc .epp-cookie-details .epp-cookie-content {
  margin-bottom: 10px;
  background-color: #00579e;
  border-radius: var(--epp-var-borderRadius);
  padding: 10px 10px 1px 10px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc .epp-cookie-details .epp-cookie-content span {
  color: var(--epp-color-light);
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 100;
  font-size: 16px;
  line-height: 22px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc .epp-cookie-details .epp-cookie-content p {
  margin: 0;
  margin-bottom: 10px;
  color: var(--epp-color-light);
  font-family: var(--epp-font-family), sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc .epp-cookie-details .epp-cookie-content:last-of-type {
  margin-bottom: 0;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc .epp-cookie-details .epp-detail-titel {
  margin-top: 3px;
  display: block;
  position: relative;
  color: var(--epp-color-font);
  border-radius: var(--epp-var-borderRadius);
  padding: 7px;
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 300;
  font-size: var(--epp-font-p-size);
  line-height: 16px;
  text-align: left;
  padding-left: 26px;
  transition: all 500ms ease;
  transition: 0.3s;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc .epp-cookie-details .epp-detail-titel:hover {
  transform: translateX(3px);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc .epp-cookie-details .epp-detail-titel:hover::before {
  transform: translateX(-3px);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc .epp-cookie-details .epp-detail-titel::before {
  content: "";
  height: 18px;
  width: 18px;
  border-radius: 18px;
  background-image: url(../images/button-plus.svg);
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  background-size: 18px;
  top: 6px;
  transition: all 500ms ease;
  transition: 0.3s;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc.epp-show {
  opacity: 1 !important;
  display: block !important;
  transition: opacity 0.4s ease;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content[data-hidden=true] {
  max-height: 0;
  transition: max-height 0.15s ease-out;
  overflow: hidden;
  margin: 0;
  border-bottom: none;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-cookielist {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-cookielist ul {
  display: flex;
  padding: 0;
  list-style: none;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-cookielist ul li {
  display: flex;
  align-items: center;
  margin-right: 10px;
  font-size: var(--epp-font-p-size);
  color: var(--epp-color-font);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-cookielist ul li:last-of-type {
  margin-right: 0;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-cookielist ul li::before {
  content: "";
  display: block;
  height: 6px;
  width: 6px;
  border-radius: 6px;
  background-color: var(--epp-color-primary);
  margin-right: 10px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  justify-content: center;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button {
  margin-bottom: 10px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button:last-of-type {
  margin-bottom: 0;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button.epp-button {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: none;
  color: #e8e8e8;
  border-radius: var(--epp-var-borderRadius);
  text-align: center;
  padding: 14px 0 16px 0;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button.epp-button:focus {
  outline: none;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button.epp-button.epp-primary {
  color: white;
  width: 100%;
  transition: background-color 300ms ease-in-out, transform 200ms ease-in;
  background: var(--epp-color-primary);
  border-radius: 3px;
  height: 40px;
  padding-left: 23px;
  padding-right: 23px;
  font-size: 14px;
  letter-spacing: 0.28px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid transparent;
  transition: 0.3s;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 100;
  font-size: 14px;
  line-height: 10px;
}
@media screen and (min-width: 768px) {
  .eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button.epp-button.epp-primary:hover {
    background-color: var(--epp-color-primary-hover);
  }
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button.epp-button.epp-secondary {
  width: 100%;
  transition: background-color 300ms ease-in-out, transform 200ms ease-in;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid var(--epp-color-secondary);
  background: transparent;
  border-radius: 3px;
  height: 40px;
  padding-left: 23px;
  padding-right: 23px;
  font-size: 14px;
  letter-spacing: 0.28px;
  color: var(--epp-color-secondary);
  transition: 0.3s;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  opacity: 1;
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 100;
  font-size: 14px;
  line-height: 10px;
}
@media screen and (min-width: 768px) {
  .eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button.epp-button.epp-secondary:hover {
    background: var(--epp-color-secondary);
    color: #ffffff;
  }
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-info {
  display: flex;
  justify-content: center;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-info a {
  text-decoration: none;
  color: var(--epp-color-primary);
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 100;
  font-size: var(--epp-font-p-size);
  line-height: 1;
  margin: 0 5px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-info a:nth-of-type(2)::before {
  content: "|";
  display: inline-block;
  margin: 0 5px 0 -5px;
}
@media screen and (min-width: 425px) {
  .eprivacy-plugin .epp-modal .epp-modal-wrapper {
    max-width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .eprivacy-plugin .epp-modal .epp-modal-wrapper {
    max-width: 400px;
  }
}
@media screen and (min-width: 992px) {
  .eprivacy-plugin .epp-modal .epp-modal-wrapper {
    max-height: 100vh;
    overflow-y: visible;
    width: 80%;
  }
}
.eprivacy-plugin .epp-modal h3 {
  font-weight: 400;
}
.eprivacy-plugin .epp-modal p {
  color: rgba(var(--epp-color-font), 0.7);
}
@media screen and (max-width: 500px) {
  .eprivacy-plugin .epp-modal .epp-modal-description p {
    text-align: left;
  }
  .eprivacy-plugin .epp-modal .epp-content-cookie-desc p {
    text-align: left;
  }
  .eprivacy-plugin .epp-modal .epp-content-toggle p {
    position: relative;
    left: 10%;
    transform: translate(calc(-10% - 15px));
  }
}
.eprivacy-plugin .epp-cookie {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  position: fixed;
  right: -100px;
  width: auto;
  z-index: 999;
  height: 50px;
}
.eprivacy-plugin .epp-cookie.epp-cookie-left {
  left: -100px;
  right: auto;
  flex-direction: row;
}
.eprivacy-plugin .epp-cookie.epp-cookie-left .epp-cookie-wrapper {
  flex-direction: row-reverse;
  margin-right: 0;
  margin-left: 5px;
  padding-right: 10px;
  padding: 5px;
}
.eprivacy-plugin .epp-cookie.epp-cookie-left .epp-cookie-wrapper .epp-btn-group::before {
  display: none !important;
}
.eprivacy-plugin .epp-cookie.epp-cookie-left .epp-cookie-wrapper .epp-btn-group::after {
  content: "";
  display: none;
  position: relative;
  height: 20px;
  width: 2px;
  background-color: #ece9e6;
  margin-right: 10px;
  margin-top: 10px;
}
.eprivacy-plugin .epp-cookie.epp-cookie-left .epp-cookie-wrapper .epp-btn-group .epp-cookie-button {
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 400px) {
  .eprivacy-plugin .epp-cookie.epp-cookie-left .epp-cookie-wrapper {
    padding-right: 20px;
  }
  .eprivacy-plugin .epp-cookie.epp-cookie-left .epp-cookie-wrapper .epp-btn-group::after {
    display: block;
  }
  .eprivacy-plugin .epp-cookie.epp-cookie-left .epp-cookie-wrapper .epp-btn-group .epp-cookie-button {
    margin-right: 10px;
  }
}
.eprivacy-plugin .epp-cookie .epp-cookie-icon {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--epp-var-borderRadius);
  height: 48px;
  width: 48px;
  background-color: var(--epp-color-primary);
  transition: all 500ms ease-in-out;
}
.eprivacy-plugin .epp-cookie .epp-cookie-icon::before {
  color: white !important;
}
.eprivacy-plugin .epp-cookie .epp-cookie-icon::before {
  content: "";
  position: absolute;
  font-weight: 900;
  font-size: 24px;
  background-image: url(../images/toggle.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
  width: 20px;
  height: 20px;
}
.eprivacy-plugin .epp-cookie .epp-cookie-icon.hovered {
  border-radius: 5px;
}
@media screen and (min-width: 500px) {
  .eprivacy-plugin .epp-cookie .epp-cookie-icon:hover {
    border-radius: 5px;
  }
}
.eprivacy-plugin .epp-cookie .epp-cookie-wrapper {
  position: relative;
  width: auto;
  max-width: 300px;
  height: 48px;
  background-color: var(--epp-color-light);
  border-radius: var(--epp-var-borderRadius);
  margin-right: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px;
  padding-left: 10px;
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
}
.eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-cookie-text {
  display: none;
  position: relative;
  width: 100%;
  margin-left: 5px;
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 100;
  font-size: 14px;
  line-height: 1;
  padding-top: 0;
}
.eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-cookie-text p {
  margin: 0;
  opacity: 1;
  font-size: 12px;
  color: var(--epp-color-font);
  line-height: 1;
}
.eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-cookie-text::after {
  display: none;
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background: #eaeaea;
  top: 0;
  right: -3px;
}
.eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-btn-group {
  display: flex;
}
.eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-btn-group .epp-cookie-button {
  display: flex !important;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 12px 15px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border-radius: var(--epp-var-borderRadius);
  margin-left: 0;
  background: var(--epp-color-gray);
  border-radius: 3px;
}
.eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-btn-group .epp-cookie-button:focus {
  outline: none;
}
.eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-btn-group .epp-cookie-button:hover::after {
  color: #e8e8e8;
}
.eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-btn-group .epp-cookie-button::after {
  content: "";
  position: absolute;
  transition: all 500ms ease;
  background-image: url(../images/gear.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
  width: 20px;
  height: 20px;
  opacity: 0.4;
}
.eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-btn-group::before {
  display: none;
  content: "";
  position: relative;
  height: 20px;
  width: 2px;
  background-color: #eaeaea;
  margin-left: 10px;
  margin-top: 10px;
}
.eprivacy-plugin .epp-cookie h3 {
  font-weight: 400;
}
.eprivacy-plugin .epp-cookie p {
  color: rgba(var(--epp-color-font), 0.7);
}
@media screen and (min-width: 400px) {
  .eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-cookie-text {
    display: block;
  }
  .eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-btn-group::before {
    display: block;
  }
  .eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-btn-group .epp-cookie-button {
    margin-left: 10px;
  }
}
@media screen and (min-width: 568px) {
  .eprivacy-plugin .epp-cookie .epp-cookie-wrapper {
    max-width: 500px;
  }
}
@media screen and (min-width: 768px) {
  .eprivacy-plugin .epp-cookie .epp-cookie-wrapper {
    max-width: 600px;
  }
  .eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-cookie-text p {
    font-size: 14px;
  }
}
.eprivacy-plugin .eprivacy-settings-btn {
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  padding: 0.7em 1em;
  text-decoration: none;
  transition: background-color 300ms ease-in-out;
  border-radius: var(--epp-var-borderRadius);
  background-color: var(--epp-color-primary);
  color: #e8e8e8;
  border: none;
  cursor: pointer;
}
.eprivacy-plugin .eprivacy-settings-btn:hover {
  background-color: rgba(var(--epp-color-primary), 0.7);
}
.eprivacy-plugin .eprivacy-settings-btn:focus {
  outline: none;
  border: none;
}
.eprivacy-plugin .epp-consent {
  display: flex;
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%);
  padding: 20px 20px;
  background: var(--epp-color-primary) url("/img/wave.png");
  background-image: url("/img/wave.png"), linear-gradient(to left, var(--epp-color-primary), var(--epp-color-secondary));
  width: 100%;
  border-radius: 10px 10px 0 0;
  bottom: 0;
}
.eprivacy-plugin .epp-consent .epp-consent-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.eprivacy-plugin .epp-consent .epp-consent-content .epp-consent-disclaimer {
  font-size: 16px;
  color: #e8e8e8;
  width: 100%;
  margin-bottom: 20px;
}
.eprivacy-plugin .epp-consent .epp-consent-content .epp-consent-disclaimer p {
  top: 50%;
  position: relative;
  transform: translate(0, -50%);
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
.eprivacy-plugin .epp-consent .epp-consent-content .epp-consent-button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.eprivacy-plugin .epp-consent .epp-consent-content .epp-consent-button button {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
}
.eprivacy-plugin .epp-consent .epp-consent-content .epp-consent-button button.epp-button {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 40px;
  border: none;
  color: #e8e8e8;
  font-size: 16px;
  border-radius: var(--epp-var-borderRadius);
  text-align: center;
}
.eprivacy-plugin .epp-consent .epp-consent-content .epp-consent-button button.epp-button:focus {
  outline: none;
}
.eprivacy-plugin .epp-consent .epp-consent-content .epp-consent-button button.epp-button.epp-btn-consent {
  justify-content: center;
  background: white;
  background: linear-gradient(to right, white, white);
  transition: border-radius 0.4s ease-in-out;
  z-index: 100;
  left: 0px;
  padding: 0;
  height: 40px !important;
  padding: 0;
  width: 180px;
  color: var(--epp-color-secondary);
}
.eprivacy-plugin .epp-consent .epp-consent-content .epp-consent-button button.epp-button.epp-btn-consent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background: white;
  background: linear-gradient(to left, white, white);
  transition: opacity 0.6s ease;
  z-index: -100;
}
.eprivacy-plugin .epp-consent .epp-consent-content .epp-consent-button button.epp-button.epp-btn-consent:hover {
  border-radius: var(--epp-var-borderRadius) -hover;
}
.eprivacy-plugin .epp-consent .epp-consent-content .epp-consent-button button.epp-button.epp-btn-consent:hover::before {
  opacity: 1;
}
.eprivacy-plugin .epp-consent .epp-consent-content .epp-consent-button button.epp-button.epp-settings {
  margin-left: 20px;
  height: 40px;
  width: 40px;
  background-color: #e8e8e8;
}
.eprivacy-plugin .epp-consent .epp-consent-content .epp-consent-button button.epp-button.epp-settings i {
  color: var(--epp-color-secondary);
  transition: all 400ms ease-in;
}
.eprivacy-plugin .epp-consent .epp-consent-content .epp-consent-button button.epp-button.epp-settings:hover i {
  transform: rotate(90deg);
}
@media screen and (min-width: 992px) {
  .eprivacy-plugin .epp-consent {
    max-width: 992px;
    bottom: 30px;
    border-radius: var(--epp-var-borderRadius);
  }
  .eprivacy-plugin .epp-consent .epp-consent-content {
    flex-direction: row;
  }
  .eprivacy-plugin .epp-consent .epp-consent-content .epp-consent-disclaimer {
    width: 73%;
    margin-bottom: 0;
  }
  .eprivacy-plugin .epp-consent .epp-consent-content .epp-consent-button {
    width: 25%;
  }
}

.eprivacy-plugin-layout-full, .eprivacy-plugin--full .epp-modal .epp-modal-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 95vw;
  transform: translate(-50%, 0) !important;
  left: 50% !important;
  bottom: 30px !important;
  padding: 45px 45px 30px;
}
.eprivacy-plugin-layout-full .epp-modal-col, .eprivacy-plugin--full .epp-modal .epp-modal-wrapper .epp-modal-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(70% - 65px);
  margin-right: 65px;
}
.eprivacy-plugin-layout-full .epp-modal-logo, .eprivacy-plugin--full .epp-modal .epp-modal-wrapper .epp-modal-logo {
  height: 50px;
  margin-bottom: 5px;
  object-fit: contain;
  display: flex;
  align-self: flex-start;
}
.eprivacy-plugin-layout-full .epp-modal-buttons, .eprivacy-plugin--full .epp-modal .epp-modal-wrapper .epp-modal-buttons {
  display: flex;
  flex-direction: column;
  width: 30%;
  margin-bottom: 0;
}
.eprivacy-plugin-layout-full .epp-modal-buttons button, .eprivacy-plugin--full .epp-modal .epp-modal-wrapper .epp-modal-buttons button {
  margin: 0 !important;
  margin-bottom: 15px !important;
}
.eprivacy-plugin-layout-full .epp-modal-buttons button:last-of-type, .eprivacy-plugin--full .epp-modal .epp-modal-wrapper .epp-modal-buttons button:last-of-type {
  margin-bottom: 0 !important;
}
.eprivacy-plugin-layout-full .epp-modal-info, .eprivacy-plugin--full .epp-modal .epp-modal-wrapper .epp-modal-info {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .eprivacy-plugin-layout-full, .eprivacy-plugin--full .epp-modal .epp-modal-wrapper {
    max-width: 100%;
    bottom: 0 !important;
    padding: 30px 20px 20px;
  }
  .eprivacy-plugin-layout-full .epp-modal-col, .eprivacy-plugin--full .epp-modal .epp-modal-wrapper .epp-modal-col,
  .eprivacy-plugin-layout-full .epp-modal-buttons,
  .eprivacy-plugin--full .epp-modal .epp-modal-wrapper .epp-modal-buttons {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .eprivacy-plugin-layout-full .epp-modal-buttons, .eprivacy-plugin--full .epp-modal .epp-modal-wrapper .epp-modal-buttons {
    margin-bottom: 15px;
  }
}

.eprivacy-plugin--full .epp-modal[data-type=settings] .epp-modal-wrapper {
  max-width: 600px !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  top: 50% !important;
}
.eprivacy-plugin--full .epp-modal[data-type=settings] .epp-modal-wrapper .epp-modal-col {
  width: 100%;
  margin-right: 0;
}
.eprivacy-plugin--full .epp-modal[data-type=settings] .epp-modal-wrapper .epp-modal-logo {
  display: none;
}
.eprivacy-plugin--full .epp-modal[data-type=settings] .epp-modal-wrapper .epp-modal-buttons {
  width: 100%;
  margin-bottom: 30px;
}
.eprivacy-plugin--full .epp-modal[data-type=settings] .epp-modal-wrapper .epp-modal-buttons .epp-modal-cookielist {
  display: none;
}
.eprivacy-plugin--centered .epp-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  height: 100vh;
  background: rgba(28, 28, 28, 0.7);
  /*
  * Style für Kunden
  */
}
.eprivacy-plugin--centered .epp-modal[data-type=default] .epp-modal-wrapper {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  min-height: max-content;
}

/*# sourceMappingURL=eprivacy.css.map */
