@charset "UTF-8";
/** 
 * version 2
 * @release development
*/
:root {
  --epp-color-primary: #ff8424;
  --epp-color-secondary: rgba(128, 232, 164, 100%);
  --epp-color-checkbox: #ff8424;
  --epp-color-primary-hover: #ff8424;
  --epp-color-secondary-hover: #999;
  --epp-color-font: rgba(77, 77, 77, 0.8);
  --epp-color-gray: transparent;
  --epp-color-light: #ccc;
  --epp-color-levelbg: #e8edf0;
  --epp-var-borderRadius: 0px;
  --epp-var-borderRadius-hover: 0px;
  --epp-font-family: "Maison Demi", Helvetica, Arial, Lucida, sans-serif;
}

.eprivacy-plugin {
  /* import scss */
  /** 
   * version 2
   * @release development
  */
  /* primary gradient -  if hover: false; hover is disabled  */
  /* secondary gradient -  if hover: false; hover is disabled  */
  /* epp-round mixin creates a round div */
  /* flex center - if center: true; item is vertical centered  */
  /* tansition mixin */
  /** 
   * version 2
   * @release development
  */
  /* import fonts */
  @import url("../../node_modules/@fortawesome/fontawesome-free/css/all.min.css");
  /* modal styling */
  /* change-cookie styling */
}
.eprivacy-plugin .epp-modal {
  position: sticky;
  right: 0;
  bottom: 0;
  z-index: 999;
}
.eprivacy-plugin .epp-modal[data-type=settings] {
  background: rgba(107, 138, 162, 0.9);
  width: 100%;
  height: 100vh;
  z-index: 9999999;
}
.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);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.eprivacy-plugin .epp-modal ::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  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: 20px;
  position: absolute;
  width: 95%;
  height: auto;
  max-height: 90vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: var(--epp-var-borderRadius);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: transform 200ms ease-in;
  overflow-y: scroll;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper.no-scroll {
  overflow-y: hidden !important;
}
.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;
  font-family: "Maison Demi", Helvetica, Arial, Lucida, sans-serif;
  font-size: 30px;
  color: #004a5f !important;
  line-height: 38px;
  margin-bottom: 35px;
}
@media screen and (min-width: 374px) {
  .eprivacy-plugin .epp-modal .epp-modal-wrapper[data-hidden=false] .epp-modal-header h3 {
    margin-bottom: 20px;
  }
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper::before {
  width: 100%;
  height: 8px;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: transparent;
  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%;
  background: #ffff;
  height: 450px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll {
  height: 100%;
  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);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  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: #ffff;
  position: relative;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll .epp-cookie-content:last-of-type {
  border-bottom: 0;
  margin-bottom: 50px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll .epp-cookie-content:last-of-type::after {
  display: none;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-scroll .epp-cookie-content::after {
  content: "";
  height: 1px;
  background: #e3e3e3;
  position: absolute;
  left: -20px;
  bottom: 0;
  width: calc(100% + 40px);
}
.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: #000;
}
.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: 20px;
  line-height: 22px;
  color: #004a5f;
}
.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;
  font-family: "Maison Light", Helvetica, Arial, Lucida, sans-serif;
}
.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: #444444;
  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: 0;
  margin-left: 0;
  padding-right: 0;
  color: #F07D0B;
  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 {
  opacity: 0;
  content: "";
  position: absolute;
  height: 3px;
  width: calc(100%);
  left: 0;
  background: #EE720E;
  bottom: 0;
  transition: all 300ms ease-in;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-exit:hover {
  color: #EE720E;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .cookie-desc-content .cookie-desc-exit:hover::after {
  opacity: 1;
}
.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: 10px;
  flex-direction: column;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-header h3 {
  margin: 0;
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #444444;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-header::before {
  content: "";
  height: 45px;
  width: 115px;
  margin-bottom: 45px;
  background-image: url("/wp-content/themes/Divi-Child-Theme/eprivacy/images/logo.svg");
  background-size: cover;
}
@media screen and (min-width: 374px) {
  .eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-header::before {
    margin-bottom: 26px;
  }
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-description p {
  margin: 0;
  margin-bottom: 25px;
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  font-family: "Maison Light", Helvetica, Arial, Lucida, sans-serif;
  color: #000;
  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;
}
.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 30px;
  border-radius: 0px;
  max-width: auto;
  background: #e8edf0;
  position: relative;
  z-index: 3;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox:first-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label {
  /* flex-direction: row-reverse;
  justify-content: flex-end;
  width: auto; */
  margin: 0;
  width: auto;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label input {
  opacity: 0;
  display: none;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label input:checked + .epp-checkbox-checkmark {
  border-color: #9c4c4c;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label input:checked + .epp-checkbox-checkmark::after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent url(../images/accept.svg) no-repeat;
  height: 18px;
  width: 18px;
  background-size: 18px;
  background-position: center center;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label input:checked:disabled + .epp-checkbox-checkmark {
  opacity: 0.5;
  cursor: default;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label input:checked:disabled + .epp-checkbox-checkmark::after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent url(../images/accept-disabled.svg) no-repeat;
  height: 18px;
  width: 18px;
  background-size: 18px;
  background-position: center center;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label input:checked:disabled + .epp-checkbox-checkmark:hover {
  border-color: #444444;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label input:disabled + .epp-checkbox-checkmark {
  border-color: #444444;
  opacity: 0.5;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label .checked-span::after {
  content: "";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 9px;
  color: #e8e8e8;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox label .checked-span.epp-checkbox-checkmark {
  background-color: #e8e8e8;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox .epp-checkbox-checkmark {
  /* @include epp-flex-center(true); */
  display: block;
  position: relative;
  height: 40px;
  width: 40px;
  border-radius: 40px;
  margin-right: 15px;
  border: 1px solidwhite;
  transition: border-color 200ms ease-in;
  cursor: pointer;
  background: white;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-checkbox .epp-checkbox-checkmark:hover {
  border-color: #9c4c4c;
}
.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: 20px;
  line-height: 1;
  color: #004a5f;
  font-family: "Maison Light", Helvetica, Arial, Lucida, sans-serif;
}
.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: "";
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc {
  background: #e8edf0;
  margin-top: -65px;
  margin-bottom: 20px;
  padding-top: 45px;
  border-radius: 20px;
  font-size: 14px;
  z-index: -1;
  font-family: "Maison Light", Helvetica, Arial, Lucida, sans-serif;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc > p:first-of-type {
  padding: 11px 30px;
  margin: 0;
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #004a5f;
  padding-top: 3px;
  font-family: "Maison Light", Helvetica, Arial, Lucida, sans-serif;
}
.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;
  /* overflow-y: auto;
  overflow-x: hidden; */
  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;
  border-radius: var(--epp-var-borderRadius);
  padding: 7px;
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 16px;
  transition: all 500ms ease;
  text-align: left;
  margin-left: 15px;
  color: #F07D0B;
  transition: 0.3s;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  position: relative;
  width: fit-content;
  width: -moz-fit-content;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc .epp-cookie-details .epp-detail-titel::after {
  opacity: 0;
  content: "";
  position: absolute;
  height: 3px;
  width: calc(100% - 10px);
  left: 5px;
  background: #EE720E;
  bottom: 0;
  transition: all 300ms ease-in;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc .epp-cookie-details .epp-detail-titel:hover {
  color: #EE720E;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc .epp-cookie-details .epp-detail-titel:hover::after {
  opacity: 1;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-content .epp-content-cookie-desc .epp-cookie-details .epp-detail-titel::before {
  display: none;
  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;
}
.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-buttons {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  justify-content: center;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button:first-of-type {
  margin-bottom: 10px;
}
.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: #9c4c4c;
  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: 20px;
  line-height: 10px;
  padding-top: 17px;
  width: 100%;
  border-radius: 0px;
  margin-top: 35px;
  height: 55px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #F07D0B;
  padding-left: 40px;
  padding-right: 40px;
  transition: all 300ms ease-in;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button.epp-button.epp-primary::before {
  background-color: var(--epp-color-primary-hover);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-duration: 0.3s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: background-color;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button.epp-button.epp-primary:hover {
    background-color: #9c4c4c;
  }
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button.epp-button.epp-primary:hover {
  background: #EE720E;
}
@media screen and (min-width: 400px) {
  .eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button.epp-button.epp-primary {
    padding-left: 55px;
    padding-right: 55px;
    width: fit-content;
    width: -moz-fit-content;
  }
}
.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 #9c4c4c;
  background: transparent;
  border-radius: 3px;
  height: 40px;
  padding-left: 23px;
  padding-right: 23px;
  font-size: 14px;
  letter-spacing: 0.28px;
  color: #9c4c4c;
  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: 400;
  font-size: 20px;
  line-height: 10px;
  width: fit-content;
  width: -moz-fit-content;
  left: 50%;
  transform: translate(-50%, 0);
  border: 0;
  color: #F07D0B;
  margin-top: 7px;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button.epp-button.epp-secondary::before {
  background-color: var(--epp-color-font);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button.epp-button.epp-secondary:hover {
    background: #9c4c4c;
    color: #ffffff;
  }
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button.epp-button.epp-secondary::after {
  opacity: 0;
  content: "";
  position: absolute;
  height: 3px;
  width: calc(100%);
  left: 0;
  background: #F07D0B;
  bottom: 2px;
  transition: all 300ms ease-in;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button.epp-button.epp-secondary:hover {
  background: transparent;
  color: #EE720E;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-buttons button.epp-button.epp-secondary:hover::after {
  opacity: 1;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-info a {
  text-decoration: none;
  color: #004a5f;
  font-family: var(--epp-font-family), sans-serif;
  font-weight: 100;
  font-size: 16px;
  line-height: 1;
  font-family: "Maison Medium", Helvetica, Arial, Lucida, sans-serif;
  margin: 0 15px;
  position: relative;
  width: fit-content;
  width: -moz-fit-content;
  padding-left: 0;
  padding-right: 0;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-info a:first-of-type {
  margin-bottom: 10px;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-info a::after {
  opacity: 0;
  content: "";
  position: absolute;
  height: 3px;
  width: calc(100%);
  left: 0;
  background: #F07D0B;
  bottom: -10px;
  transition: all 300ms ease-in;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-info a:hover {
  background: transparent;
}
.eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-info a:hover::after {
  opacity: 1;
}
@media screen and (min-width: 374px) {
  .eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-info {
    flex-direction: row;
  }
  .eprivacy-plugin .epp-modal .epp-modal-wrapper .epp-modal-info a:first-of-type {
    margin-bottom: 0;
  }
}
@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;
    overflow-y: inherit;
  }
}
@media screen and (min-width: 992px) {
  .eprivacy-plugin .epp-modal .epp-modal-wrapper {
    padding: 40px 120px 60px 120px;
    max-height: 100vh;
    overflow-y: visible;
    max-width: 676px;
  }
}
.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;
  height: 48px;
  width: 48px;
  background-color: var(--epp-color-primary);
  transition: all 500ms ease-in-out;
  background: #09495f;
  border-radius: 0;
}
.eprivacy-plugin .epp-cookie .epp-cookie-icon::before {
  color: white !important;
}
.eprivacy-plugin .epp-cookie .epp-cookie-icon::before {
  content: "";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 24px;
  color: #e8e8e8;
}
.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: #e8e8e8;
  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: 0.7;
  font-size: 12px;
  color: #949494;
  line-height: 1;
}
.eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-cookie-text::after {
  display: none;
  content: "";
  position: absolute;
  height: 100%;
  width: 3px;
  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;
  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 #9c4c4c;
  background: transparent;
  border-radius: 3px;
  height: 40px;
  padding-left: 23px;
  padding-right: 23px;
  font-size: 14px;
  letter-spacing: 0.28px;
  color: #9c4c4c;
  transition: 0.3s;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  background: transparent;
  border: none;
  margin-right: 0;
}
.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::after {
  content: "";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
  transition: all 500ms ease;
}
.eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-btn-group .epp-cookie-button::before {
  background-color: var(--epp-color-font);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-btn-group .epp-cookie-button:hover {
    background: #9c4c4c;
    color: #ffffff;
  }
}
.eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-btn-group .epp-cookie-button:hover {
  background: transparent;
}
.eprivacy-plugin .epp-cookie .epp-cookie-wrapper .epp-btn-group .epp-cookie-button:hover::after {
  color: #EE720E;
}
.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"), -webkit-linear-gradient(to left, var(--epp-color-primary), var(--epp-color-secondary));
  /* Chrome 10-25, Safari 5.1-6 */
  background-image: url("/img/wave.png"), linear-gradient(to left, var(--epp-color-primary), var(--epp-color-secondary));
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  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;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, white, white);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, white, white);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  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;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, white, white);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, white, white);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  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%;
  }
}

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