/* --*- coding: utf-8 -*- */

/*
 * ダイアログに関するスタイル
 */

/* Default class for an overlay */
.ow-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;

  background: #424242;
  opacity: 0.8;
}

/* Default class for both hidden overlay and modal window */
.ow-closed {
  display: none;
}

/* Default class for modal window */
.modal {
  height: 300px;
  width: 400px;
  padding: 1em;
  position: fixed;
  z-index: 120;
  top: 130px;
  left: 50%;
  background-color: #fff;
}

.dlg_topbar{  
  height: 3ex;
  margin-bottom: 15px;
  padding-bottom: 5px;
  position:relative;  
  border-bottom: 1px dotted #ccc;
}

.dlg_title {
  font-weight: bold;
  font-size: 18px;
}

.dlg_close-button {
  border: none;    
  position:absolute;  
  right:0;  
  top:0;  
  color: #fff;
  background: #000;
}

#dialogs > div > p:last-of-type {
  margin-top: 15px;
  font-size: 12px;
  color: #aaa;
}