* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrap-cookie-bar {
  font-family: light, sans-serif;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 99999999999;
}

body.lock {
  overflow: hidden;
}

.wrap-cookie-bar.Wrap-Cookie-Bar_isHidden {
  bottom: 16px;
  top: initial;
  left: 16px;
  width: 48px;
  height: 48px;
  background: transparent;
}

.wrap-cookie-bar.Wrap-Cookie-Bar_isVissible {
  display: flex;
}

.CookiePopup.CookiePopup_isHidden, .CookiePopupButton.CookiePopup_isHidden {
  display: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-20px);
  }
}
.CookiePopup.bounce {
  animation-duration: 1s;
  animation-name: bounce;
}

.CookiePopup {
  display: flex;
  align-items: flex-end;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.CookiePopup .CookiePopup-Content {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
}
.CookiePopup .CookiePopup-Content .CookiePopup-Wrapper {
  max-width: 1180px;
  height: 100%;
  padding: 16px 32px;
}
.CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Text {
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.2px;
}
.CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 16px;
}
.CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer button {
  height: 40px;
  padding: 0 20px;
  background: transparent;
  cursor: pointer;
  border-radius: 25px;
  border: none;
  margin-left: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  justify-content: center;
  transition-duration: 0.25s;
  transition-timing-function: ease-out;
}
.CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer button.Button_variant_hollow {
  color: #000;
}
.CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer button.Button_variant_hollow:hover {
  background-color: #e2e3e4;
}
.CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer button.Button_variant_secondary {
  color: white;
  border: 3px solid #04b600;
  background-color: #04b600;
}
.CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer button.Button_variant_secondary:hover {
  background-color: white;
  color: #04b600;
}

