.appWindowBackground {
  position                   : fixed;
  top                        : 0;
  bottom                     : 0;
  left                       : 0;
  right                      : 0;
  width                      : 100%;
  height                     : 100%;
  outline                    : 0;
  background                 : black;
  z-index                    : 1000;
  display                    : none;
  opacity                    : 0.5;
  -webkit-overflow-scrolling : touch;
}

.appWindowContainer {
  position                   : fixed;
  top                        : 0;
  bottom                     : 0;
  left                       : 0;
  right                      : 0;
  width                      : 100%;
  height                     : 100%;
  overflow                   : hidden;
  z-index                    : 1001;
  display                    : none;
  -webkit-overflow-scrolling : touch;
}

.appWindow {
  margin     : 0 auto;
  margin-top : 30px;
  width      : 80%;
  height     : 75%;
  max-width  : 640px;
  max-height : 360px;
  border     : 1px solid #e7e7e7;
  background : #f8f8f8;
  overflow   : hidden;
  box-shadow : 0 3px 9px rgba(0, 0, 0, 0.5);
}

.appWindowContent {
  width      : 100%;
  height     : 0px;
  overflow-x : hidden;
  overflow-y : scroll;
  word-wrap  : break-word;
}