.tar_cookiesBar {
  max-width: 100vw;
  min-height: 30vh;
  max-height: 350px;
  position: fixed;
  bottom: -100%;
  transition: ease-out 150ms;
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
  z-index: 999999999999999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid white;
}
.tar_cookiesBar__container {
  max-width: 1000px;
  margin: 0 auto;
}
.tar_cookiesBar p,
.tar_cookiesBar a {
  font-family: 'Helvetica', sans-serif;
}

.tar_cookiesBar__text {
  display: inline-block;
  max-width: calc(100% - 240px);
  margin-right: 20px;
  vertical-align: middle;
}

.tar_cookiesBar__text p {
  color: white;
  font-size: 14px;
  margin: 0px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.tar_modal_cookies {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 99999999999999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}
.tar_modal_cookies.open {
  pointer-events: all !important;
  opacity: 1 !important;
}
.tar_modal_cookies__container {
  position: relative;
  overflow-y: auto;
  background: white;
  width: calc(100% - 30px);
  max-width: 600px;
  max-height: 600px;
  margin: 15px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  padding: 20px;
}

.tar_modal_cookies__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 3px solid var(--specific-brand-color-primary-02);
  color: var(--specific-brand-color-primary-02);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: ease-out 120ms;
}
.tar_modal_cookies__close:hover {
  background: var(--specific-brand-color-primary-02);
}
.tar_modal_cookies__close:hover svg {
  fill: white;
}
.tar_modal_cookies__subtitle {
  margin: 0 0px 16px 0px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #333333;
}

.tar_modal_cookies__btn--secondary {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.3;
  padding: 0.625rem 2rem;
  margin-right: 5px;
  font-weight: var(--global-font-weight-regular);
  color: var(--specific-brand-color-primary-02) !important;
  background: white;
  border: 1px solid var(--specific-brand-color-primary-02);
}
.tar_modal_cookies__btn--secondary:hover {
  color: white !important;
  background: var(--specific-brand-color-primary-02);
}

.tar_cookies_info {
  margin: 0px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.8;
}
.tar_cookies {
  background: #f9f9f9;
  padding: 8px 13px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  color: #7a7a7a;
  font-size: 14px;
  font-style: italic;
  margin: 0px;
}

.toggle {
  cursor: pointer;
  display: inline-block;
  margin-bottom: 28px;
}
.toggle-switch {
  display: inline-block;
  background: #ccc;
  border-radius: 16px;
  width: 58px;
  height: 32px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}

.toggle-switch:before,
.toggle-switch:after {
  content: '';
}

.toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.25);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.5);
}
.toggle-checkbox:checked + .toggle-switch {
  background: var(--specific-brand-color-primary-02);
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 30px;
}

.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}
.toggle-label {
  margin-left: 5px;
  position: relative;
  top: 0px;
  font-size: 14px;
}

@media (max-height: 600px) {
  .tar_modal_cookies__container {
    height: calc(100% - 30px);
  }
}

@media (max-width: 1024px) {
  .tar_cookiesBar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tar_cookiesBar__container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tar_cookiesBar__text {
    text-align: center;
    margin-bottom: 15px;
    margin-right: 0;
    max-width: 100%;
  }

  .tar_cookiesBar__btn {
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 600px) {
  .tar_cookiesBar {
    padding: 10px 10px;
  }
  .tar_cookiesBar__text {
    margin-bottom: 5px;
  }
}
