#success {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
}
#success .back-drop {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
}
#success .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  background: #f4f4f4;
  width: 300px;
  height: 130px;
  border-radius: 10px;
  z-index: 1;

  /* padding: 30px 16px 100px 16px; */

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;
}
#success .popup-content .ini {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  text-align: center;
  color: #cabbaa;
  font-size: 23px;
  line-height: 1;
  font-weight: 100;
  display: none;
}
#success .popup-content .txt {
  position: absolute;
  top: 18%;
  left: 0;
  right: 0;
  font-size: 21px;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
  /* border-bottom: 1px solid #cacaca; */
  padding-bottom: 20px;
  font-weight: 500;
}
#success .popup-content .exit {
  position: absolute;
  top: 54%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 194px;
  text-align: center;
  font-size: 15px;
  padding: 5px 16px;
  border: 1px solid #505050;
  color: black;
  opacity: 0.9;
  background: white;
  cursor: pointer;
}
#success .popup-content .exit i {
  margin-left: 10px;
  /* animation: hagging 1s both; */
  /* backface-visibility: hidden; */
  /* perspective: 1000px; */
  /* animation-iteration-count: infinite; */
}
@keyframes hagging {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0%);
  }
}

/*******************************/
/* 반응형 */
/*******************************/

/* 모바일 */
@media screen and (max-width: 450px) {
}
/* 테블릿 */
@media screen and (min-width: 451px) and (max-width: 1023px) {
}
/* PC */
@media screen and (min-width: 1024px) {
}
