
/**
 * cosyModal
 * @author Jan Ebsen <xicrow@gmail.com>
 * @version 1.0.0
 * @date 2014-02-06
 * @copyright Jan Ebsen 2014
 */

.cosyModal {
  margin: 50px auto;
  padding: 10px;
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  font-size: 13px;
  line-height: 1.5;
  color: #333;
  background-color: #FFF;
  z-index: 1001;
  border-radius: 5px;
  box-shadow: 0px 0px 5px #000;
  overflow: auto;
}

.cosyModal .close {
  margin: 0px;
  padding: 5px;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  font-weight: bold;
  font-size: 25px;
  line-height: 20px;
  color: #AAA;
  cursor: pointer;
  overflow: hidden;
}

.cosyModal .close:hover { color: #444; }

.cosyModal h1 {
  margin: -10px 0px 0px -10px;
  padding: 10px 10px;
  width: 100%;
  font-weight: normal;
  font-size: 26px;
  line-height: 1;
  color: #555;
  background-color: #F3F3F3;
  border-bottom: 1px solid #EEE;
  border-radius: 5px 5px 0px 0px;
  box-shadow: 0px -1px 0px #FFF inset;
}

.cosyModal-overlay {
  margin: 0px;
  padding: 0px;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: none;
  z-index: 1000;
}
