.one-city-pblur-yes {
  --one-city-pblur-intensity: 400;
  --one-city-pblur-size: 100%;
  --one-city-pblur-tint: #101010;
  /* position: relative; */
}

.one-city-pblur-overlay,
[data-progressive-blur-effect] {
  pointer-events: none;
  overflow: hidden;
}

.one-city-pblur-overlay {
  position: absolute;
  z-index: 1;
}

.one-city-pblur-yes.one-city-pblur-dir-bottom .one-city-pblur-overlay {
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--one-city-pblur-size);
  background-image: linear-gradient(
    to bottom,
    transparent 0%,
    var(--one-city-pblur-tint) 100%
  );
}

.one-city-pblur-yes.one-city-pblur-dir-top .one-city-pblur-overlay {
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: var(--one-city-pblur-size);
  background-image: linear-gradient(
    to top,
    transparent 0%,
    var(--one-city-pblur-tint) 100%
  );
}

.one-city-pblur-yes.one-city-pblur-dir-left .one-city-pblur-overlay {
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  width: var(--one-city-pblur-size);
  height: 100%;
  background-image: linear-gradient(
    to left,
    transparent 0%,
    var(--one-city-pblur-tint) 100%
  );
}

.one-city-pblur-yes.one-city-pblur-dir-right .one-city-pblur-overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: var(--one-city-pblur-size);
  height: 100%;
  background-image: linear-gradient(
    to right,
    transparent 0%,
    var(--one-city-pblur-tint) 100%
  );
}

.one-city-pblur-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.one-city-pblur-layer--1 {
  z-index: 1;
  -webkit-backdrop-filter: blur(calc(1px * var(--one-city-pblur-intensity, 50) / 50));
  backdrop-filter: blur(calc(1px * var(--one-city-pblur-intensity, 50) / 50));
}

.one-city-pblur-layer--2 {
  z-index: 2;
  -webkit-backdrop-filter: blur(calc(3px * var(--one-city-pblur-intensity, 50) / 50));
  backdrop-filter: blur(calc(3px * var(--one-city-pblur-intensity, 50) / 50));
}

.one-city-pblur-layer--3 {
  z-index: 3;
  -webkit-backdrop-filter: blur(calc(6px * var(--one-city-pblur-intensity, 50) / 50));
  backdrop-filter: blur(calc(6px * var(--one-city-pblur-intensity, 50) / 50));
}

[data-position="bottom"] .one-city-pblur-layer--1,
.one-city-pblur-overlay[data-position="bottom"] .one-city-pblur-layer--1 {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 25%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 25%);
}

[data-position="bottom"] .one-city-pblur-layer--2,
.one-city-pblur-overlay[data-position="bottom"] .one-city-pblur-layer--2 {
  -webkit-mask-image: linear-gradient(to bottom, transparent 25%, #000 75%);
  mask-image: linear-gradient(to bottom, transparent 25%, #000 75%);
}

[data-position="bottom"] .one-city-pblur-layer--3,
.one-city-pblur-overlay[data-position="bottom"] .one-city-pblur-layer--3 {
  -webkit-mask-image: linear-gradient(to bottom, transparent 75%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 75%, #000 100%);
}

[data-position="top"] .one-city-pblur-layer--1,
.one-city-pblur-overlay[data-position="top"] .one-city-pblur-layer--1 {
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 25%);
  mask-image: linear-gradient(to top, transparent 0%, #000 25%);
}

[data-position="top"] .one-city-pblur-layer--2,
.one-city-pblur-overlay[data-position="top"] .one-city-pblur-layer--2 {
  -webkit-mask-image: linear-gradient(to top, transparent 25%, #000 75%);
  mask-image: linear-gradient(to top, transparent 25%, #000 75%);
}

[data-position="top"] .one-city-pblur-layer--3,
.one-city-pblur-overlay[data-position="top"] .one-city-pblur-layer--3 {
  -webkit-mask-image: linear-gradient(to top, transparent 75%, #000 100%);
  mask-image: linear-gradient(to top, transparent 75%, #000 100%);
}

[data-position="left"] .one-city-pblur-layer--1,
.one-city-pblur-overlay[data-position="left"] .one-city-pblur-layer--1 {
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 25%);
  mask-image: linear-gradient(to left, transparent 0%, #000 25%);
}

[data-position="left"] .one-city-pblur-layer--2,
.one-city-pblur-overlay[data-position="left"] .one-city-pblur-layer--2 {
  -webkit-mask-image: linear-gradient(to left, transparent 25%, #000 75%);
  mask-image: linear-gradient(to left, transparent 25%, #000 75%);
}

[data-position="left"] .one-city-pblur-layer--3,
.one-city-pblur-overlay[data-position="left"] .one-city-pblur-layer--3 {
  -webkit-mask-image: linear-gradient(to left, transparent 75%, #000 100%);
  mask-image: linear-gradient(to left, transparent 75%, #000 100%);
}

[data-position="right"] .one-city-pblur-layer--1,
.one-city-pblur-overlay[data-position="right"] .one-city-pblur-layer--1 {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 25%);
  mask-image: linear-gradient(to right, transparent 0%, #000 25%);
}

[data-position="right"] .one-city-pblur-layer--2,
.one-city-pblur-overlay[data-position="right"] .one-city-pblur-layer--2 {
  -webkit-mask-image: linear-gradient(to right, transparent 25%, #000 75%);
  mask-image: linear-gradient(to right, transparent 25%, #000 75%);
}

[data-position="right"] .one-city-pblur-layer--3,
.one-city-pblur-overlay[data-position="right"] .one-city-pblur-layer--3 {
  -webkit-mask-image: linear-gradient(to right, transparent 75%, #000 100%);
  mask-image: linear-gradient(to right, transparent 75%, #000 100%);
}

.one-city-pblur-yes > .e-con-inner > .elementor-element,
.one-city-pblur-yes > .elementor-element,
.one-city-pblur-yes > .elementor-widget-wrap,
.one-city-pblur-yes > .elementor-container {
  position: relative;
  z-index: 2;
}

.one-city-pblur-yes > .elementor-background-video-container,
.one-city-pblur-yes > .elementor-background-slideshow,
.one-city-pblur-yes > .elementor-background-overlay,
.one-city-pblur-yes > .elementor-motion-effects-container,
.one-city-pblur-yes > .e-con-inner > .elementor-background-video-container,
.one-city-pblur-yes > .e-con-inner > .elementor-background-slideshow,
.one-city-pblur-yes > .e-con-inner > .elementor-background-overlay {
  z-index: 0;
}

@media (prefers-reduced-transparency: reduce) {
  .one-city-pblur-layer {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
