/*Variables*/
/*Mixins*/
.media-wrapper {
  position: relative;
}
.media-wrapper.consent-visible {
  min-height: 360px;
}
.consent-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 30px;
  cursor: pointer;
}
.consent-overlay .icon-youtube {
  margin-bottom: 30px;
}
.consent-overlay .icon-youtube:before {
  font-size: 2em;
}
.consent-overlay .icon-location {
  margin-bottom: 30px;
}
.consent-overlay .icon-location:before {
  font-size: 2.5em;
}
@media (max-width: 576px) {
  .consent-overlay br {
    display: none;
  }
}
.consent-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.consent-toggle input {
  display: none;
}
.consent-slider {
  width: 42px;
  height: 22px;
  background: #3BB88C;
  border-radius: 11px;
  position: relative;
  transition: background 0.2s;
}
.consent-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.2s;
}
.consent-toggle input:checked + .consent-slider {
  background: #3BB88C;
}
.consent-toggle input:checked + .consent-slider::before {
  transform: translateX(20px);
}