.mtl-reels-carousel-wrapper {
    position: relative;
    width: 100%;
/*     padding: 10px 0 20px; */
    overflow: hidden;
}

.mtl-reels-carousel-wrapper .swiper-container {
    width: 100%;
}

.mtl-reels-carousel-wrapper .swiper-wrapper {
    align-items: stretch;
}

.mtl-reel-slide {
    height: auto;
    padding: 6px;
}

.mtl-reel-inner {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #DDDDDD;
}

.mtl-reel-slide:hover .mtl-reel-inner {
    transform: translateY(-4px);
}

.mtl-reel-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    overflow: hidden;
}

.mtl-reel-video-container>* {
    position: absolute;
    inset: 0;
}

.mtl-reel-grid-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mtl-reel-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.mtl-reel-slide:hover .mtl-reel-overlay {
    opacity: 1;
}

.mtl-reel-inner .mtl-play-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    padding: 10px;
    border: none;
}

.mtl-reel-inner .mtl-play-icon svg {
    font-size: 22px;
    fill: #fff;
}

.mtl-reel-info {
    padding: 10px 12px;
    background: #fff;
    text-align: center;
}

.mtl-reel-inner .mtl-reel-title {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

.mtl-reels-carousel-wrapper .swiper-button-prev,
.mtl-reels-carousel-wrapper .swiper-button-next {
    color: #000;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
}

.mtl-reels-carousel-wrapper .swiper-button-prev::after,
.mtl-reels-carousel-wrapper .swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
}

.mtl-reels-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.mtl-reels-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}


.mtl-reels-popup-content {
    position: relative;
    width: auto;
    height: 90vh;
    max-height: 90vh;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.mtl-popup-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.mtl-reels-popup-content .mtl-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 100;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
}

.mtl-reels-popup-content .mtl-popup-close svg {
    width: 20px;
    height: 20px;
    fill: #ffffff !important;
    display: block;
    pointer-events: none;
}


@media (max-width: 767px) {
    .mtl-play-icon {
        width: 52px;
        height: 52px;
    }
	    .mtl-reel-inner .mtl-reel-title {
        font-size: 13px;
        line-height: 1.2;
    }
	
	.mtl-reel-info {
    padding:10px 7px;
}
}

/* @media (max-width: 480px) {
	.swiper-slide.mtl-reel-slide{
		margin-right:0 !important;
	}
	
} */



