/* DO NOT edit this file directly */
/* stylelint-disable */
.pfcookie-consent {
  color: #333;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  height: 100%;
  justify-content: flex-end;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.pfcookie-consent::before {
  background: rgba(0, 0, 0, 0.5);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.pfcookie-consent__content {
  background-color: #fff;
  border-radius: 16px 16px 0 0;
  padding: 16px 16px 24px;
  position: relative;
}
.pfcookie-consent__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .pfcookie-consent__content {
    border-radius: 16px;
    left: 50%;
    padding: 24px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 510px;
  }
  .pfcookie-consent__title {
    font-size: 20px;
    line-height: 32px;
  }
}
.pfcookie-consent__primary,
.pfcookie-consent__secondary {
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  display: flex;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  letter-spacing: normal;
  line-height: 28px;
  padding: 0 8px;
  text-align: center;
  text-transform: none;
  width: 100%;
}
.pfcookie-consent__accordion-desc,
.pfcookie-consent__accordion-summary,
.pfcookie-consent__desc {
  font-size: 12px;
  font-style: normal;
  line-height: 20px;
}
.pfcookie-consent__primary {
  background-color: #ea3934;
  color: #fff;
  margin: 8px 0;
  transition: 0.2s ease-in-out;
}
.pfcookie-consent__primary:hover {
  background-color: #97211e;
}
.pfcookie-consent__secondary {
  color: #3a307f;
}
.pfcookie-consent__desc {
  font-weight: 400;
  margin-bottom: 24px;
}
.pfcookie-consent__desc a {
  color: #3a307f;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
  text-decoration-line: underline;
}
.pfcookie-consent__accordion {
  padding-top: 16px;
}
.pfcookie-consent__accordion-item + .pfcookie-consent__accordion-item {
  border-top: 1px solid #f7f7f7;
  padding-top: 16px;
}
.pfcookie-consent__accordion-icon {
  display: flex;
  margin-left: 12px;
  transition: transform 0.2s ease-in-out;
}
[dir='rtl'] .pfcookie-consent__accordion-icon {
  margin-right: 12px;
}
.pfcookie-consent__accordion-item[open] .pfcookie-consent__accordion-icon {
  transform: rotate(180deg);
}
.pfcookie-consent__accordion-summary {
  cursor: pointer;
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  padding-bottom: 16px;
}
.pfcookie-consent__accordion-desc {
  color: #707070;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: -4px;
  padding-bottom: 16px;
}
.pfcookie-consent__accordion-aside {
  align-items: center;
  color: #3a307f;
  display: flex;
}
.pfcookie-consent__toggle.pfcookie-consent__toggle {
  background-color: #ccc;
  border-radius: 18px !important;
  display: inline-block;
  margin: 0;
  padding: 2px;
  transition: background-color 0.2s ease-in-out;
  width: 44px;
}
.pfcookie-consent__toggle.pfcookie-consent__toggle::before {
  background-color: #fff;
  border-radius: 50%;
  content: '';
  display: block;
  height: 20px;
  transition: transform 0.2s ease-in-out;
  width: 20px;
}
.pfcookie-consent__toggle.pfcookie-consent__toggle--checked {
  background-color: #3a307f;
}
.pfcookie-consent__toggle.pfcookie-consent__toggle--checked::before {
  transform: translateX(100%);
}
[dir='rtl']
  .pfcookie-consent__toggle.pfcookie-consent__toggle--checked::before {
  transform: translateX(-100%);
}
