:root {
  --accent-color: #0D0D38;
  --accent-surface: rgba(255, 255, 255, 0.04);
  --accent-border: rgba(0, 237, 191, 0.22);
  --accent-text: rgba(255, 255, 255, 0.9);
  --accent-muted: rgba(255, 255, 255, 0.65);
  --accent-hover: #00EDBF;
}

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

.cookie-popup-container .cookie-popup {
  max-width: 750px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.55);
  overflow: visible;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  border-radius: 0;
  color: var(--accent-muted);
  overflow: hidden;
}

.cookie-category{
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  margin: 0 0 20px;
  background: var(--accent-surface);
}



.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: var(--accent-text);
  transition: all 0.1s;
  border-radius: 12px 12px 0 0;
  background: var(--accent-color);
  border: 1px solid var(--accent-border);

}
.cookie-popup-container .cookie-popup .cookie-popup-content-container * {
  color: var(--accent-text);
}

.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: var(--accent-text);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}




.cookie-cookies-display .cookie-category .choose {
  font-size: 14px;
  width: 20px;
  height: 20px;
  border-radius: 1px;
  border: 1px solid rgba(255,255,255,0.16);
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  background: rgba(255,255,255,0.08);
}

.cookie-cookies-display .cookie-category .choose.active {
  border-color: rgba(0, 237, 191, 0.55);
  background: rgba(0, 237, 191, 0.14);
}
.cookie-cookies-display .cookie-category .choose.active::before {
  content: "\2713";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  color: #fff;
}
/*.cookie-cookies-display .cookie-category .choose.active + .cookie-cat-name{
    color:#04383d;
}*/

.cookie-cookies-display .cookie-category .choose.always-on {
  border-color: rgba(0, 237, 191, 0.28);
  background: rgba(255,255,255,0.06);
  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);
  color: #fff;
}
/*.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;
  color: var(--accent-muted);
}

.cookie-decide {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--accent-color);
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  flex-direction: column;
  z-index: 1;
}


.cookie-decide .pre-cookie-box {
  flex-grow: 1;
  padding: 40px 20px 20px;
  color: var(--accent-text);
}
.cookie-decide .pre-cookie-box * {
  color: var(--accent-text);
  -webkit-text-fill-color: var(--accent-text);
}

.cookie-decide .pre-cookie-box a{
  color: #00EDBF;
}
.cookie-decide .imgBox{
  position: absolute;
  width: 300px;
  margin: 0 auto 20px;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.2;
}

.cookie-decide .btnList {
  list-style-type: none;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin: 0 !important;
  flex-grow: 1;
  padding: 0 20px 20px;
  /*background: rgba(0,0,0,0.05);*/
}

.cookie-decide .btnList li {
  width: auto;
  text-align: center;
  cursor: pointer;
  transition: 300ms;
  color: rgba(13, 13, 56, 0.95);
  background: linear-gradient(180deg, rgba(0, 237, 191, 1) 0%, rgba(45, 220, 180, 1) 50%, rgba(0, 237, 191, 1) 100%);
  min-width: 170px;
  font-weight: 400;
  letter-spacing: 0;
  border: 1px solid rgba(0, 237, 191, 0.35);
  box-shadow: 0 8px 18px rgba(0, 237, 191, 0.18);
  transition: all linear 0.3s;

}
.cookie-decide .btnList li:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 15px 0 rgba(0, 237, 191, 0.22);
}

.cookie-decide .btnList li.btn:after,
.cookie-decide .btnList li.btn:before{
  border-color: rgba(13, 13, 56, 0.9);
}
.cookie-decide .btnList li.allow-selection {
  display: none;
}

@media (max-width: 768px) {
  .cookie-decide .pre-cookie-box{
    font-size: 14px;
    line-height: 20px;
  }

  .cookie-popup-container .cookie-popup {
    bottom: 0;
    top: auto;
  }
  .cookie-decide {
    bottom: 0;
  }
  .cookie-decide .btnList li {
    font-size: 14px;
    width: 100%;
  }

  .btnList{
    flex-direction: column;
  }
}
