.wtm-cookies {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem;
  z-index: 100;
  transition: all 0.2s ease;
  box-shadow: 0 0 8px 8px #0000000d;
}
@media (min-width: 768px) {
  .wtm-cookies {
    left: 1.5rem;
    bottom: 1.5rem;
    width: 440px;
    border-radius: 0.375rem;
  }
}
@media (min-width: 1024px) {
  .wtm-cookies {
    left: 2.5rem;
    bottom: 2.5rem;
  }
}
.wtm-cookies--visible {
  display: block;
}
.wtm-cookies__title {
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}
.wtm-cookies__description {
  font-size: 0.875rem;
  margin: 0.5rem 0;
}
@media (min-width: 640px) {
  .wtm-cookies__description {
    margin: 0.875rem 0;
  }
}
.wtm-cookies__description a {
  text-decoration: underline;
}
.wtm-cookies__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  row-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}
@media (min-width: 640px) {
  .wtm-cookies__buttons {
    flex-direction: row;
  }
}
.wtm-cookies__button {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  padding: 0.5rem;
  cursor: pointer;
  border-width: 2px;
  border-style: solid;
  border-radius: 0.125rem;
  flex: 1 1 auto;
  transition: all 0.2s ease;
  width: 100%;
}
@media (min-width: 640px) {
  .wtm-cookies__button {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.wtm-cookies__button:hover {
  opacity: 0.7;
}
.wtm-cookies--hidden {
  opacity: 0;
  pointer-events: none;
}
.wtm-customize-modal {
  display: flex;
  position: fixed;
  background-color: #0000004d;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 1000000;
  transition: all 0.4s ease;
}
.wtm-customize-modal--initialized {
  display: block !important;
}
.wtm-customize-modal--visible {
  opacity: 1;
  pointer-events: auto;
}
.wtm-customize-modal__content {
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 850px;
  height: 100%;
  margin: auto;
  border-radius: 0.5rem;
  overflow-y: scroll;
}
@media (min-width: 768px) {
  .wtm-customize-modal__content {
    height: auto;
    max-height: 80vh;
    overflow: auto;
  }
}
@media (min-width: 768px) {
  .wtm-customize-modal__content {
    overflow: unset !important;
  }
}
.wtm-customize-modal__head {
  padding: 1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .wtm-customize-modal__head {
    font-size: 1.125rem;
  }
}
.wtm-customize-modal__content-wrapper {
  padding: 1rem 0;
  border-top: 1px solid #d1d5db !important;
}
.wtm-customize-modal__customize {
  font-size: 0.875rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.wtm-customize-modal__buttons {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1rem;
  position: relative;
}
.wtm-customize-modal__buttons:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  background: linear-gradient(to top, white, transparent);
  transform: translateY(-100%) !important;
}
.wtm-cookies-cookie {
  border-top: 1px solid #d1d5db;
  padding: 1rem 0;
  cursor: pointer;
}
.wtm-cookies-cookie > * + * {
  margin-top: 0.75rem;
}
.wtm-cookies-cookie__description {
  font-size: 0.875rem;
}
.wtm-cookies-cookie__head {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wtm-customize-modal__cookies {
  padding: 0 1.5rem 1rem;
}
@media (min-width: 768px) {
  .wtm-customize-modal__cookies {
    overflow: auto;
    flex-grow: 1;
  }
}
.wtm-customize-modal a {
  text-decoration: underline;
}
.wtm-cookie-type {
  background-color: #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.75rem;
  display: none;
}
.wtm-cookie-type--visible {
  display: block !important;
}
.wtm-cookie-type__single {
  font-size: 0.75rem;
  color: #4b5563;
}
.wtm-cookie-type__single > * + * {
  margin-top: 0.25rem;
}
.wtm-cookie-type__wrapper {
  border-bottom: 1px solid #9ca3af;
  padding: 0.75rem 0;
}
.wtm-cookie-type__row {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  font-size: 0.875rem !important;
}
.wtm-cookie-type__row svg {
  flex-shrink: 0;
}
.wtm-cookie-type .wtm-cookie-type__wrapper:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.wtm-cookie-type .wtm-cookie-type__wrapper:first-child {
  padding-top: 0;
}
.wtm-cookie__check {
  width: 2.75rem;
  height: 1.5rem;
  background-color: #e5e7eb;
  position: relative;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.wtm-cookie__check input {
  display: none;
}
.wtm-cookie__check-circle {
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 2px;
  transition: all 0.2s ease;
  transform: translateY(-50%) !important;
}
.wtm-cookie__check--checked {
  background-color: #6b7280;
}
.wtm-cookie__check--checked .wtm-cookie__check-circle {
  left: calc(100% - 22px);
}
.wtm-cookies-cookie--no-name {
  display: none !important;
}
.wtm-cookies__no-cookies {
  font-size: 0.875rem;
}
.wtm-cookies__title svg {
  flex-shrink: 0;
  height: 0.75rem;
  transition: all 0.2s ease;
}
.wtm-cookies__title svg.rotated {
  transform: rotate(90deg);
}
.wtm-cookie__check--locked {
  pointer-events: none;
}
.wtm-cookies-revisit-button {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0.875rem;
  left: 0.875rem;
  z-index: 10;
}
.wtm-cookies-revisit-button--visible {
  display: flex;
}
.wtm-cookies + .wtm-cookies-revisit-button {
  opacity: 0 !important;
  pointer-events: none !important;
}
.wtm-cookies + .wtm-cookies-revisit-button--visible {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.wtm-cookies--hidden + .wtm-cookies-revisit-button {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.wtm_link {
  font-size: 0.75rem;
  text-align: center;
  display: flex;
  justify-content: center;
}
.wtm-created-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding-bottom: 0.5rem;
  font-size: 12px !important;
  text-align: center;
  color: #000;
  transition: color 0.3s ease;
}
.wtm-created-by:hover {
  text-decoration: underline;
}

/* plik nie jest podłaczony, zawiera tylko skłądnię potrzebną do wrzucenia  */

body:has(.wtm-cookies.wtm-cookies--visible)::before {
  content: "";
  width: 100vw;
  height: 100vh;
  display: block;
  position: fixed;
  left: 50%;
  top: 50%;
  background: rgb(255 255 255 / 17%);
  backdrop-filter: blur(5px);
  z-index: 999;
  transform: translate(-50%, -50%);
}

.wtm-cookies {
  z-index: 99992;
}

body:has(.wtm-cookies.wtm-cookies--visible.wtm-cookies--hidden)::before {
  display: none !important;
}

@media (min-width: 768px) {
  .wtm-cookies {
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    width: 440px;
    border-radius: 0.375rem;
  }
}

.wtm-cookies__button {
  width: 100%;
}
@media (min-width: 640px) {
  .wtm-cookies__button {
    width: -moz-fit-content;
    width: fit-content;
    flex: 1 1 auto;
  }
}
