/* 레이어 팝업 */
.layer_open .dimmed_layer,
.layer_open .basic_layer {
  display: block;
}
.dimmed_layer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.1;
  filter: alpha(opacity=10);
}
.basic_layer {
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 100%;
}
.basic_layer .inner_basic_layer {
  display: table;
  width: 100%;
  height: 100%;
}
.basic_layer .wrap_cont {
  display: table-cell;
  padding: 60px 0;
  vertical-align: middle;
}
.basic_layer .cont_layer {
  position: relative;
  z-index: 55;
  width: 428px;
  height: auto;
  margin: 0 auto;
  padding: 50px 55px 55px;
  background-color: #fff;
  text-align: center;
}
.layer_head {
  overflow: hidden;
  max-width: 378px;
}
.layer_body {
  width: 100%;
  padding-bottom: 28px;
}
.layer_head .tit_layer {
  display: block;
  margin-bottom: 15px;
  font-weight: normal;
  font-size: 21px;
  line-height: 28px;
}
.layer_body .desc_txt {
  margin-top: 3px;
  font-size: 15px;
  line-height: 27px;
}
.layer_body .txt_emph {
  color: #ff3a30;
}
.layer_foot {
  display: inline-block;
  overflow: hidden;
  margin-right: 10px;
  vertical-align: top;
}
.layer_foot .btn_layer {
  float: left;
  width: auto;
  height: 42px;
  margin-left: 10px;
  padding: 0 30px;
  line-height: 42px;
  background-color: #1e1e1e;
  color: #fff;
}
.layer_foot .btn_layer:hover,
.layer_foot .btn_layer:focus {
  color: #626262;
}
.layer_foot .btn_close {
  position: absolute;
  top: 15px;
  right: 13px;
  width: 25px;
  height: 25px;
}
.layer_foot .btn_close .ico_cs {
  width: 18px;
  height: 18px;
  margin: 3px auto;
  background-position: -48px -40px;
}

@media (max-width: 480px) {
  .basic_layer .cont_layer {
    width: auto;
  }
}