.reels-wrapper {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
    touch-action: pan-y;
    overscroll-behavior: contain;
}
body .to-top {
	left:20px;
    right: auto;
}
#inspect-warning {
    display: none;
    position: fixed;
    inset: 0;
    background: #000;
    color: #fff;
    z-index: 999999;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 20px;
}
#inspect-warning h1 {
    font-size: 22px;
    margin-bottom: 10px;
}
#inspect-warning p {
    font-size: 14px;
    opacity: 0.8;
}
.reels-container {
    height: 100%;
    width: 100%;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}
body .ti-widget.ti-goog .ti-widget-container .ti-name,body .ti-widget.ti-goog .ti-widget-container,body .ti-widget.ti-goog .ti-read-more span{color: #FFFFFF;}
body .ti-widget.ti-goog .ti-review-item > .ti-inner{background-color: transparent !important;}
body .ti-widget.ti-goog .ti-with-tooltip{color: #ddd;}
.reel {height: 100vh;width: 100%;}
.reel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Loader */
.reels-loader {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    animation: reels-spin 0.8s linear infinite;
    z-index: 10;
}

@keyframes reels-spin {
    to { transform: rotate(360deg); }
}

/* Arrows */
.reels-arrow {
    position: absolute;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 20;
}

.reels-up { top: 46%; }
.reels-down { top: 53%; }

.reels-arrow:disabled {
    opacity: 0.3;
}
@media (max-width: 1024px) {
    /* .reels-wrapper,.reels-wrapper .reel {
        height: 68vh;
    } */
}