hr {
    border: 1;
    opacity: calc(50%);
}


section.stories {
    height: 120px;
    display: flex;
    overflow-x: scroll;
    object-fit: contain;
}

.learnmore-wrap {
    height: 100%;
    width: 500px; 
    display: flex;
    justify-content: center;

}

.learnmore {
    bottom: 0;
    position: fixed;
    justify-content: center;
    display: flex;
    width: 500px;
    z-index: 99999;
    padding: 30px 10px 10px 10px;
    

}


@media only screen and (max-width:500px) {
    .learnmore {
        width: 100%;
    }
}

.learnmore-share {
    width: 80%;
    z-index: 1;
    height: 40px;
    border: solid white 1px;
    border-radius: 25px;
}

.story-vids {
    display: none;
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0);
}

.gg-close {
    color: white;
    transform: scale(var(--ggs, 2));
    position: absolute;
    z-index: 10;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.video-player {
    display: flex;
    justify-content: center;
    align-items: start;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    object-fit: contain;
}

.video-player video {
    top: 0;
    position: absolute;
    width: 100%;
    height: 85vh;
}


@media only screen and (max-width:500px) {
    .video-player {
        width: 100%;
    }
}

.story-vids-user {
    display: flex;
    position: absolute;
    width: 40px;
    z-index: 1;
    top: 20px;
    margin-left: 30px;
    cursor: pointer;
}

.story-vids-user p {
    margin-top: 18px;
    margin-left: 10px;
    color: white;
}

.story-vids-user img {
    width: 50px;
    z-index: 1;
    border-radius: 50%;
}

.control {
    position: absolute;
    width: 100%;
    height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 0.3fr 1fr 1fr;
}

.control-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 1/2;
    grid-row: 2/4;
}

.control-next {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 2/3;
    grid-row: 2/4;
}

.control-prev a {
    z-index: 15;
    width: 100%;
    height: 100%;
}

.control-next a {
    z-index: 15;
    width: 100%;
    height: 100%;
}




.story {
    margin: 0 5px 0 15px;
    float: left;
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

a.story-link {
    position: relative;
    margin-bottom: 10px;
    width: 85px;
    height: 85px;
}



a.story-link img {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 500px;
    border: 2px solid var(--bg-color-1);
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    z-index: 2;
}

a.story-link::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    content: "";
    height: 85px;
    width: 85px;
    border-radius: 500px;
    background: lightgrey;
    z-index: 1;
}

a.story-link.active::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    content: "";
    height: 85px;
    width: 85px;
    border-radius: 500px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    z-index: 1;
}


/* feed */

::-webkit-scrollbar {
    display: none;
}



section.thread {
    overflow: scroll;
    scroll-snap-type: y mandatory;
    height: 90%;
}

.stories .username {
    font-size: 10pt;
}

.post {
    /*height: 800px;*/
    margin: 0 0 15px 0;
    scroll-snap-align: center;
}

.post-user {
    margin: 8px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
}



.post-description {
    padding: 6px;
}
.thread{
    margin-bottom: 50px;
}






.post-header {
    display: flex;
    align-items: center;
}