div.dialog.hide {
  left: 100%; }

div.dialog {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: calc(100vw - 60px);
  height: calc(100vh - 60px);
  left: 0px;
  top: 0px;
  z-index: 100;
  padding: 30px;
  justify-content: center;
  align-items: center;
  transition: all 1s; }
  div.dialog .dialog-cont {
    background-color: white;
    max-width: 940px;
    height: auto; }
    div.dialog .dialog-cont .dialog-head {
      align-items: center;
      background-color: #0091EA;
      height: 50px;
      padding: 0px 15px; }
      div.dialog .dialog-cont .dialog-head [name="exit"] {
        width: 30px;
        height: 30px;
        font-size: 18px; }
      div.dialog .dialog-cont .dialog-head .title {
        margin: 0px 15px;
        color: white; }
    div.dialog .dialog-cont .dialog-body {
      min-height: 160px;
      margin: 30px; }
    div.dialog .dialog-cont .dialog-footer {
      justify-content: flex-end;
      align-items: center;
      height: 49px;
      padding: 7.5px 15px;
      border-top: 1px solid lightgray; }
