@charset "utf-8";

/*팝업레이어*/
.pop-layer .pop-container {

}
.pop-top {
	padding:1rem 2rem;
	font-size:1.7rem;
	background:#193d00;
	color:#FFF;
}
.pop-layer p.ctxt {
  color: #666;
  line-height: 25px;
  padding:1rem 2rem;
  font-size:1.4rem;
  max-height:300px;
  overflow-y:scroll;
}

.pop-layer .btn-r {
  width: 100%;
  padding:1rem 2rem;
  border-top: 1px solid #DDD;
  text-align: right;
}

.pop-layer {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: auto;
  background-color: #fff;
  z-index: 10;
  border-radius:10px;
  overflow:hidden;
}

.dim-layer {
  display: none;
  position: fixed;
  _position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.dim-layer .dimBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
  filter: alpha(opacity=50);
}

.dim-layer .pop-layer.view {
  display: block;
  transform: translate(-50%, -50%);
}

a.btn-layerClose {
  display: inline-block;
  height: 25px;
  padding: 0 14px 0;
  background:#555;
  border:1px solid#555;
  font-size: 13px;
  color: #fff;
  line-height: 22px;
  border-radius:.3rem;
  transition:.3s;
}

a.btn-layerClose:hover {
  border: 1px solid #193d00;
  background-color: #193d00;
  color: #fff;
}
