html {
  --border-color: #c6c6c6;
  --key-color: #3498db;
  --font-color: #333333;
  --color-green: #519d63;
  --color-red: #d55151;
  --bg-color: #f6f6f6;
}

.cookie-manage-popup {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
          backdrop-filter: blur(10px) saturate(150%);
  z-index: 30000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--font-color);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  -webkit-transition: opacity 0.1s linear 0s, -webkit-transform 0s linear 0s;
  transition: opacity 0.1s linear 0s, -webkit-transform 0s linear 0s;
  transition: opacity 0.1s linear 0s, transform 0s linear 0s;
  transition: opacity 0.1s linear 0s, transform 0s linear 0s, -webkit-transform 0s linear 0s;
}
.cookie-manage-popup .cookie-control-content {
  border-radius: 4px;
  overflow: hidden;
  width: calc(100% - 40px);
  max-width: 600px;
  position: relative;
  background-color: #fff;
  z-index: 5;
  -webkit-transition: -webkit-transform 0.5s ease 0.1s;
  transition: -webkit-transform 0.5s ease 0.1s;
  transition: transform 0.5s ease 0.1s;
  transition: transform 0.5s ease 0.1s, -webkit-transform 0.5s ease 0.1s;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.cookie-manage-popup .head {
  width: 100%;
  height: 60px;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 0 20px;
  border-bottom: 1px solid var(--border-color);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cookie-manage-popup .head .logo-graph {
  width: 140px;
  min-width: 140px;
}
.cookie-manage-popup .head .logo-graph img {
  width: 100%;
  display: block;
  height: auto;
}
.cookie-manage-popup .head .btn-off {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.cookie-manage-popup .head .btn-off:before, .cookie-manage-popup .head .btn-off:after {
  content: "";
  width: 26%;
  height: 2px;
  position: absolute;
  background-color: var(--font-color);
  border-radius: 2px;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.cookie-manage-popup .head .btn-off:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media (pointer: fine) {
  .cookie-manage-popup .head .btn-off {
    -webkit-transition: background-color 0.1s linear 0s;
    transition: background-color 0.1s linear 0s;
  }
  .cookie-manage-popup .head .btn-off:before, .cookie-manage-popup .head .btn-off:after {
    -webkit-transition: background-color 0.1s linear 0s;
    transition: background-color 0.1s linear 0s;
  }
  .cookie-manage-popup .head .btn-off:hover {
    background-color: var(--color-red);
  }
  .cookie-manage-popup .head .btn-off:hover:before, .cookie-manage-popup .head .btn-off:hover:after {
    background-color: #fff;
  }
}
.cookie-manage-popup .btn-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid var(--border-color);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cookie-manage-popup .btn-group > div {
  max-width: 110px !important;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13px;
  border: 2px solid #000000;
  font-weight: 500;
}
.cookie-manage-popup .btn-group > div#accept_all {
  color: #ffffff;
  background-color: #000000;
}
@media (pointer: fine) {
  .cookie-manage-popup .btn-group > div#accept_all {
    -webkit-transition: background-color 0.1s linear 0s, color 0.1s linear 0s, border-color 0.1s linear 0s;
    transition: background-color 0.1s linear 0s, color 0.1s linear 0s, border-color 0.1s linear 0s;
  }
  .cookie-manage-popup .btn-group > div#accept_all:hover {
    color: #ffffff;
    border-color: var(--color-green);
    background-color: var(--color-green);
  }
}
.cookie-manage-popup .btn-group > div#decline_all {
  color: #000000;
}
@media (pointer: fine) {
  .cookie-manage-popup .btn-group > div#decline_all {
    -webkit-transition: background-color 0.1s linear 0s, color 0.1s linear 0s, border-color 0.1s linear 0s;
    transition: background-color 0.1s linear 0s, color 0.1s linear 0s, border-color 0.1s linear 0s;
  }
  .cookie-manage-popup .btn-group > div#decline_all:hover {
    color: #ffffff;
    border-color: var(--color-red);
    background-color: var(--color-red);
  }
}
.cookie-manage-popup .control-section {
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
  max-height: calc(100vh - 280px);
  padding: 20px;
  font-size: 14px;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cookie-manage-popup .control-section p:not(:last-child) {
  margin-bottom: 1em;
}
.cookie-manage-popup .control-section p a,
.cookie-manage-popup .control-section p a:link {
  color: var(--font-color);
  display: inline-block;
  white-space: nowrap;
  text-decoration: underline;
}
.cookie-manage-popup .control-section::-webkit-scrollbar {
  width: 10px !important;
  background-color: #fff !important;
}
.cookie-manage-popup .control-section::-webkit-scrollbar-track {
  width: 10px !important;
  background-color: #fff !important;
}
.cookie-manage-popup .control-section::-webkit-scrollbar-thumb {
  width: 10px !important;
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--border-color) !important;
}
.cookie-manage-popup .control-section h3 {
  font-size: 18px;
  display: block;
  line-height: 1.3;
  font-weight: 700;
  margin: 25px 0 15px;
}
.cookie-manage-popup .control-section h3:first-child {
  margin-top: 0;
}
.cookie-manage-popup .control-section h4 {
  font-size: 15px;
  display: block !important;
  white-space: nowrap;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.cookie-manage-popup .control-section h4 > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  padding: 0 0 0 38px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.cookie-manage-popup .control-section h4 i {
  font-weight: 400 !important;
  font-style: normal;
  font-size: 12px !important;
  position: absolute;
  top: 0px;
  right: 20px;
  bottom: 0;
  white-space: nowrap;
  z-index: 5;
  pointer-events: none;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--border-color);
}
.cookie-manage-popup .control-section h4 .arrow {
  position: absolute;
  pointer-events: none;
  width: 10px;
  height: 10px;
  min-width: 10px;
  top: 50%;
  left: 18px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cookie-manage-popup .control-section h4 .arrow:before, .cookie-manage-popup .control-section h4 .arrow:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--font-color);
  border-radius: 2px;
  display: block;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.cookie-manage-popup .control-section h4 .arrow:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.cookie-manage-popup .control-section .group {
  width: 100%;
  border: 1px solid var(--border-color);
  background-color: #fff;
}
.cookie-manage-popup .control-section .group + .group {
  margin-top: -1px !important;
}
.cookie-manage-popup .control-section .group p {
  background-color: var(--bg-color);
  padding: 15px 18px;
  font-size: 14px;
  line-height: 1.8;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  display: none;
}
.cookie-manage-popup .control-section .group.active p {
  display: block;
}
.cookie-manage-popup .control-section .group.active h4 .arrow:after {
  display: none !important;
}
.cookie-manage-popup .control-section .control-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
.cookie-manage-popup .control-section .control-btn label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  cursor: pointer;
}
.cookie-manage-popup .control-section .control-btn label input {
  display: none;
}
.cookie-manage-popup .control-section .control-btn label span {
  position: relative;
  width: 40px;
  height: 22px;
  background-color: var(--border-color);
  border-radius: 100em;
  -webkit-transition: background-color 0.1s linear 0s;
  transition: background-color 0.1s linear 0s;
}
.cookie-manage-popup .control-section .control-btn label span:before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1);
          box-shadow: rgba(0, 0, 0, 0.1);
  top: 2px;
  left: 2px;
  display: block;
  position: absolute;
  -webkit-transition: left 0.1s linear 0s;
  transition: left 0.1s linear 0s;
}
.cookie-manage-popup .control-section .control-btn label span:after {
  content: "Off";
  width: 3em;
  font-size: 12px !important;
  font-weight: 400 !important;
  white-space: nowrap;
  line-height: 1.2;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateX(-3em) translateY(-50%);
      -ms-transform: translateX(-3em) translateY(-50%);
          transform: translateX(-3em) translateY(-50%);
  display: block;
  pointer-events: none;
  color: var(--border-color);
}
.cookie-manage-popup .control-section .control-btn label input:checked ~ span {
  background-color: var(--color-green);
}
.cookie-manage-popup .control-section .control-btn label input:checked ~ span:before {
  left: 20px;
}
.cookie-manage-popup .control-section .control-btn label input:checked ~ span:after {
  content: "On";
}
.cookie-manage-popup:not(.show) {
  pointer-events: none !important;
  -webkit-transform: translateX(-101%);
      -ms-transform: translateX(-101%);
          transform: translateX(-101%);
  opacity: 0;
  -webkit-transition: opacity 0.1s linear 0.5s, -webkit-transform 0s linear 0.7s;
  transition: opacity 0.1s linear 0.5s, -webkit-transform 0s linear 0.7s;
  transition: opacity 0.1s linear 0.5s, transform 0s linear 0.7s;
  transition: opacity 0.1s linear 0.5s, transform 0s linear 0.7s, -webkit-transform 0s linear 0.7s;
}
.cookie-manage-popup:not(.show) .cookie-control-content {
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.cookie-consent-notice-bar {
  -webkit-transform: translateY(101%);
      -ms-transform: translateY(101%);
          transform: translateY(101%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0s linear 0.6s, -webkit-transform 0.6s ease 0s;
  transition: opacity 0s linear 0.6s, -webkit-transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s, opacity 0s linear 0.6s;
  transition: transform 0.6s ease 0s, opacity 0s linear 0.6s, -webkit-transform 0.6s ease 0s;
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 29999;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
          backdrop-filter: blur(10px) saturate(150%);
}
.cookie-consent-notice-bar .wrap {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cookie-consent-notice-bar.show {
  opacity: 1;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  pointer-events: all;
  -webkit-transition: opacity 0s linear 0s, -webkit-transform 0.6s ease 0s;
  transition: opacity 0s linear 0s, -webkit-transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s, opacity 0s linear 0s;
  transition: transform 0.6s ease 0s, opacity 0s linear 0s, -webkit-transform 0.6s ease 0s;
}
.cookie-consent-notice-bar p {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.cookie-consent-notice-bar p a,
.cookie-consent-notice-bar p a:link {
  color: #ffffff;
  text-decoration: underline;
}
.cookie-consent-notice-bar .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-left: 20px;
}
.cookie-consent-notice-bar .btn > div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 15px;
  white-space: nowrap;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 42px;
  padding: 0 40px;
  border: 2px solid var(--key-color);
  color: var(--key-color);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  font-weight: 500;
}
.cookie-consent-notice-bar .btn > div:not(#accept_cookie) {
  border-color: #ffffff;
  color: #ffffff;
}
.cookie-consent-notice-bar .btn > div#accept_cookie {
  color: #ffffff;
  background-color: var(--key-color);
}
@media (pointer: fine) {
  .cookie-consent-notice-bar .btn > div {
    -webkit-transition: color 0.1s linear 0s, background-color 0.1s linear 0s, border-color 0.1s linear 0s;
    transition: color 0.1s linear 0s, background-color 0.1s linear 0s, border-color 0.1s linear 0s;
  }
  .cookie-consent-notice-bar .btn > div:hover {
    color: var(--font-color) !important;
    border-color: #ffffff !important;
    background-color: #ffffff !important;
  }
}

@media (max-width: 768px) {
  .cookie-consent-notice-bar .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie-consent-notice-bar .wrap p {
    margin-bottom: 15px;
  }
  .cookie-consent-notice-bar .wrap .btn {
    margin-left: auto;
  }
}
@media (max-width: 450px) {
  .cookie-consent-notice-bar .btn {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .cookie-consent-notice-bar .btn > div {
    width: 100%;
  }
}
@media (max-width: 390px) {
  .cookie-manage-popup .control-section .control-btn label input:checked ~ span:after {
    display: none !important;
  }
  .cookie-manage-popup .control-section h4 i {
    font-size: 10px;
  }
  .cookie-manage-popup .control-section h4 {
    font-size: 14px;
  }
}