@charset "UTF-8";
/** 공유하기 - 버튼 **/
#share {
  width: 100%;
  padding: 60px 0;
  text-align: center;
  box-sizing: border-box;
}
#share .btn {
  display: inline-block;
  vertical-align: middle;
  max-width: 375px;
  padding: 25px 40px;
  margin: 0 auto;
  text-align: center;
  border-radius: 35px;
  font-size: 21px;
  font-weight: 700;

  box-sizing: border-box;
}
#share .btn svg {
  margin-right: 5px;
  vertical-align: sub;
}

/* theme color */
.theme-default #share {
  background: #ffd600;
}
.theme-dark #share {
  background: #fff;
}
.theme-default #share .btn {
  background: #fff;
  color: #333333;
}
.theme-dark #share .btn {
  background: #555555;
  color: #fff;
}
.theme-default #share .btn svg {
  stroke: #333333;
}
.theme-dark #share .btn svg {
  stroke: #ffffff;
}

/** 공유하기 - 팝업 **/
.popup-share .pop-content {
  position: absolute;
  left: 0;
  bottom: -500px;
  width: 100%;
  transition: bottom 0.3s;
}
.popup-share .pop-content-inner {
  margin: 0 auto;
  padding: 0 18px 81px 17px;
  width: 100%;
  background: #fff;
  border-radius: 30px 30px 0 0;
  text-align: center;
  box-sizing: border-box;
}
.popup-share .btn-close {
  position: relative;
  width: 35px;
  height: 5px;
  text-indent: -9999px;
  background: #eaecef;
  border-radius: 20px;
  line-height: 0;
}

.popup-share .pop-share-btn-list {
  margin-top: 25px;
}
.popup-share li + li {
  margin-top: 10px;
}
.popup-share .pop-share-btn-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background: #f1f1f1;
  border-radius: 15px;
  font-size: 15px;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕",
    system-ui, sans-serif;
  font-weight: 600;
  color: #000;
}
.popup-share .pop-share-btn-icon {
  margin-right: 6px;
  width: 26px;
  height: 26px;
}
.popup-share .pop-share-btn-list button:after {
  content: none;
}
.popup-share .pop-share-btn-list .kakaotalk {
  background: #fae200;
}
.popup-share .pop-share-btn-list .facebook {
  background: #1877f2;
  color: #fff;
}
.popup-share .pop-share-btn-list .twitter {
  background: #1d9bf0;
  color: #fff;
}
.popup-share .pop-share-btn-list .x {
  background: #000;
  color: #fff;
}
.popup-share .pop-share-btn-list .copy {
  margin: 0;
}

.popup-share.on {
  visibility: visible;
  opacity: 1;
}
.popup-share.on .pop-content {
  bottom: -50px;
}

@media screen and (max-width: 360px) {
  #share .btn {
    padding: 25px 28px;
  }
}
