/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 02 2025 | 19:59:00 */
#striped-background {
  position: relative;
  box-sizing: border-box;
}

#striped-background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 78px;
  height: 100%; /* теперь по всей высоте контейнера */
  background-image: repeating-linear-gradient(
    135deg,
    #E9ECF2,
    #E9ECF2 1px,
    transparent 1.5px,
    transparent 6px
  );
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1358px) {
  #striped-background::after {
    display: none !important;
  }
}

