html,
body {
    height: 100%;
    margin: 0;
    background: #272424;
    font-family: 'Inter';
}

.swiper {
    width: 100%;
    height: 100%;
}

@media (min-width: 992px) {
    .swiper {
        width: 30%;
        height: 95%;
        margin-top: 2vh;
        border-radius: 25px;
        overflow: hidden;
    }
}

.swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.feed-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.actions {
    position: absolute;
    right: 18px;
    bottom: 90px;

    display: flex;
    flex-direction: column;
    gap: 25px;

    color: white;
    font-size: 34px;
}

.actions i {
    cursor: pointer;
    transition: 0.2s ease;
}

.actions i:hover {
    transform: scale(1.15);
}

.liked {
    color: red;
}

.bookmarked {
    color: gold;
}

.liked,
.bookmarked {
    animation: pop 0.2s ease;
}

@keyframes pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.35);
    }

    100% {
        transform: scale(1);
    }
}

.video-modal {
    position: fixed;
    inset: 0;

    display: none;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, .95);

    z-index: 9999;
}

.video-modal.active {
    display: flex;
}

#modalVideo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: black;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;

    font-size: 42px;

    color: white;
    background: none;
    border: none;

    cursor: pointer;

    z-index: 10000;
}

.back-btn {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 100;
    color: white;
    font-size: 26px;
    text-decoration: none;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
