.cookie-consent {
  background-color: #000 !important;
  padding: 10px 40px !important;
  color: #fff !important;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999;
}
.cookie-consent.cookie-consent-minimal {
  bottom: 1em;
  left: 1em;
  padding: 1.2em !important;
  border-radius: 5px;
  max-width: 24em;
  flex-direction: column;
  text-align: center;
}
.cookie-consent.cookie-consent-minimal .cookie-consent__message {
  display: block;
  height: auto !important;
  line-height: 26px !important;
  text-align: left;
}
.cookie-consent.cookie-consent-minimal .cookie-consent__agree {
  float: none;
  margin-top: 5px;
}
.cookie-consent .cookie-consent-body {
  max-width: 1170px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.cookie-consent .cookie-consent__message {
  height: 32px !important;
  line-height: 32px !important;
}
.cookie-consent .cookie-consent__message a {
  color: #fff !important;
  text-decoration: underline;
}
.cookie-consent .cookie-consent__agree {
  float: right;
  color: #fff !important;
  border: 1px solid #fff !important;
  font-size: 11px;
  cursor: pointer;
}
.cookie-consent .cookie-consent__agree:hover {
  background: #fff !important;
  color: #000 !important;
}

body[dir=rtl] .cookie-consent.cookie-consent-minimal {
  right: 1em;
}
body[dir=rtl] .cookie-consent.cookie-consent-minimal .cookie-consent__agree {
  float: none;
}
body[dir=rtl] .cookie-consent .cookie-consent__agree {
  float: left;
}

@media screen and (max-width: 767px) {
  .cookie-consent.cookie-consent-minimal {
    max-width: none;
    right: 1em;
  }
  .cookie-consent .cookie-consent-body {
    text-align: center;
  }
  .cookie-consent .cookie-consent-body .cookie-consent__message {
    line-height: 25px !important;
    display: block;
    height: auto !important;
  }
  .cookie-consent .cookie-consent-body .cookie-consent__agree {
    float: none;
    margin-top: 5px;
  }
  body[dir=rtl] .cookie-consent .cookie-consent__agree {
    float: none;
  }
}
.custom-accordion {
  width: 100%;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  overflow: hidden;
  padding: 0;
}
.custom-accordion .accordion__item {
  list-style-type: none;
  margin-bottom: 5px;
}

.accordion__link {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px 15px 45px;
  position: relative;
  transition: all 0.4s ease;
  width: 100%;
  overflow: hidden;
  font-size: 16px;
  font-weight: 600;
  background: rgba(199, 199, 199, 0.3490196078);
  color: #444;
  border-radius: 0;
}

.accordion__link:before, .accordion__link:after {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: #222;
  transition: transform 0.4s ease;
}

.accordion__link:after {
  transform: translateY(-50%) rotate(90deg);
}

.accordion__submenu {
  background: #f5f5f5;
  display: none;
  font-size: 16px;
  padding: 10px;
}
.accordion__submenu li {
  list-style-type: none;
}

.accordion__submenu-item {
  padding: 10px;
}

.accordion__submenu-link {
  color: #ccd1dd;
}

.is-open .accordion__link:after {
  transform: translateY(-50%) rotate(0deg);
}

.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 25px;
}

.switch input {
  display: none;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #dedede;
  border-radius: 40px;
  transition: 0.4s;
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  background: #fff;
  border-radius: 50%;
  left: 4px;
  bottom: 4px;
  transition: 0.4s;
}

.switch input:checked + .slider {
  background: #fe8304;
}

.switch input:checked + .slider:before {
  transform: translateX(20px);
}

#manageCookiesModal {
  z-index: 999999 !important;
}

.manage-cookie-text > p {
  font-size: 16px;
  color: #000;
}

.manage-cookie-text > p a {
  color: #fe8304;
}
