/*
 * Copyright (c) 2021-2026 Flerosoft (https://flerosoft.com)
 * Software Name: Cookie Notice Pro - jQuery Plugin
 * Product Page : https://cookienoticepro.flerosoft.com
 * Documentation: https://cookienoticepro.flerosoft.com/docs
 * Description: Cookie Notice Pro, a lightweight jQuery plugin, helps you to comply with GDPR.
Make your own cookie information popup in minutes.
 */

/*********************** Cookie Dialog ***********************/
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/font-google/poppins-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --cookieNoticeProLight: #ffffff;
  --cookieNoticeProDark: #393d4d;
}

@keyframes cookieNoticeProZoomIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes cookieNoticeProZoomOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
  }
}

#cookieNoticePro * {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  font-family: 'Poppins', sans-serif; /* arak.com.pl / Change Font */
  /* font-family: inherit; */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 0px; /* arak.com.pl / Abstand CheckBox / Neu */
}
#cookieNoticePro button,
#cookieNoticePro a {
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}
#cookieNoticePro button {
  border: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
#cookieNoticePro strong,
#cookieNoticePro em {
  font-weight: bold;
  font-family: inherit;
}
#cookieNoticePro a:hover {
  text-decoration: none;
  cursor: pointer;
}
#cookieNoticePro a:focus-visible,
#cookieNoticePro button:focus-visible,
#cookieNoticePro input:focus-visible,
#cookieNoticePro [role='button']:focus-visible {
  outline: 2px solid var(--cnp-focus-ring, currentColor);
  outline-offset: 2px;
}

#cookieNoticePro.light {
  background-color: #ffffff;
  background-color: var(--cookieNoticeProLight);
  color: #393d4d;
  color: var(--cookieNoticeProDark);
  --cnp-focus-ring: var(--cookieNoticeProDark);
}

#cookieNoticePro.light p,
#cookieNoticePro.light ul {
  color: #393d4d;
  color: var(--cookieNoticeProDark);
}

#cookieNoticePro.light h5 {
  color: var(--cookieNoticeProDark);
}

#cookieNoticePro.dark {
  background-color: #393d4d;
  background-color: var(--cookieNoticeProDark);
  color: #ffffff;
  color: var(--cookieNoticeProLight);
  --cnp-focus-ring: var(--cookieNoticeProLight);
}
#cookieNoticePro.dark p,
#cookieNoticePro.dark ul {
  color: #ffffff;
  color: var(--cookieNoticeProLight);
}

#cookieNoticePro.dark h5 {
  color: #ffffff;
  color: var(--cookieNoticeProLight);
}

#cookieNoticePro {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  padding: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
  /* -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25); /* arak.com.pl */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25); /* arak.com.pl */
  /* box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25); */
  font-family: inherit;
  z-index: 100; /* z-index: 999997; * arak.com.pl */
}

#cookieNoticePro #closeIcon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: #bfb9b9;
  overflow: hidden;
  opacity: 0.85;
  z-index: 999999;
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 0;
  background: transparent;
  border: none;
}

#cookieNoticePro #closeIcon svg {
  width: 100%;
  height: 100%;
}

#cookieNoticePro svg {
  display: block;
}

#cookieNoticePro.display-left {
  left: 30px;
  bottom: 30px;
  max-width: 395px;
}

#cookieNoticePro.display-right {
  right: 30px;
  bottom: 18px; /* arak.com.pl / Abstand unten */
  /* bottom: 30px; /* arak.com.pl / Abstand unten */
  max-width: 395px;
}

#cookieNoticePro.display-top {
  top: 30px;
  width: 800px;
  left: 50%;
  margin-left: -400px;
}

#cookieNoticePro.display-bottom {
  bottom: 30px;
  width: 800px;
  left: 50%;
  margin-left: -400px;
}

#cookieNoticePro.display-top .content-wrap,
#cookieNoticePro.display-bottom .content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center !important;  /* arak.com.pl */
  -ms-flex-align: center !important;  /* arak.com.pl */
  align-items: center !important; /* arak.com.pl */
}

#cookieNoticePro.display-top .msg-wrap,
#cookieNoticePro.display-bottom .msg-wrap {
  max-width: 65%;
  width: 100%;
}

#cookieNoticePro.display-top .msg-wrap,
#cookieNoticePro.display-bottom .msg-wrap {
  margin-bottom: 0;
}

#cookieNoticePro.display-top #cookieSettings,
#cookieNoticePro.display-bottom #cookieSettings {
  margin-bottom: 0;
}

#cookieNoticePro.display-top #cookieTypes,
#cookieNoticePro.display-bottom #cookieTypes {
  margin-top: 20px;
}

