
  .wideStripe {
    position: relative;
  }
  
  .wideStripe::before {
    content: "";
    
    width: 100vw;
    height: 100%;
    
    position: absolute;
    top: 0em;
    left: calc((-100vw + 100%) / 2);
    
    z-index: -1;
  }
  
  .expandable {
    height: 0em;
    box-sizing: border-box;
    
    overflow: hidden;
    
    
    transition: height 0.5s;
  }
  

  .displayNone {
    display: none !important;
  }
  
  .positionRelative {
    position: relative;
  }
