[x-cloak] { display: none !important; }
/* The device with borders */
.tablet {
    position: relative;
    width: 1440px;
    height: 1024px;
    margin: auto;
    border: 16px black solid;
    border-top-width: 60px;
    border-bottom-width: 60px;
    border-radius: 36px;
    z-index: 1;
  }
  
  /* The horizontal line on the top of the device */
  .tablet:before {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 10px;
  }
  
  /* The circle on the bottom of the device */
  .tablet:after {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    position: absolute;
    left: 50%;
    bottom: -65px;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 50%;
    z-index: -1;
  }
  
  /* The screen (or content) of the device */
  .tablet .content {
    width: 1420px;
    height: 920px;
    background: white;
    margin: -1px;
  }

  /* The device with borders */
.smartphone {
    position: relative;
    width: 480px;
    height: 800px;
    margin: auto;
    border: 16px black solid;
    border-top-width: 60px;
    border-bottom-width: 60px;
    border-radius: 36px;
    z-index: 1;
  }
  
  /* The horizontal line on the top of the device */
  .smartphone:before {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 10px;
  }
  
  /* The circle on the bottom of the device */
  .smartphone:after {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    position: absolute;
    left: 50%;
    bottom: -65px;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 50%;
    z-index: -1;
  }
  
  /* The screen (or content) of the device */
  .smartphone .content {
    width: 448px;
    height: 679px;
    background: white;
  }

  .smartphone .content .frame {
    width:100%;
    border:none;
    height:100%;
    overflow: clip !important;
    overflow-clip-margin: content-box !important;
  }

  .smartphone .content .frame .framedContent {
    overflow-y: auto;
    height: 100%;
  }

  .tablet .content .frame {
    width:100%;
    border:none;
    height:100%;
    overflow: clip !important;
    overflow-clip-margin: content-box !important;
  }

  .tablet .content .frame .framedContent {
    overflow-y: auto;
    height: 100%;
  }

  .app-modal {
    z-index: 1000;
  }

  .overlay {
    
  }