/* 메인컬러 변경: FC2E5B ->FF2282 */

.popup {
  background-color: rgba(0, 0, 0, .5);
  -webkit-transition: opacity .4s cubic-bezier(.23, 1, .32, 1) 0s;
  transition: opacity .4s cubic-bezier(.23, 1, .32, 1) 0s;
  -o-transition: opacity .4s cubic-bezier(.23, 1, .32, 1) 0s;
  -moz-transition: opacity .4s cubic-bezier(.23, 1, .32, 1) 0s;
  will-change: opacity, transform;

  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  z-index: 1050;
  overflow: auto;
  outline: 0;
  text-align: center;
  font-size: 0;
  transform: translate3d(0, 0, 0);
}

.popup__container {
  text-align: left;
  padding: 20px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid rgba(218, 218, 218, 0.5);
  width: 290px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  /*
  transition: opacity .2s ease, visibility 0s .1s, transform 450ms cubic-bezier(.23, 1, .32, 1) 0s, -webkit-transform 450ms cubic-bezier(.23, 1, .32, 1) 0s;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
  transform: scale(.8);
  -webkit-transition: opacity .2s ease, visibility 0s .1s, -webkit-transform 450ms cubic-bezier(.23, 1, .32, 1) 0s;
  transition: opacity .2s ease, visibility 0s .1s, -webkit-transform 450ms cubic-bezier(.23, 1, .32, 1) 0s;
  transition: opacity .2s ease, visibility 0s .1s, transform 450ms cubic-bezier(.23, 1, .32, 1) 0s;
  will-change: transform, opacity;
  */
}

.popup__container .popup__content {
  font-weight: 400;
  font-size: 14px;
  color: #222222;
}

.popup__container .popup__content p {
  margin: 0;
  padding: 0;
}

.popup__container .popup__content .title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

.popup__container .popup__content .order-text {
  font-weight: 500;
  font-size: 17px;
  text-align: center;
  letter-spacing: -0.1px;
  color: #222;
  line-height: 1.4;
}

.popup__container .popup__content .title img {
  width:16px;
  margin-right: 4px;
  position: relative;
  top: 1px;
}

.popup__container .popup__content .owner{
  display: block;
  background: #FAFAFA;
  border: 1px solid rgba(218, 218, 218, 0.5);
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 35px;
  color: #888888;
  height: 35px;
  box-sizing: border-box;
  margin-top: 12px;
}

.popup__container .popup__content .confirm-box {
  margin-top: 20px;
}

.popup__container .popup__content .confirm-box ul.btn {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.popup__container .popup__content .confirm-box ul.btn li {
  background: #DEDEDE;
  border-radius: 10px;
  border: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 50px;
  height: 50px;
  text-align: center;
  color: #595959;
  width: 100%;
  margin-right: 10px;
}


.popup__container .popup__content .confirm-box ul.btn .ok {
  background: #FF2282;
  color: #fff;
  margin-right: 0;
}

.popup__close {
  /* position: absolute;
  top: 15px;
  right: 15px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  padding-top: 8px; */
}

.popup__close span {
  /* display: block;
  width: 100%;
  height: 1px;
  background-color: #2f2c2c;
  */
}

.popup__close span:first-of-type {
  /* -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  */
}

.popup__close span:last-of-type {
  /* -webkit-transform: rotate(-45deg) translateY(-1px);
  -moz-transform: rotate(-45deg) translateY(-1px);
  -ms-transform: rotate(-45deg) translateY(-1px);
  -o-transform: rotate(-45deg) translateY(-1px);
  transform: rotate(-45deg) translateY(-1px);
  */
}

@media (max-width:767px) {
  .popup__container {
    width: 270px;
    margin: 0 auto;
    padding: 20px;
  }

  .popup__close {
    /* top: 10px;
    right: 10px; */
  }
}

.popup.opened .popup__container {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}


.popup:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
}

@media (max-width:767px) {
  .popup {
    padding: 20px;
  }
}

.popup__container {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.popup.opened {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}

body.popup-opened {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
