@import '../css/funcs';

.CUIBackground {
  @include fillBox;

  .bg {
    @include fillBox;
    background: linear-gradient($BackgroundColorTop, $BackgroundColorBottom);
    pointer-events: none;
  }
  
  .topshadow {
    background: linear-gradient(rgba(black, 0.6), transparent);
    position: absolute;
    top:0; left:0; right:0; height: .3rem;
    z-index: 99;
    pointer-events: none;
  }
  
  .imgbg {
    position: fixed;
    left: 250px;
    width: 500px;
    top: 0;
    height: 100%;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  
    img {
      max-width: 100%;
      max-height: 100%;
    }
  }
}