.dialog {
  position: fixed;
  border: 3px #CCC solid;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  z-index: 201;
  background: #FFF;
  margin-top: 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.dialog-container-fixed .dialog {
  position: relative;
}
.dialog-header {
  display: flex;
  justify-content: space-between;
}
.dialog-substrate {
  position: fixed;
  z-index: 200;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.dialog-container-fixed {
  position: fixed;
  height: 100%;
  width: 100%;
  overflow: auto;
  z-index: 201;
  top: 0;
}
.dialog-close {
  cursor: pointer;
}
.dialog-body-no-scroll {
  overflow: hidden;
}
.dialog-container-no-scroll {
  overflow: hidden;
}
