@charset "UTF-8";

#dialogue-content {
  background-color: #fff;
  border: 1px solid #ccc;
  height: 90px;
  position: fixed;
  min-width: 200px;
  top: 40px;
  z-index: 5010;

  white-space: nowrap;
  box-shadow:0px 0px 4px;

  /* border-radius */
  -weblit-border-radius: 8px;
     -moz-border-radius: 8px;
      -ms-border-radius: 8px;
       -o-border-radius: 8px;
          border-radius: 8px;
}

#dialogue-back {
  background-color: rgba(0, 0, 0, 0.2);
  height: 120vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 5000;
}

#dialogue-header {
  border: solid #ccc;
  border-width: 0 0 1px 0;
  box-sizing: border-box;
  height: 50px;
  padding: 8px;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

#dialogue-body {
  box-sizing: border-box;
  min-height: 80px;
  min-width: 200px;
  max-height: 90vh;
  max-width: 90vw;
  padding: 8px;
  position: relative;
  width: 100%;
}

#dialogue-footer {
  border: solid #ccc;
  border-width: 1px 0 0 0;
  bottom: 0;
  box-sizing: border-box;
  height: 40px;
  padding: 8px;
  text-align: right;
  width: 100%;
}
