@charset "utf-8";

button{
    cursor: pointer;
}

.wrap{
    width:100%;
    height:auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
    justify-content: center;
}

.feed-header{
    width:100%;
    height:auto;
    overflow:hidden;
    box-sizing: border-box;
    padding:20px;
    border-bottom: 1px solid #ccc;
}

.feed-header h2{
    font-family: "Segoe Script Regular";
}

.main-wrap{
    max-width:974px;
    width:100%;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    margin: 0 auto;
    box-sizing: border-box;
    padding:40px;
    gap:50px;
}

.feed-top{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.feed-top .feed-logo{
    width:250px;
    height:250px;
    background-color: #f8f8f8;
    border-radius: 50%;
    background-size: cover;
}

.feed-top .feed-info{
    width: calc(100% - 350px);
}

.feed-top .feed-add{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.feed-top .feed-add p{
    font-size: 14px;
    line-height: 24px;
}

.feed-top .feed-add button{
    padding:0 20px;
    line-height: 32px;
    font-size: 14px;
    border: 1px solid #3a7cf7;
    background-color: #fff;
    color: #3a7cf7;
    border-radius: 40px;
}

.feed-top .feed-folower{
    padding-bottom: 30px;
}

.feed-top .feed-folower ul{
    display: flex;
    gap: 40px;
}

.feed-top .feed-folower ul li{
    font-size: 18px;
}

.feed-top .feed-folower ul li span{
    margin-left: 10px;
    font-weight: bold;
}

.feed-top .feed-desc p{
    font-size: 14px;
    line-height: 22px;
}

a.tag{
    color: #3a7cf7;
    margin-right: 5px;
}

.story-list{
    display: flex;
    gap:10px;
    padding:30px 0;
}

.story-list .story-box{
    width:120px;
    height:120px;
    border-radius: 50%;
    background-color: #f8f8f8;
    background-image: url(../img/story.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #ff00bf;
}

.feed-list{
    width:100%;
    height:auto;
    overflow:hidden;
    box-sizing: border-box;
}

.feed-list ul{
    display: flex;
    flex-wrap: wrap;
}

.feed-list ul li{
    width:33.3333%;
    height: 298px;
    /* background-color: #eee; */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
}

.feed-list ul li .like{
    display: flex;
    flex: 1 1 auto;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    line-height: 30px;
    /* padding-left: 35px; */
    position: relative;
    opacity: 0;
    cursor: pointer;
}

.feed-list ul li .like::before{
    content: "";
    width:30px;
    height:30px;
    /* background-color:#fff; */
    background-image: url('../img/favorite_white_24dp.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px auto;
}

.feed-list ul li:hover .like{   
    transition: all 0.5s ease;
    opacity: 1;
}

.feed-list ul li .like span{
    color: #fff;
    font-size: 20px;
}

footer{
    text-align: center;
    font-size: 12px;
    color: #999;
    padding:80px 0;
}

.mask,
.mask-video{
    width:100%;
    height:100%;
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    top:0px;
    left:0px;
    z-index: 100;
    display: none;
}

.feed-detail{
    width:auto;
    background-color: #fff;
    box-sizing: border-box;
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    display: flex;
    opacity: 0;
}

.feed-detail.on{
    z-index: 110;
    opacity: 1;
}

.feed-img{
    max-height:calc(100vh - 60px);
    /* max-width: 60%; */
    overflow: hidden;
    width:800px;
    position: relative;
}

.feed-img .feed-img-inner{
    /* display: flex; */
    background-color: #000;
}

.feed-img .feed-img-inner div{
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-img .feed-img-inner div img{
    /* height:calc(100vh - 60px); */
    /* height: 100%; */
    width:100%;
}

.feed-like{
    width:300px;
    box-sizing: border-box;
    padding:20px 0;
    display: flex;
    flex-direction: column;
}

.like-btn-area{
    display: flex;
    justify-content: space-between;
    padding: 0 30px 20px 30px;
    position: relative;
}

.like-btn-area .like-lottie{
    position: absolute;
    width:120px;
    height:120px;
    left: -12px;
    top: -44px;
    z-index: 10000;
    display: none;
}

.like-btn-area button{
    width:30px;
    height:30px;
    text-indent: -9999px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 26px;
    border: none;
    background-color:transparent;
}

.like-btn-area button.like-btn{
    background-image: url(../img/favorite.svg);
}

.like-btn-area button.like-btn.on{
    background-image: url(../img/favorite_red_24dp.svg);
}

.like-btn-area button.close-btn{
    background-image: url(../img/close_FILL0.svg);
}

.memo-area{
    padding:30px;
    border-top: 1px solid #eee;
}

.memo-area p{
    font-size: 14px;
    line-height: 20px;
}

.memo-area p a{
    color: #3a7cf7;
    margin:0 3px;
}

.like-list{
    flex: 1 1 auto;
    box-sizing: border-box;
    overflow-y: auto;
    height: 0px;
    padding:30px 0px 0px 30px;
    border-top: 1px solid #eee;
}

.like-list::-webkit-scrollbar {
    width:5px;
    height:5px;
}
.like-list::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 10px;
}
.like-list::-webkit-scrollbar-track {
    background-color: #eee;
    border-radius: 10px;
}

.like-list ul{
    display: flex;
    flex-direction: column;
    height:auto;
}

.like-list ul li{
    position: relative;
    box-sizing: border-box;
    padding:5px 10px 20px 30px;
    font-size: 14px;
    width: 100%;
    height:auto;
    display: flex;
    flex-direction: column;
    gap:5px;
}

.like-list ul li span{
    font-size: 11px;
    opacity: 0.3;
}

.like-list ul li:last-child{
    padding:5px 10px 0px 30px;
}

.like-list ul li::before{
    content: "";
    width:20px;
    height:20px;
    background-color: #eee;
    position: absolute;
    left:0px;
    top:5px;
    border-radius: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.add-comment ul li button{
    width:40px;
    height:40px;
    border:none;
    background-color:#f8f8f8;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-indent: -9999px;
    overflow: hidden;
}

.add-comment ul li button.smile,
.like-list ul li.smile::before{
    background-image: url('../img/emoji/smile.svg');
}
.add-comment ul li button.demon,
.like-list ul li.demon::before{
    background-image: url('../img/emoji/demon.svg');
}
.add-comment ul li button.cry,
.like-list ul li.cry::before{
    background-image: url('../img/emoji/cry.svg');
}
.add-comment ul li button.cute,
.like-list ul li.cute::before{
    background-image: url('../img/emoji/cute.svg');
}
.add-comment ul li button.face,
.like-list ul li.face::before{
    background-image: url('../img/emoji/face.svg');
}
.add-comment ul li button.kiss,
.like-list ul li.kiss::before{
    background-image: url('../img/emoji/kiss.svg');
}
.add-comment ul li button.wow,
.like-list ul li.wow::before{
    background-image: url('../img/emoji/wow.svg');
}
.add-comment ul li button.shy,
.like-list ul li.shy::before{
    background-image: url('../img/emoji/shy.svg');
}
.add-comment ul li button.haha,
.like-list ul li.haha::before{
    background-image: url('../img/emoji/haha.svg');
}
.add-comment ul li button.wink,
.like-list ul li.wink::before{
    background-image: url('../img/emoji/wink.svg');
}

.add-comment{
    min-width:350px;
    height:auto;
    overflow:hidden;
    box-sizing: border-box;
    padding:30px;
    background-color: #fff;
    border-radius: 30px;
    position: fixed;
    z-index: 1000;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    display: none;
    -webkit-box-shadow: 0px 0px 92px -29px rgba(0,0,0,0.49);
    -moz-box-shadow: 0px 0px 92px -29px rgba(0,0,0,0.49);
    box-shadow: 0px 0px 92px -29px rgba(0,0,0,0.49);
}

.add-comment ul{
    display: flex;
    gap:10px;
}

.add-comment ul li button{
    -moz-filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    -o-filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(100%);
    filter: gray;
}

.add-comment ul li button.on,
.add-comment ul li button:hover{
    -moz-filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    -o-filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
    filter: gray;
}

.comment-area{
    margin-top:20px;
}

.comment-area input{
    border:1px solid #eee;
    width:100%;
    background-color: #f8f8f8;
    height:40px;
    font-size: 16px;
    box-sizing: border-box;
    padding: 0 20px;
    text-align: center;
}

.comment-btn{
    display: flex;
    gap: 10;
    margin-top: 10px;
    justify-content:flex-end;
}

.comment-btn button{
    width:30%;
    height:40px;
    background-color: #eee;
    border: none;
}
.comment-btn button.app{
    color: #fff;
    background-color: #0059fd;
}

.slick-dots{
    position: absolute;
    bottom: 60px;
    flex-wrap: nowrap !important;
    height: 20px;
    left: 50%;
    transform: translateX(-50%);
    gap: 5px;
    flex-direction: row !important;
}

.slick-dots li{
    height: 20px !important;
}

.slick-dots li button{
    width:10px;
    height:10px;
    border:none;
    text-indent: -9999px;
    overflow: hidden;
    background-color: #eee;
    opacity: 0.6;
    border-radius: 50%;
}

.slick-dots li.slick-active button{
    background-color: #164192;
    /* opacity: 1 !important; */
}

.slick-arrow{
    width:50px;
    height:50px;
    top:50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 10;
    text-indent: -9999px;
    background-color: rgba(255,255,255,0.2);
    border: none;
    background-position: center center;
    background-repeat: no-repeat;
    background-size:cover;
    opacity: 0.7;
}

.slick-arrow:hover{
    background-color: transparent;
    opacity: 1;
}

.slick-arrow.slick-prev{
    left:10px;
    background-image: url('../img/chevron_left_white_24dp.svg');
}

.slick-arrow.slick-next{
    right:10px;
    background-image: url('../img/chevron_left_white_24dp.svg');
    transform: translateY(-50%) rotate(180deg);
}

.mov-view{
    display: none;
    max-width:1280px;
    width:100%;
    box-sizing: border-box;
    padding:20px;
    height:auto;
    overflow: hidden;
    z-index: 1000;
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

.mov-view.play .skip-btn{
    display: none;
}

.video-btn{
    width:100%;
    height:auto;
    overflow:hidden;
    text-align: center;
    padding-top: 20px;
}

.video-btn .skip-btn{
    padding:0 20px;
    line-height: 30px;
    border: none;
    background-color: #fff;
    color: #222;
    font-size: 16px;
    border-radius: 20px;
}

.like-view{
    font-size: 15px;
    font-weight: 600;
    margin-left: 5px;
}