.modal-wrapper {
  width: 100%;
  background: rgba(0, 0, 0, 0);
}
.modal-wrapper--overlay-active {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 2999999999;
  background: rgba(0, 0, 0, 0.5);
}
.cookies-consent-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: max-content;
  padding: 21px 15px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100001;
  box-shadow: 0px 0px 66px 22px rgba(0, 0, 0, 0.18);
  background-color: #ffffff;
  color: #333;
  font-family: 'Rubik';
  border-radius: 8px 8px 0 0;
}
.cookies-consent-banner__title {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 16px;
}
.cookies-consent-banner__description {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 24px;
}
.cookies-consent-banner__actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.cookies-consent-banner__link {
  padding: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  background: transparent;
  color: #606060 !important;
  text-decoration: underline;
  border: none;
  cursor: pointer;
}
.cookies-consent-banner__button {
  width: 290px;
  max-width: 100%;
  font-size: 16px;
  line-height: 48px;
  font-weight: 500;
  text-align: center;
  border-radius: 24px;
  background: #9d1e23;
  color: #ffffff;
  border: none;
  padding: 0;
  cursor: pointer;
}
.cookies-consent-configuration__content {
  width: 100%;
  height: 100%;
  background: white;
  font-family: 'Rubik';
  display: flex;
  flex-direction: column;
}
.cookies-consent-configuration__header {
  background: #f8f8f8;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.cookies-consent-configuration__body {
  padding: 8px 16px;
  overflow-y: auto;
}
.cookies-consent-configuration__actions {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e7e8e9;
}
.cookies-consent-configuration__title {
  color: #1b1b1d;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  margin-bottom: 0;
}
.cookies-consent-configuration__close {
  border: none;
  background: transparent;
  display: flex;
  padding: 0;
  padding-left: 16px;
  cursor: pointer;
}
.cookies-consent-configuration__description {
  color: #4b4d53;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 16px;
}
.cookies-consent-configuration__wrapper {
  margin-bottom: 16px;
}
.cookies-consent-configuration__link {
  padding: 0;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  display: flex;
  background: transparent;
  color: #606060;
  text-decoration: underline;
  border: none;
  cursor: pointer;
}
.cookies-consent-configuration__reject {
  padding: 12px;
  line-height: 14px;
}
.cookies-consent-configuration__button {
  width: 290px;
  max-width: 100%;
  font-size: 16px;
  line-height: 48px;
  font-weight: 500;
  text-align: center;
  border-radius: 24px;
  background: #9d1e23;
  color: #ffffff;
  border: none;
  padding: 0;
  cursor: pointer;
}
.cookies-consent-options {
  font-family: 'Rubik';
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cookies-consent-option {
  border: 1px solid #e7e8e9;
  border-radius: 8px;
  overflow: hidden;
}
.cookies-consent-option__header {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  font-size: 12px;
  line-height: 18px;
  color: #333;
}
.cookies-consent-option__body {
  color: #444;
  font-size: 12px;
  line-height: 18px;
  background: #f8f8f8;
  padding: 0 12px 0;
  height: 0;
}
.cookies-consent-option__title {
  font-weight: 400;
  display: flex;
  flex-grow: 1;
}
.cookies-consent-option__info {
  font-weight: 500;
  white-space: nowrap;
}
.cookies-consent-option__arrow {
  display: flex;
  padding: 0;
  border: none;
  background: transparent;
  transition: 0.4s;
  cursor: pointer;
}
.cookies-consent-option__switch {
  width: 56px;
  height: 32px;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 16px;
  background: #d0d0d0;
  border: none;
  padding: 4px;
  transition: 0.4s;
  cursor: pointer;
}
.cookies-consent-option__switch::after {
  content: '';
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: 0.4s;
}
.cookies-consent-option__switch.enabled {
  background: #17ab4d;
}
.cookies-consent-option__switch.enabled::after {
  transform: translateX(24px);
}
.cookies-consent-option.active .cookies-consent-option__body {
  padding: 8px 12px 12px;
  height: auto;
}
.cookies-consent-option.active .cookies-consent-option__arrow {
  transform: rotate(-180deg);
}
@media screen and (min-width: 768px) {
  .cookies-consent-banner {
    max-width: 850px;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
    padding: 32px 64px 40px 64px;
    box-shadow: 0px 0px 66px 22px rgba(0, 0, 0, 0.18);
    flex-direction: row;
    gap: 40px;
  }
  .cookies-consent-banner__title {
    font-size: 20px;
    line-height: 28px;
  }
  .cookies-consent-banner__description {
    margin-bottom: 0;
  }
  .cookies-consent-banner__actions {
    width: 170px;
    flex-direction: column-reverse;
    gap: 16px;
  }
  .cookies-consent-banner__button {
    font-size: 14px;
    line-height: 40px;
  }
  .cookies-consent-configuration__content {
    width: 627px;
    height: 556px;
    border-radius: 12px;
    overflow: hidden;
  }
  .cookies-consent-configuration__header {
    padding: 16px 16px 16px 24px;
  }
  .cookies-consent-configuration__body {
    padding: 0;
    padding-left: 24px;
    margin: 16px 16px 16px 0;
  }
  .cookies-consent-configuration__body::-webkit-scrollbar {
    width: 8px;
  }
  .cookies-consent-configuration__body::-webkit-scrollbar-thumb {
    background: #9799a1;
    border-radius: 8px;
  }
  .cookies-consent-configuration__body::-webkit-scrollbar-track {
    background: #e7e8e9;
    border-radius: 8px;
  }
  .cookies-consent-configuration__actions {
    flex-direction: row;
    justify-content: end;
    gap: 24px;
  }
  .cookies-consent-configuration__title {
    font-size: 16px;
    line-height: 24px;
  }
  .cookies-consent-configuration__description {
    font-size: 13px;
    line-height: 20px;
  }
  .cookies-consent-configuration__button {
    font-size: 14px;
    line-height: 38px;
    max-width: 234px;
  }
  .cookies-consent-option {
    margin-right: 15px;
  }
  .cookies-consent-option__title {
    font-size: 14px;
    line-height: 21px;
  }
  .cookies-consent-option__body {
    font-size: 13px;
    line-height: 21px;
  }
}
