.maxw {
width:600px !important;
}
.flare9 {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  animation-timing-function: ease linear;
  backface-visibility: hidden;
  animation-fill-mode: backwards;
    height: 100%;
    width: 30px;
    transform: skewX(-45deg); // Наклон
    animation: flareAnimation;
    left: -150%;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.9));
    animation: flareAnimation 2s infinite ; // Время и тип анимации можно менять
}
.ba-image-modal.instagram-modal {
z-index:999999999999999999999999999999999;
}
.ba-forms-modal-wrapper.ba-form-lightbox-layout{
z-index:999999999999999999999999999 ;
}
.animate-grow {
	animation: animate_grow 2s infinite;
}
.animate-grow:hover {
	animation: none;
}
 
@keyframes animate_grow {
	0% {
		transform: scale3d(1, 1, 1);
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}
	100% {
		transform: scale3d(1, 1, 1);
	}
}