#cookieNoticePro .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  font-weight: bold;
  -webkit-box-pack: center !important;  /* arak.com.pl */
  -ms-flex-pack: center !important;  /* arak.com.pl */
  justify-content: center !important;  /* arak.com.pl */
  margin: 0 -5px 0 -5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px; /* arak.com.pl / Neu */
}
#cookieNoticePro .btn-wrap button {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 7px;
  /* margin: -22px 5px 10px 5px; / arak.cok.pl */
  margin: 10px 5px 10px 5px; /* margin: 0 5px 10px 5px; / arak.cok.pl */
  border-radius: 10px !important; /* border-radius: 20px; arak.cok.pl */
  cursor: pointer;
  white-space: nowrap;
  min-width: 130px;
  line-height: 36px;
  border: none;
  height: 3em; /* arak.com.pl / Neu */
  font-family: inherit;
  text-align: center !important; /* arak.com.pl / Neu */
  font-size: 14px; /* font-size: 16px; / arak.com.pl */
  height: 38px; /* arak.com.pl / Neu */
  font-weight: 900; /* arak.com.pl / Textstyle / Neu */
  text-transform: none; /* arak.com.pl / Textstyle / Neu */
  letter-spacing: 0.1rem; /* arak.com.pl / Textabstand / Neu */
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
#cookieNoticePro .btn-wrap button:hover {
  -webkit-transition: -webkit-box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -o-transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    -webkit-box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  -webkit-transform: translate3d(0, -1px, 0);
  transform: translate3d(0, -1px, 0);
}

#cookieNoticePro #cookieSettings {
  font-size: 12px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important; /* arak.com.pl */
  -ms-flex-align: center !important;  /* arak.com.pl */
  align-items: center !important;  /* arak.com.pl */
  text-transform: uppercase;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 20px;
  padding: 0;
  background: transparent;
  color: #ffffff !important; /* arak.com.pl / color: inherit; */
}
#cookieNoticePro #cookieSettings svg {
  vertical-align: middle;
  margin-right: 8px;
  margin-top: 0px; /* arak.com.pl / Abstand CheckBox Neu */
}

#cookieNoticePro h4 {
  font-family: inherit;
  font-weight: bold;
  font-size: 18px;
  color: #FFFFFF !important; /* arak.com.pl / Titel / Neu */
  letter-spacing: .1em; /* arak.com.pl / Titel Neu */  
}

#cookieNoticePro .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important; /* arak.com.pl */
  -ms-flex-align: center !important; /* arak.com.pl */
  align-items: center !important; /* arak.com.pl */
  margin-bottom: 10px;
}

#cookieNoticePro .title-wrap svg {
  margin-right: 10px;
}

#cookieNoticePro h5 {
  font-family: inherit;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
#cookieNoticePro p,
#cookieNoticePro ul {
  font-size: 14px;
  margin-bottom: 0px; /* arak.com.pl / margin-bottom: 20px; / Neu */ 
  line-height: 1.56em; /* arak.com.pl / Textabstand / Neu */
}
#cookieNoticePro p:last-child {
  margin-bottom: 0;
  text-align: left;
}
#cookieNoticePro li {
  width: 49%;
  display: inline-block;
  margin-top: 4px; /* arak.com.pl / Textabstand / Neu */
}
#cookieNoticePro a {
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 2px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.75);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

#cookieTypes label {
  text-transform: uppercase;
  font-size: 13px;
  color: #ffffff; /* arak.com.pl / Farbe Text / Neu */
}

#cookieNoticePro button:disabled {
  opacity: 0.3;
}
#cookieNoticePro input[type='checkbox'] {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  width: 10px !important; /* width: 14px; / arak.com.pl / Neu */
  height: 10px !important; /*height: 14px; / arak.com.pl / Neu */
  margin: 4px 10px 0px 0px;
  display: block;
  float: left;
  position: relative;
  border: none;
}

/*********************** Part aus main.css / arak.com.pl ***********************/

#cookieNoticePro input[type="checkbox"] + label:before,
      input[type="radio"] + label:before {
        border-radius: 5px;
        border: solid 1px;
        content: '';
        display: inline-block;
        height: 1.0rem;
        left: 0;
        line-height: 1.025rem;
        position: absolute;
        text-align: center;
        top: 0;
        width: 1.0rem;
}

#cookieNoticePro input[type="checkbox"]:checked + label:before,
    input[type="radio"]:checked + label:before {
      content: '\f00c';
}

#cookieNoticePro input[type='checkbox']:checked:after {
  background: #d3d3d3;
  content: '\2714';
  color: #808080;
}

#cookieNoticePro input[type='checkbox']:after {
  content: '';
  vertical-align: middle;
  text-align: center !important; /* arak.com.pl */
  line-height: 13px;
  position: absolute;
  cursor: pointer;
  height: 10px !important; /* height: 14px !important; / arak.com.pl */
  width: 10px !important; /* width: 14px !important; /arak.com.pl */
  left: 0;
  top: 0;
  font-size: 10px;
  background: #d3d3d3;
}

