@charset 'UTF-8';

/* popup */
.popup_box {position: absolute; min-width:200px; padding: 10px 10px 35px; border: 1px solid #bbb; border-radius:5px; background-color: #fff; z-index: 99999; box-shadow: 2px 2px 7px #333; -webkit-box-shadow: 2px 2px 7px #333;}
.popup_box p {margin: 0; padding: 0;}
.popup_form_wrap {position:absolute; right:10px; bottom:10px;}
.popup_form {text-align:right;}
.popup_form > * {display:inline-block; height:17px; line-height:17px; font-size:13px; vertical-align:middle; font-family:'돋움','dotum', sans-serif;}
.popup_close {width:36px; background-color:#aaa; border-radius:3px; color:#fff; text-align:center;}

@media screen and (max-width: 768px) {
	.popup_box {max-width: calc(100% - (10px * 4) - 2px); height: auto !important; top: 50% !important; left: 10px !important; transform: translateY(-50%); right: 10px !important; margin: auto;} /* top: 10px !important; bottom: 10px !important; */
	.popup_box img {width: 100% !important; height: auto !important;}
}


/* common_layer */
.common_layer_box {display: none; position: fixed; left: 0; top: 0; right: 0; bottom: 0; z-index: 9998; background-color: rgba(0,0,0,0.5); font-size: 0; text-align: center;}
.common_layer_box:after {content: ""; display: inline-block; height: 100%; vertical-align: middle;}
.common_layer {display: inline-block; position: relative; z-index: 1; min-width:500px; max-width:900px; background-color: #fff; border-radius: 6px; font-size: 15px; text-align: left; vertical-align: middle; box-shadow:0 0 17px 0 #333;}
.common_layer_top {padding: 20px 25px; background-color: #752403; border-top-left-radius: 4px; border-top-right-radius: 4px;}
.common_layer_tit {color: #fff; font-size: 20px;}
.common_layer_contents {padding:20px 25px;}
.common_layer_close {position: absolute; right: -85px; top: 7px; z-index: 1; width: 60px; height: 60px; background-color: #3e475c; border-radius: 50%; color: #fff; font-size: 22px; transition:all 0.3s;}
.common_layer_close:hover, .common_layer_close:focus {transform:rotate(180deg);}


/* yeyak-first__wrap__detail */
.yeyak-first__wrap__detail ul li a {font-weight: normal !important; text-decoration: none !important; color: inherit;}
.yeyak-first__wrap__detail ul li a:hover {font-weight: normal !important; text-decoration: underline !important;}
.yeyak-first__wrap__detail ul li a.text-primary {font-weight: bold !important; text-decoration: underline !important;}


/* animation */
.animated {animation-duration: 0.5s; animation-fill-mode: both;}

@keyframes bounceIn {
  from, 33%, 66%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {opacity: 0; transform: scale3d(.3, .3, .3);}

  33% {transform: scale3d(1.1, 1.1, 1.1); }

  66% {transform: scale3d(.97, .97, .97);}

  to {opacity: 1; transform: scale3d(1, 1, 1);}
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceOut {
  20% {transform: scale3d(.9, .9, .9);}

  50%, 55% {opacity: 1; transform: scale3d(1.1, 1.1, 1.1);}

  to {opacity: 0; transform: scale3d(.3, .3, .3);}
}

.bounceOut {
  animation-name: bounceOut;
}