body {
    overflow: hidden;
}
#shorts_container {
    display: flex;
    flex-direction: column;
    /*max-width: 800px;*/
    margin: auto;
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    height: 92.5vh;
    align-items: center;
}
#shorts_container::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Edge */
}
.short {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    scroll-snap-align: start;
    position: relative;
    max-width: 875px;
    width: 100%;
}
.short.mobile-background {
    box-shadow: inset 0 0 50px 500px #000000e3;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.short > div {
    width: 100%;
}
.short img, .short video {
    border-radius: 10px;
    margin-bottom: 10px;
    width: 100%;
    hieght: auto;
}
.short .vid_details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.short .action_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style-type: none;
    position: absolute;
    bottom: 220px;
    right: -75px;
}
.action_list i {
    aspect-ratio: 1/1;
    background: #302e2f !important;
    border-radius: 500px;
    border: none;
    padding: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.action_list li, .action_list button {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 15px;
    font-weight: 500;
    height: fit-content;
    align-items: center;
    
}
.short .alt_details_wrap {
    display: flex;
    justify-content: space-between;
}
.short .alt_details_wrap > div {
    margin: 0;
}
.short .cta {
    width: 200px !important;
    display: inline-block !important;
    height: fit-content;
    text-align: center;
} 
.breadcrumbs {
    position: absolute;
}
footer {
    display: none;
}
.short .ha_stats a {
    color: #fff;
    font-size: 16px;
}
.short .ha_stats, .short .ha_date{
    color: #ffffffad !important;
    font-size: 16px;
}
.short .ha_stats {
    color: #ffffffad;
    display: flex;
    font-size: 14px !important;
    font-weight: 500;
    padding: 0px;
    list-style-type: none;
    gap: 5px;
}
.back-btn {
    display: none;
    font-size: 25px;
    position: fixed;
    top: 15px;
    left: 15px;
    color: #fff;
    z-index: 10;
}


#short-nav {
    position: absolute;
    top: 50%;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.short-nav-btn {
    aspect-ratio: 1 / 1;
    background: #302e2f !important;
    border-radius: 500px;
    border: none;
    color: #fff;
    padding: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width: 900px) {
    #short-nav {
        display: none;
    }
    .breadcrumbs, #main_header {
        display: none;
    }
    .back-btn {
        display: block;
    }
    #shorts_container {
        height: 100vh;   
    }
    .short {
        min-height: 100%;
    }
    .short .alt_details_wrap {
        flex-direction: column;
        width: 85vw;
        padding: 15px;
        position: absolute;
        bottom: 0;
    }
    .short .cta {
        width: 100% !important;
    }
    .short .action_list {
        gap: 20px;
        bottom: 15px;
        right: 15px;
    }
    .short .ha_stats {
        margin-bottom: 15px;
    }
    .action_list i {
        padding: 12px;
    }
    .action_list li, .action_list button { 
        font-size: 14px;
        gap: 0;
    }
    
    .short img, .short video {
        border-radius: 0;
    }
}