.contact_detail_box ul{ 
    font-size: 15px;
      color: #373735;
      letter-spacing: 0.5px;
      line-height: 30px;
      margin-top: 20px;
    }
    /* The switch - the box around the slider */
  .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  #cookiesettingsbtn{
    border-radius:30px;
    background-color: #B2B7FF;
    border-color: #B2B7FF;
  }
  
  .pill{
    border-radius:30px;
    background-color: #B2B7FF;
    border-color: #B2B7FF;
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

.cookie-consent-banner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* z-index: 1000001; */
  z-index: 99999999;
  padding: 20px;
  background: transparent;
  pointer-events: none;
  max-height: 100vh;
  max-height: 100dvh;
  box-sizing: border-box;
}
.cookie-consent-banner.is-visible {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.cookie-consent-banner__inner {
  pointer-events: auto;
  /* max-width: 1120px; */
  margin: 0 auto;
  /* padding: 18px 22px; */
  padding: 32px 32px;
  background: #ffffff;
  color: #1d1d1f;
  border-radius: 28px;
  box-shadow: 0 10px 40px rgba(25, 28, 30, 0.16);
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  width: 100%;
  box-sizing: border-box;
}
.cookie-consent-banner__main {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-consent-banner__art {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  line-height: 0;
}
.cookie-consent-banner__art-svg {
  display: block;
  width: 64px;
  height: 64px;
}
.cookie-consent-banner__copy {
  flex: 1 1 auto;
  min-width: 0;
}
.cookie-consent-banner__title {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #1d1d1f;
}
.cookie-consent-banner__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #5c5f66;
}
.cookie-consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
}
.cookie-consent-banner__btn {
  border-radius: 999px;
  border: 1.5px solid transparent;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.cookie-consent-banner__btn:focus {
  outline: none;
}
.cookie-consent-banner__btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(178, 183, 255, 0.7);
}
.cookie-consent-banner__btn:disabled {
  opacity: 0.65;
  cursor: wait;
}
.cookie-consent-banner__btn--primary {
  background-color: #B2B7FF;
  border-color: #B2B7FF;
  color: #191c1e;
}
.cookie-consent-banner__btn--primary:hover,
.cookie-consent-banner__btn--primary:focus-visible {
  background-color: #9ea4f7;
  border-color: #9ea4f7;
}
.cookie-consent-banner__btn--secondary {
  background: #ffffff;
  border-color: #B2B7FF;
  color: #5b61d6;
}
.cookie-consent-banner__btn--secondary:hover,
.cookie-consent-banner__btn--secondary:focus-visible {
  background: #f4f5ff;
}
.cookie-consent-banner__btn--link {
  background: transparent;
  border-color: transparent;
  color: #5b61d6;
  text-decoration: underline;
  padding-left: 6px;
  padding-right: 6px;
  font-weight: 600;
}
.cookie-consent-banner__btn--link:hover,
.cookie-consent-banner__btn--link:focus-visible {
  color: #3f45b8;
}
.cookie-consent-banner__prefs {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eceef5;
}
.cookie-consent-banner__pref {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #1d1d1f;
}
.cookie-consent-banner__pref input {
  accent-color: #B2B7FF;
}
body.cookie-consent-open {
  padding-bottom: 160px;
}
@media (max-width: 1199px) {
  .cookie-consent-banner__main {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .cookie-consent-banner__copy {
    flex: 1 1 calc(100% - 82px);
  }
}
@media (max-width: 991px) {
  .cookie-consent-banner {
    padding: 12px;
  }
  .cookie-consent-banner__inner {
    padding: 16px;
    border-radius: 22px;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
  }
  /* .cookie-consent-banner__main {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .cookie-consent-banner__copy {
    flex: 1 1 calc(100% - 82px);
  } */
  .cookie-consent-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cookie-consent-banner__art {
    width: 52px;
    height: 52px;
  }
  .cookie-consent-banner__art-svg {
    width: 52px;
    height: 52px;
  }
  .cookie-consent-banner__title {
    font-size: 16px;
  }
  .cookie-consent-banner__text {
    font-size: 13px;
  }
  .cookie-consent-banner__btn {
    width: 100%;
    text-align: center;
  }
  .cookie-consent-banner__btn--link {
    width: auto;
    padding-left: 2px;
  }
  body.cookie-consent-open {
    padding-bottom: 280px;
  }
}
@media (max-height: 400px) {
  .cookie-consent-banner {
    padding: 8px;
  }
  .cookie-consent-banner__inner {
    padding: 12px 14px;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
  }
  .cookie-consent-banner__art {
    width: 40px;
    height: 40px;
  }
  .cookie-consent-banner__art-svg {
    width: 40px;
    height: 40px;
  }
}