@charset "UTF-8";
/** 공유하기 - 버튼 **/
#share {
  width: 100%;
  padding: 60px 16px;
  text-align: center;
  box-sizing: border-box;
}
#share .share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px 20px 28px;
  background: #fff;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  box-sizing: border-box;
}
#share .share-btn svg {
  margin-right:10px;
}
/* theme color */
/* .theme-default #share {background:#FFD600;}
.theme-dark #share {background:#fff;} */
.theme-default #share .share-btn {background:#555;color:#fff;}
.theme-dark #share .share-btn {background:#555555;color:#fff;}
/* .theme-default #share .share-btn svg {stroke: #333333;} 
.theme-dark #share .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 {
  position:relative;
  margin: 0 auto;
  padding:10px 18px 40px;
  background: #fff;
  border-radius: 30px 30px 0 0;
  text-align: center;
}
.popup-share .btn-close {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 5px;
  border-radius: 20px;
  text-indent: -9999px;
  /* background: #799FAD; */
   background-color:#EAECEF;
}

.popup-share .pop-share-btn-list {
  margin-top: 40px;
}
.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:0;
}

