:root {
  --accent-color: #c8a710;
  --accent-hover: #91790c;
}

.cookie-popup-container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial;
  display: none;

  position: fixed;
  z-index: 99999999;
  background-color: rgba(0, 0, 0, 0.05);
  bottom: 0;
}

.cookie-popup-container * {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial;
}

.cookie-popup-container .cookie-popup {
  width: 100%;
  border: 1px solid #eee;
  box-sizing: border-box;
  padding: 10px 0;
  box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.1);
  color: #111;
  overflow: scroll;
  margin-top: 25px;
  background-color: rgba(255, 255, 255, 0.95);
}

.cookie-popup-container .cookie-popup .cookie-mid::-webkit-scrollbar {
  display: none !important;
}

.cookie-popup-container .cookie-popup .cookie-mid {
  -ms-overflow-style: none;
  scrollbar-width: none;
  max-height: 75px;
  min-height: 75px;
  overflow-y: scroll !important;
}

.cookie-popup-container .cookie-popup .cookie-popup-content-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.cookie-popup .cookie-panel ul {
  list-style-type: none;
  display: flex;
  border-bottom: 1px solid #eee;
  padding-left: 0 !important;

  margin: 0 !important;
}

.cookie-popup .cookie-panel ul li {
  width: 33.33%;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  font-size: 12px;
  line-height: 18px;
}

.cookie-popup .cookie-panel ul li.active {
  padding-bottom: 10px;
  border-bottom: 4px solid var(--accent-color);
  color: var(--accent-color);
}

.cookie-popup-container
  .cookie-popup
  .cookie-popup-content-container
  .cookie-mid {
  height: 100%;
  padding: 0 10px;
  overflow: scroll;
}

.cookie-popup-container
  .cookie-popup
  .cookie-popup-content-container
  .cookie-mid
  p {
  font-size: 12px;
  line-height: 18px;
  margin-top: 0px;
  margin-bottom: 10px;
}

.cookie-popup-container
  .cookie-popup
  .cookie-popup-content-container
  .cookie-mid
  b {
  font-size: 12px;
  line-height: 18px;
}

.cookie-popup-container
  .cookie-popup
  .cookie-popup-content-container
  .cookie-mid
  .cookie-consent,
.cookie-popup-container
  .cookie-popup
  .cookie-popup-content-container
  .cookie-mid
  .cookie-cookies-display,
.cookie-popup-container
  .cookie-popup
  .cookie-popup-content-container
  .cookie-mid
  .cookie-about {
  display: none;
}

.cookie-cookies-display .cookie-category {
  margin-bottom: 15px;
}

.cookie-cookies-display .cookie-category .choose {
  font-size: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  margin-right: 10px;
  cursor: pointer;
}

.cookie-cookies-display .cookie-category .choose.active {
  border-color: var(--accent-hover);
  background-color: var(--accent-color);
}

.cookie-cookies-display .cookie-category .choose.always-on {
  border-color: #ccc;
  background-color: #eee;
  cursor: auto;
}

.cookie-cookies-display .cookie-category .data .data-resume .cat-main,
.cookie-cookies-display .cookie-category .data .data-resume .cat-main > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-cookies-display .cookie-category .data .data-resume .cat-main {
  margin-bottom: 10px;
}

.data-resume .cookie-cat-name {
  font-weight: bold;
  cursor: pointer;
  transition: 300ms;
  font-size: 12px;
  line-height: 18px;
}

.data-resume .cookie-cat-name:hover {
  color: var(--accent-color);
}

.data-resume .cookie-cat-count {
  background-color: #eee;
  color: #111;
  padding: 5px;
  font-size: 10px;
  margin-left: 10px;
  font-weight: bold;
  border-radius: 8px;
}

.cookie-cookies-display .cookie-category .data .data-resume .cat-describe {
  font-size: 12px;
  line-height: 18px;
}

.cookie-cookies-display .cookie-category .data .data-describe {
  display: none;
}

