@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes fade-out-down {
  from {
    opacity: 1;
    transform: translateY(0%);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.snc-consent-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 5px;
  padding: 10px;
  color: #fff;
  background-color: rgb(51, 51, 51);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 0;
  transform: translateY(100%);
  animation-duration: 1s;
  animation-fill-mode: forwards;
  z-index: 100000000;
}
@media (min-width: 768px) {
  .snc-consent-banner {
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.snc-consent-banner.fade-in-up {
  animation-name: fade-in-up;
}
.snc-consent-banner.fade-out-down {
  animation-name: fade-out-down;
}
.snc-consent-banner__msg {
  flex: 1 1 auto;
}
.snc-consent-banner__msg p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.375;
}
.snc-consent-banner__msg p:last-child {
  margin-bottom: 0;
}
.snc-consent-banner__msg p a {
  color: #fff;
  text-decoration: underline;
}
.snc-consent-banner__close {
  flex: 0 0 auto;
}
.snc-consent-banner__close button {
  display: block;
  border-width: 0;
  padding: 0 0 6px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  background-color: transparent;
}
.snc-consent-banner__close button span {
  display: block;
}

.modal-backdrop {
  z-index: 100000010;
}

.modal {
  z-index: 100000020;
}

.snc-modal--consent {
  color: #212529;
  font-size: 16px;
  line-height: 1.375;
}
.snc-modal--consent h1, .snc-modal--consent h2, .snc-modal--consent h3, .snc-modal--consent h4, .snc-modal--consent h5, .snc-modal--consent h6 {
  color: #212529;
  font-weight: 700;
}
.snc-modal--consent h1 {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1.125;
}
@media (min-width: 768px) {
  .snc-modal--consent h1 {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .snc-modal--consent h1 {
    font-size: 48px;
  }
}
.snc-modal--consent h2 {
  font-size: 30px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .snc-modal--consent h2 {
    font-size: 36px;
  }
}
.snc-modal--consent h3, .snc-modal--consent h4, .snc-modal--consent h5, .snc-modal--consent h6 {
  font-size: 16px;
  line-height: 1.375;
}
.snc-modal--consent p, .snc-modal--consent li {
  font-size: 16px;
  line-height: 1.375;
}
.snc-modal--consent small, .snc-modal--consent .small {
  font-size: 85%;
}
.snc-modal--consent p {
  font-size: 16px;
  line-height: 1.375;
}
.snc-modal--consent .snc-privacy-choices__intro {
  margin-bottom: 20px;
}
.snc-modal--consent .snc-privacy-choices__options {
  margin-bottom: 20px;
}
.snc-modal--consent .snc-privacy-choices__options .form-check {
  margin-bottom: 5px;
}
.snc-modal--consent .snc-privacy-choices__options p {
  font-size: 14px;
}
.snc-modal--consent .snc-privacy-choices__success {
  color: green;
}
.snc-modal--consent .snc-privacy-choices__policy p {
  margin-bottom: 0;
  font-size: 14px;
}
.snc-modal--consent .snc-modal-inset {
  padding: 15px;
}
.snc-modal--consent .snc-modal-button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border-bottom-left-radius: 30px;
  background-color: #fff;
}
.snc-modal--consent .snc-modal-button .close {
  margin-top: -6px;
}
.snc-modal--consent .snc-modal-button.snc-modal-button--hero-font .close {
  margin-top: -4px;
}