#cookieNoticePro input[type="checkbox"] + label,
  input[type="radio"] + label {
    color: #ffffff;
}

 #cookieNoticePro input[type="checkbox"] + label:before,
    input[type="radio"] + label:before {
      background: #ffffff;
      border-color: rgba(99, 116, 133, 0.25);
}

#cookieNoticePro input[type="checkbox"]:checked + label:before,
  input[type="radio"]:checked + label:before {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}

#cookieNoticePro input[type="checkbox"]:focus + label:before,
  input[type="radio"]:focus + label:before {
    border-color: #000000;
    box-shadow: 0 0 0 1px #000000;
}

/*********************** Ende Part aus main.css / arak.com.pl ***********************/

#cookieNoticePro.display-top.full-width-true,
#cookieNoticePro.display-bottom.full-width-true {
  width: 100%;
  max-width: 100%;
  left: auto;
  right: auto;
  bottom: auto;
  top: 0;
  border-radius: 0;
  margin: auto;
}

#cookieNoticePro.display-bottom.full-width-true {
  bottom: 0;
  top: auto;
  -webkit-box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
  box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
}

#cookieNoticePro.display-top.full-width-true .title-wrap,
#cookieNoticePro.display-bottom.full-width-true .title-wrap {
  display: none;
}

#cookieNoticePro.display-top.full-width-true .btn-wrap button,
#cookieNoticePro.display-bottom.full-width-true .btn-wrap button {
  margin-bottom: 10px;
}

#cookieMinimizeIcon {
  position: fixed;
  bottom: 20px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  animation: cookieNoticeProZoomIn 0.2s forwards;
  transition: box-shadow 0.1s ease-in-out;
}

#cookieMinimizeIcon.left {
  left: 20px;
}

#cookieMinimizeIcon.right {
  right: 20px;
}

#cookieMinimizeIcon svg {
  display: block;
}
#cookieMinimizeIcon.zoomIn {
  animation: cookieNoticeProZoomIn 0.2s forwards;
}

#cookieMinimizeIcon.zoomOut {
  animation: cookieNoticeProZoomOut 0.2s forwards;
}

#cookieMinimizeIcon .floating-text {
  position: absolute;
  top: 50%;
  background: rgba(51, 51, 51, 0.5);
  padding: 2px 4px;
  color: #ffffff;
  border-radius: 2px;
  font-family: inherit;
  font-size: 12px;
  text-wrap: nowrap;
  display: none;
}
#cookieMinimizeIcon:hover {
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.25);
}

#cookieMinimizeIcon:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

#cookieMinimizeIcon:hover > .floating-text,
#cookieMinimizeIcon:focus-visible > .floating-text {
  display: block;
}

#cookieMinimizeIcon.left .floating-text {
  right: -10%;
  transform: translate(100%, -50%);
}

#cookieMinimizeIcon.right .floating-text {
  left: -10%;
  transform: translate(-100%, -50%);
}

@media only screen and (max-width: 800px) {
  #cookieNoticePro.display-top,
  #cookieNoticePro.display-bottom {
    width: 95%; /* width: 100%; / arak.com.pl */
    max-width: 100%;
    left: 2.5%; /* left: auto; / arak.com.pl */
    right: auto;
    bottom: auto;
    top: 0;
    border-radius: 10px; /* border-radius: 0; / arak.com.pl */
    margin: auto;
  }

  #cookieNoticePro.display-bottom {
    bottom: 15px;
    top: auto;
    -webkit-box-shadow: 0 -3px 3px rgb(0 0 0 / 2%); /* -webkit-box-shadow: 0 -3px 3px rgb(0 0 0 / 25%); /* arak.com.pl */ 
    box-shadow: 0 -3px 3px rgb(0 0 0 / 2%); /* box-shadow: 0 -3px 3px rgb(0 0 0 / 25%); /* arak.com.pl */
  }

  #cookieNoticePro.display-top .btn-wrap button,
  #cookieNoticePro.display-bottom .btn-wrap button {
    margin-bottom: 0; /* margin-bottom: 10px; / arak.com.pl */
    height: 38px; /* arak.com.pl / Neu */
    max-width: 20%; /* arak.com.pl / Neu */
  }

  #cookieNoticePro.display-top .msg-wrap,
  #cookieNoticePro.display-bottom .msg-wrap {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 600px) {
  #cookieNoticePro.display-left,
  #cookieNoticePro.display-right {
    width: 100%;
    max-width: 100%;
    left: auto;
    right: auto;
    bottom: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
    box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
  }

  #cookieNoticePro.display-top .content-wrap,
  #cookieNoticePro.display-bottom .content-wrap {
    display: block;
  }
  #cookieNoticePro.display-top .msg-wrap,
  #cookieNoticePro.display-bottom .msg-wrap {
    max-width: 100%;
  }
  #cookieNoticePro.display-top #cookieSettings,
  #cookieNoticePro.display-bottom #cookieSettings {
    margin-bottom: 20px;
  }
}