.cookie-cookies-display .cookie-category .data .data-describe ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
  margin-top: 10px;
}

.cookie-cookies-display .cookie-category .data .data-describe ul li {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #111;
  font-size: 10px;
  line-height: 12px;
  padding: 8px;
}

.cookie-about a {
  text-decoration: none;
  color: var(--accent-color);
  font-size: 12px;
  line-height: 18px;
}

.cookie-decide ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding-left: 0 !important;
  border-top: 1px solid #eee;
  margin: 0 !important;
  padding-top: 10px;
}

.cookie-decide ul li {
  width: 32%;
  text-align: center;
  border: 2px solid var(--accent-color);
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 6px;
  padding: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 300ms;
  font-size: 12px;
  line-height: 18px;
}

.cookie-decide ul li:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.cookie-decide ul li.allow {
  background-color: var(--accent-color);
  color: #fff;
}

.cookie-decide ul li.allow:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}

.cookie-decide ul li.allow-selection {
  display: none;
}

@media screen and (max-width: 991px) {
  .cookie-popup-container .cookie-popup {
    width: 100%;
  }

  .cookie-popup-container
    .cookie-popup
    .cookie-popup-content-container
    .cookie-decide
    ul {
    display: flex;
    flex-direction: column;
  }

  .cookie-popup-container
    .cookie-popup
    .cookie-popup-content-container
    .cookie-decide
    ul
    li {
    width: auto;
  }

  .cookie-popup-container
    .cookie-popup
    .cookie-popup-content-container
    .cookie-mid {
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
  }

  .cookie-decide ul li {
    padding: 8px;
    font-size: 12px;
    margin: 3px;
  }

  .cookie-popup-container .cookie-popup {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .cookie-decide ul {
    padding-top: 10px;
  }

  .cookie-popup .cookie-panel ul li {
    font-size: 12px;
    padding-bottom: 10px !important;
  }

  .cookie-popup-container
    .cookie-popup
    .cookie-popup-content-container
    .cookie-mid
    p,
  .cookie-popup-container
    .cookie-popup
    .cookie-popup-content-container
    .cookie-mid
    b,
  .data-resume .cookie-cat-name,
  .cookie-cookies-display .cookie-category .data .data-resume .cat-describe,
  .cookie-about a {
    font-size: 12px;
    line-height: 18px;
  }

  .cookie-cookies-display .cookie-category .data .data-describe ul li {
    font-size: 10px;
    line-height: 12px;
    padding: 8px;
  }

  .data-resume .cookie-cat-count {
    font-size: 10px;
  }

  .cookie-popup-container .cookie-popup .cookie-mid {
    max-height: 120px;
    min-height: 120px;
  }
  .cookie-popup-container .cookie-popup .cookie-mid {
    max-height: 300px;
    min-height: 150px;
  }
}
.cookie-popup-container .cookie-popup .cookie-mid {
  -ms-overflow-style: none;
  max-height: 30vh;
  min-height: 70px;

  overflow-y: auto !important;
}
.cookie-popup-container
  .cookie-popup
  .cookie-popup-content-container
  .cookie-mid {
  padding: 15px 10px 0 10px;
}

body.body {
  transform: none !important;
}

.cookie-popup .cookie-panel ul li {
  color: #333 !important;
}
.cookie-popup .cookie-panel ul li.active {
  color: var(--accent-color) !important;
}

.cookie-decide ul li {
  color: #333 !important;
  border-color: var(--accent-color);
}

.cookie-decide ul li.allow {
  color: #fff !important;
  background-color: var(--accent-color) !important;
}

.cookie-decide ul li:hover {
  color: #fff !important;
  background-color: var(--accent-color) !important;
}

.cookie-popup .policy-href {
  color: var(--accent-color) !important;
  text-decoration: none !important;
  font-weight: 500;
}

.cookie-popup .policy-href:hover {
  color: var(--accent-hover, #cc7f6b) !important;
  text-decoration: underline !important;
}
