
  .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;
  }
  
  .expandable.expanded {
    height: auto;
  }

  .popupDiv {
    position: fixed;
    top: 0em;
    left: 0em;
    right: 0em;
    bottom: 0em;
    
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  
  .popupDiv > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: calc(100% - 2em);
    height: calc(100% - 2em);
    
    overflow-y: scroll;
    
    background: #ffffff;
  }
  
  .popupDiv > div > button {
    font-size: 2rem;
    line-height: 100%;
    
    position: absolute;
    top: 0em;
    right: 0em;
    
    width: 1em;
    height: 1em;
    
    padding: 0em;
    
    color: #fff;
    background-color: #333333;
  }
  
  .popupDiv > div > img {
    width: 100%;
    background-color: #ffffff;
    border-top: 0.05em solid #dbdddd;
  }
  
  .popupDiv > div > div {
    font-size: 0.9em;
    max-width: 50em;
    margin: 2em auto 1em;
    padding: 1rem 2rem 1rem;
    padding-top: 0rem;
    
    background-color: #fff;
  }
  
  .popupDiv > div > div > p {
    font-size: 0.9em;
    margin: 0.5em 0em 0em;
  }
  
  .popupDiv > div > div > a {
    font-weight: 700;
  }
  
  @media screen and (min-width: 500px) {
    
    .popupDiv > div {
      width: calc(100% - 6em);
      height: calc(100% - 6em);
    }
  }
  
  @media screen and (min-width: 900px) {
    
    .popupDiv > div {
      /*width: auto;*/
      /*height: auto;*/
      
      /*max-width: calc(100% - 20vmin);*/
      max-width: 1200px;
      max-height: calc(100% - 20vmin);
    }
  }

  .displayNone {
    display: none !important;
  }
 
