@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Manrope", sans-serif;
}

#cookie-banner {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 40px);
  max-width: 518px;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 99;
  border-radius: 10px;
  display: none;
}
#cookie-banner .banner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#cookie-banner .banner-header .banner-title {
  font-size: 15px;
  color: #000;
  font-weight: 900;
  line-height: 23px;
}
#cookie-banner .banner-header .banner-close-btn {
  cursor: pointer;
  font-size: 1.2em;
}
#cookie-banner .banner-content .banner-message {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: rgb(44, 50, 115);
}
#cookie-banner .banner-content .banner-message p {
  margin: 10px 0;
}
#cookie-banner .banner-content .banner-message p a {
  color: #1e73be;
  text-decoration: none;
}
#cookie-banner .banner-content .cookie-categories.hidden {
  display: none;
}
#cookie-banner .banner-content .cookie-categories {
  margin: 20px 0;
}
#cookie-banner .banner-content .cookie-categories .cookie-category {
  margin-bottom: 15px;
  background: #f7f7f7;
  padding: 1rem;
}
#cookie-banner .banner-content .cookie-categories .cookie-category .cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
#cookie-banner .banner-content .cookie-categories .cookie-category .cookie-category-header .cookie-category-title {
  font-weight: 500;
  font-size: 13px;
  line-height: 21px;
}
#cookie-banner .banner-content .cookie-categories .cookie-category .cookie-category-header .switch {
  display: inline-block;
  height: 17px;
  position: relative;
  width: 30px;
}
#cookie-banner .banner-content .cookie-categories .cookie-category .cookie-category-header .switch input {
  display: none;
}
#cookie-banner .banner-content .cookie-categories .cookie-category .cookie-category-header .slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}
#cookie-banner .banner-content .cookie-categories .cookie-category .cookie-category-header .slider:before {
  background-color: #fff;
  bottom: 2px;
  content: "";
  height: 13px;
  left: 2px;
  position: absolute;
  transition: 0.4s;
  width: 13px;
}
#cookie-banner .banner-content .cookie-categories .cookie-category .cookie-category-header input:checked + .slider {
  background-color: #66bb6a;
}
#cookie-banner .banner-content .cookie-categories .cookie-category .cookie-category-header input:checked + .slider:before {
  transform: translateX(13px);
}
#cookie-banner .banner-content .cookie-categories .cookie-category .cookie-category-header .slider.round {
  border-radius: 17px;
}
#cookie-banner .banner-content .cookie-categories .cookie-category .cookie-category-header .slider.round:before {
  border-radius: 50%;
}
#cookie-banner .banner-content .cookie-categories .cookie-category .cookie-category-explanation.hidden {
  display: none;
}
#cookie-banner .banner-content .cookie-categories .cookie-category .cookie-category-explanation {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  line-height: 17px;
  font-weight: 400;
  color: #6c757d;
}
#cookie-banner .banner-content .banner-buttons {
  display: flex;
  gap: 1rem;
}
#cookie-banner .banner-content .banner-buttons button {
  height: 45px;
  padding: 10px;
  margin: initial;
  width: 100%;
  white-space: nowrap;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  line-height: 20px;
  text-align: center;
  flex: initial;
  border: 0 none;
}
#cookie-banner .banner-content .banner-buttons button.accept-button {
  background-color: #1e73be;
  color: #fff;
}

.cookie-manage {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 99;
  text-indent: -500em;
  background: url(../../assets/img/cookies.png) #fff no-repeat center;
  width: 45px !important;
  height: 45px !important;
  min-width: 0 !important;
  border-radius: 50% !important;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  display: none;
}

@media (max-width: 768px) {
  #cookie-banner {
    left: 0;
    width: 100%;
    max-width: none;
  }
}
.arrow-icon {
  transition: transform 0.5s ease;
  margin-right: 3px;
}

.arrow-icon.rotated {
  transform: rotate(90deg);
}

/*# sourceMappingURL=pemflow-cookie-consent-style.css.map */
