:root {
  --accent-color: #00a99d;
  --accent-hover: #4d99e0;
}

.cookie-popup-container {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 9999999;
}

.cookie-popup-container .cookie-popup {
  width: 100%;
  box-sizing: border-box;
  padding: 0px;
  box-shadow: 0px 5px 60px -3px rgb(53 18 72 / 50%);
  overflow: visible;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */

  /*backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);*/
  position: fixed;
  z-index: 99999;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  box-shadow: 0px 0px 150px #000;
  border-radius: 8px;
}

.cookie-category{
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  margin: 0 0 20px;
}



.cookie-popup-container .cookie-popup .cookie-popup-content-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  position: static;
  top: 0;
  left: 0;
  width: 100%;
  height: 0px;
  overflow: hidden;
  overflow-y: scroll;
  color: #fff;
  transition: all 0.1s;
  border-radius: 12px 12px 0 0;
  background: #ab31dc;
}

.cookie-popup-container .cookie-popup .cookie-popup-content-container.open {
  height: 300px !important;
}

.cookie-popup .cookie-panel ul {
  list-style-type: none;
  display: flex;
  padding-left: 0 !important;
  margin: 0 !important;

}

.cookie-cookies-display{
  padding: 20px;
}

.cookie-popup .cookie-panel ul li {
  width: 100%;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  line-height: 18px;
  padding-bottom: 15px;
  padding-top: 15px;
  /*    background-color: rgb(0, 0, 0);*/
  margin-bottom: 0;
}

.cookie-popup .cookie-panel ul li.active {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}




.cookie-cookies-display .cookie-category .choose {
  font-size: 14px;
  width: 20px;
  height: 20px;
  border-radius: 1px;
  border: 1px solid #ffffff;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
}

.cookie-cookies-display .cookie-category .choose.active {
  border-color: rgba(255,255,255,0.2);
  background: #3B3F5C;
}
.cookie-cookies-display .cookie-category .choose.active::before {
  content: "\2713";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  color: #ffffff;
}
/*.cookie-cookies-display .cookie-category .choose.active + .cookie-cat-name{
    color:#04383d;
}*/

.cookie-cookies-display .cookie-category .choose.always-on {
  border-color: rgba(255,255,255,0.1);
  background: #3B3F5C;
  cursor: auto;
}
.cookie-cookies-display .cookie-category .choose.always-on::before {
  content: "\2713";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
}
/*.cookie-cookies-display .cookie-category .choose.always-on + .cookie-cat-name {
    color: #04383d;
}*/
.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: 14px;
  line-height: 18px;
  font-weight: 500;
}

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

.cookie-decide {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: #1e1422;
  display: flex;
  justify-content: space-between;
  border-radius: 0 0 12px 12px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  flex-direction: column;
}


.cookie-decide .pre-cookie-box {
  padding-top: 7px;
  flex-grow: 1;
  font-size: 20px;
  line-height: 30px;
}

.cookie-decide .pre-cookie-box a{
  color: #ab31dc;
}


.cookie-decide ul {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
  padding-left: 0 !important;
  margin: 0 !important;
  padding-top: 10px;
  flex-grow: 1;
}

.cookie-decide ul li {
  width: auto;
  text-align: center;
  cursor: pointer;
  transition: 300ms;
  color: #fff;
}

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

@media (max-width: 768px) {
  .cookie-decide .pre-cookie-box{
    font-size: 14px;
    line-height: 20px;
  }
  .cookie-decide ul li {
    padding: 0 15px;
  }
  .cookie-popup-container .cookie-popup {
    bottom: 0;
    top: auto;
    transform: translate(-50%, 0px);
  }
  .cookie-decide {
    border-radius: 3px;
    bottom: 0;
    padding: 15px;
  }
  .cookie-decide ul li {
    font-size: 14px;
  }
}
