@charset "utf-8";

.layer-share .layer-inner {
    padding: 24px;
    box-sizing: border-box;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 20px 20px 0 0;
    -webkit-box-shadow: 0px -3px 15px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px -3px 15px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px -3px 15px 0px rgb(0 0 0 / 20%);
    max-width: 768px;
}

.layer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.layer-share .layer-inner h3 {
    color: var(--color-333);
    font: var(--text-subtitle20-semi-bold);
}

.layer-share .layer-inner .close {
    width: 20px;
    height: 20px;
    font-size: 0;
    line-height: 0;
    color: transparent;
    background: url(../images/design/btn_close1.jpg) center center no-repeat;
}

.layer-inner .share-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.layer-inner .share-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.layer-inner .share-list li button {
    display: block;
    font-size: 12px;
    color: #6d7385;
    text-align: center;
}

.layer-inner .share-list li button:before {
    content: "";
    display: block;
    width: 62px;
    height: 62px;
    margin: 0 auto 5px auto;
}

.layer-inner .share-list li.kakao button:before {
    background: url(../images/design/btn_share_kakao.svg) 0 0 no-repeat;
}

.layer-inner .share-list li.kakao-s button:before {
    background: url(../images/design/btn_share_kakaostory.svg) 0 0 no-repeat;
}

.layer-inner .share-list li.line button:before {
    background: url(../images/design/btn_share_line.svg) 0 0 no-repeat;
}

.layer-inner .share-list li.sms button:before {
    background: url(../images/design/btn_share_sms.svg) 0 0 no-repeat;
}

.layer-inner .share-list li.facebook button:before {
    background: url(../images/design/btn_share_facebook.svg) 0 0 no-repeat;
}

.layer-inner .share-list li.twitter button:before {
    background: url(../images/design/btn_share_twitter.svg) 0 0 no-repeat;
}

.layer-inner .share-list li.pinter button:before {
    background: url(../images/design/btn_share_pin.svg) 0 0 no-repeat;
}

.layer-inner .share-list li.url button:before {
    background: url(../images/design/btn_share_url.svg) 0 0 no-repeat;
}