.CookiePopup_isBasic {
  width: 600px;
  max-width: 600px;
}
.CookiePopup_isBasic .CookiePopup-Content {
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.CookiePopup_isBasic .CookiePopup-Content .CookiePopup-Header {
  padding: 16px 32px;
  background: #f2f2f2;
  border-bottom: 1px solid #dddddd;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.CookiePopup_isBasic .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Text {
  max-height: initial;
  overflow-y: auto;
  scrollbar-width: none;
  scrollbar-color: #c4c4c4 #ebebeb;
  scrollbar-width: thin;
}
.CookiePopup_isBasic .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Text a {
  color: #0064be;
}
.CookiePopup_isBasic .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Text .ShowMoreLessContent-Wrapper {
  display: flex;
}
.CookiePopup_isBasic .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Text .ShowMoreLessContent-Wrapper span.cookie-icon {
  margin-left: 32px;
}
.CookiePopup_isBasic .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Text .ShowMoreLessContent-Wrapper span.cookie-icon svg {
  color: #0064be;
}

.CookiePopup_isCustomize {
  justify-content: center;
  align-items: center;
  box-shadow: none;
}
.CookiePopup_isCustomize .CookiePopup-Content {
  max-width: 900px;
  border-radius: 5px;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 32px 32px;
  border-radius: 9px;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups {
  margin-right: -8px;
  max-height: 335px;
  overflow-y: auto;
  scrollbar-color: #c4c4c4 #ebebeb;
  scrollbar-width: thin;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group {
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 16px;
  padding-bottom: 16px;
  padding-right: 16px;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group:last-of-type {
  border-bottom: none;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group:first-of-type .Field-Wrapper_type_switcher .Field-SwitcherLabel label div.switcher-control {
  background-color: #eeeeee !important;
  cursor: no-drop;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group .Field-Wrapper_type_switcher {
  margin-bottom: 12px;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group .Field-Wrapper_type_switcher .Field-SwitcherLabel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group .Field-Wrapper_type_switcher .Field-SwitcherLabel label {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group .Field-Wrapper_type_switcher .Field-SwitcherLabel label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group .Field-Wrapper_type_switcher .Field-SwitcherLabel label input[type=checkbox]:checked + div.switcher-control {
  background-color: #0064be;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group .Field-Wrapper_type_switcher .Field-SwitcherLabel label input[type=checkbox]:focus + div.switcher-control {
  box-shadow: 0 0 1px #0064be;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group .Field-Wrapper_type_switcher .Field-SwitcherLabel label input[type=checkbox]:checked + div.switcher-control::before {
  transform: translateX(14px);
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group .Field-Wrapper_type_switcher .Field-SwitcherLabel label div.switcher-control {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group .Field-Wrapper_type_switcher .Field-SwitcherLabel label div.switcher-control::before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 5px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group .Field-Wrapper_type_switcher .Field-SwitcherLabel .CookiePopup-GroupLabel {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group .Field-Wrapper_type_switcher .Field-SwitcherLabel .CookiePopup-GroupLabel .CookiePopup-GroupLabelIcon {
  margin-right: 8px;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group .Field-Wrapper_type_switcher .Field-SwitcherLabel .CookiePopup-GroupLabel span.CookiePopup-GroupLabelLength {
  margin-left: 8px;
  font-weight: 400;
  color: #8a8a8a;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups .CookiePopup-Group p.CookiePopup-GroupText {
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.2px;
  margin-top: 0;
  margin-bottom: 0;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Footer {
  display: flex;
  justify-content: space-between;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Footer .CookiePopup-Button-BACK-TO-BASIC {
  width: 40px;
  padding: 0;
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Footer .CookiePopup-Button-BACK-TO-BASIC svg {
  fill: black;
  transform: rotate(180deg);
}
.CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Footer .CookiePopup-Button-BACK-TO-BASIC span {
  display: none;
}

.CookiePopupButton {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  bottom: 16px;
  left: 16px;
  border: none;
  cursor: pointer;
  z-index: 999;
}
.CookiePopupButton svg {
  color: #0064be;
}

@media (max-width: 811px) {
  .wrap-cookie-bar {
    padding: 24px 0;
    width: 100dvw;
    height: 100dvh;
  }
  .CookiePopup_isBasic {
    width: 90%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    overflow-y: auto;
  }
  .CookiePopup_isBasic::-webkit-scrollbar-thumb {
    background-color: #ccc; /* Kolor paska przewijania */
    border-radius: 4px;
  }
  .CookiePopup_isBasic::-webkit-scrollbar-thumb:hover {
    background-color: #888;
  }
  .CookiePopup_isBasic::-webkit-scrollbar {
    width: 8px;
  }
  .CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer {
    display: flex;
    flex-direction: column-reverse;
  }
  .CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer button {
    margin-bottom: 8px;
    margin-left: 0;
  }
  .CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer button:first-of-type {
    margin-bottom: 0;
  }
  .CookiePopup_isBasic .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Text {
    max-height: initial;
    overflow-y: auto;
    scrollbar-width: none;
    scrollbar-color: #c4c4c4 #ebebeb;
    scrollbar-width: thin;
  }
  .CookiePopup_isBasic .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer {
    position: sticky;
    bottom: 0;
    background: white;
  }
  .CookiePopup_isCustomize .CookiePopup-Content {
    max-width: 100%;
    height: 100dvh;
  }
  .CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper {
    max-width: 90%;
    box-shadow: none;
    padding: 32px 0;
  }
  .CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups {
    overflow-y: auto;
    scrollbar-width: none;
    max-height: initial;
  }
  .CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Footer .CookiePopup-Button-BACK-TO-BASIC {
    width: 100%;
  }
  .CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Footer .CookiePopup-Button-BACK-TO-BASIC svg {
    display: none;
  }
  .CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Footer .CookiePopup-Button-BACK-TO-BASIC span {
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 811px) and (orientation: landscape) {
  .wrap-cookie-bar {
    padding: 24px 0;
    width: 100dvw;
    height: 100dvh;
  }
  .CookiePopup_isBasic {
    width: 90%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    overflow-y: auto;
  }
  .CookiePopup_isBasic::-webkit-scrollbar-thumb {
    background-color: #ccc; /* Kolor paska przewijania */
    border-radius: 4px;
  }
  .CookiePopup_isBasic::-webkit-scrollbar-thumb:hover {
    background-color: #888;
  }
  .CookiePopup_isBasic::-webkit-scrollbar {
    width: 8px;
  }
  .CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer {
    display: flex;
    flex-direction: column-reverse;
  }
  .CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer button {
    margin-bottom: 8px;
    margin-left: 0;
  }
  .CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer button:first-of-type {
    margin-bottom: 0;
  }
  .CookiePopup_isBasic .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Text {
    max-height: initial;
    overflow-y: auto;
    scrollbar-width: none;
    scrollbar-color: #c4c4c4 #ebebeb;
    scrollbar-width: thin;
  }
  .CookiePopup_isBasic .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer {
    position: sticky;
    bottom: 0;
    background: white;
  }
  .CookiePopup_isCustomize .CookiePopup-Content {
    max-width: 100%;
    height: 100dvh;
  }
  .CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper {
    max-width: 90%;
    box-shadow: none;
    padding: 32px 0;
  }
  .CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups {
    overflow-y: auto;
    scrollbar-width: none;
    max-height: initial;
  }
  .CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Footer .CookiePopup-Button-BACK-TO-BASIC {
    width: 100%;
  }
  .CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Footer .CookiePopup-Button-BACK-TO-BASIC svg {
    display: none;
  }
  .CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Footer .CookiePopup-Button-BACK-TO-BASIC span {
    display: flex;
    justify-content: center;
  }
}
@media only screen and (orientation: landscape) and (max-height: 500px) {
  .wrap-cookie-bar {
    padding: 24px 0;
    width: 100dvw;
    height: 100dvh;
  }
  .CookiePopup_isBasic {
    width: 90%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    overflow-y: auto;
  }
  .CookiePopup_isBasic::-webkit-scrollbar-thumb {
    background-color: #ccc; /* Kolor paska przewijania */
    border-radius: 4px;
  }
  .CookiePopup_isBasic::-webkit-scrollbar-thumb:hover {
    background-color: #888;
  }
  .CookiePopup_isBasic::-webkit-scrollbar {
    width: 8px;
  }
  .CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer {
    display: flex;
    flex-direction: column-reverse;
  }
  .CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer button {
    margin-bottom: 8px;
    margin-left: 0;
  }
  .CookiePopup .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer button:first-of-type {
    margin-bottom: 0;
  }
  .CookiePopup_isBasic .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Text {
    max-height: initial;
    overflow-y: auto;
    scrollbar-width: none;
    scrollbar-color: #c4c4c4 #ebebeb;
    scrollbar-width: thin;
  }
  .CookiePopup_isBasic .CookiePopup-Content .CookiePopup-Wrapper .CookiePopup-Form .CookiePopup-Footer {
    position: sticky;
    bottom: 0;
    background: white;
  }
  .CookiePopup_isCustomize .CookiePopup-Content {
    max-width: 100%;
    height: 100dvh;
  }
  .CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper {
    max-width: 90%;
    box-shadow: none;
    padding: 32px 0;
  }
  .CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Groups {
    overflow-y: auto;
    scrollbar-width: none;
    max-height: initial;
  }
  .CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Footer .CookiePopup-Button-BACK-TO-BASIC {
    width: 100%;
  }
  .CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Footer .CookiePopup-Button-BACK-TO-BASIC svg {
    display: none;
  }
  .CookiePopup_isCustomize .CookiePopup-Content .CookiePopup-Wrapper form.Form .CookiePopup-Footer .CookiePopup-Button-BACK-TO-BASIC span {
    display: flex;
    justify-content: center;
  }
}/*# sourceMappingURL=cookie-bar.css.map */