*,
:after,
:before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
	margin: 0;
	padding: 0;
	
}

body {
    overflow: hidden;
}

img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.sociallive_widget {
	position: relative;
	width: 100%;
	height: 188px;
	overflow: hidden;
}

.sociallive_bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-d {
    display: none;
}

.sociallive_rightSection {
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    padding: 10px;

    display: flex;
    align-items: end;
    justify-content: center;

    overflow: hidden;
}

.right_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video_desc {
    height: 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;

    /* background-color: #73889e; */
}

.video_desc div {
    width: 100%;
    height: 100%;
}

.desc_item > div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.video_desc p {
    text-align: center;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.watchNow_btn {
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding:  8px;
    border-radius: 8px;
    margin: 10px 0 5px;
}

.sociallive_leftSection {
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    overflow: hidden;
}

.left_content {
    width: 100%;
    height: 100%;
}

.video_embed {
    height: 100%;
    aspect-ratio: 2/1;
    padding-right: 20%;
    background-color: #000;
}

@media screen and (max-width: 390px) {
    .video_embed {
        padding-right: 21%;
    }
}


@media screen and (max-width: 375px) {
    .video_embed {
        padding-right: 23%;
    }
}


@media screen and (max-width: 320px) {
    .video_embed {
        padding-right: 26%;
    }
}




.video_embed iframe {
    height: 100%;
    width: 100%;
    object-fit: cover;
    

    /* width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center; */
}

.video_thumbnail {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video_thumbnail img {
    -webkit-animation: obj_pos 18s linear alternate infinite;
    animation: obj_pos 18s linear alternate infinite;
}


@-webkit-keyframes obj_pos {
    0% {
        object-position: 0% 0%;
    }

    100% {
        object-position: 100% 100%;
    }
}

@keyframes obj_pos {
    0% {
        -o-object-position: 0% 0%;
        object-position: 0% 0%;
    }

    100% {
        -o-object-position: 100% 100%;
        object-position: 100% 100%;
    }
}

.video_mainInfo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(248,80,50,0);
    background: -moz-linear-gradient(top, rgba(248,80,50,0) 29%, rgba(0,0,0,0.9) 92%);
    background: -webkit-gradient(left top, left bottom, color-stop(29%, rgba(248,80,50,0)), color-stop(92%, rgba(0,0,0,0.9)));
    background: -webkit-linear-gradient(top, rgba(248,80,50,0) 29%, rgba(0,0,0,0.9) 92%);
    background: -o-linear-gradient(top, rgba(248,80,50,0) 29%, rgba(0,0,0,0.9) 92%);
    background: -ms-linear-gradient(top, rgba(248,80,50,0) 29%, rgba(0,0,0,0.9) 92%);
    background: linear-gradient(to bottom, rgba(248,80,50,0) 29%, rgba(0,0,0,0.9) 92%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f85032', endColorstr='#000000', GradientType=0 );
    padding: 25px 15px 15px;
}



.live_title p {
    font-size: 16px;
    color: #fff;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    font-weight: bold;
}

.live_info {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
}

.info_icons,
.info_views {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    width: fit-content;
}

.info_icons {
    padding: 4px 5px;
    background-color: #CC012A;
}

.info_views {
    padding: 3px 5px;
    background: rgba(0, 0, 0, 0.5);
}

.info_icons img {
    width: 20px;
    margin-right: 5px;
}

.info_views img {
    width: 16px;
    margin-right: 5px;
}

.info_icons p,
.info_views p {
    font-size: 11px;
    text-transform:uppercase;
    font-weight: 600;
}

.info_views p {
    font-size: 12px;
    font-weight: 400;
}

.blink {
    -webkit-animation: blink 2s ease-in 1s infinite normal forwards;
	-moz-animation: blink 2s ease-in 1s infinite normal forwards;
	-o-animation: blink 2s ease-in 1s infinite normal forwards;
	animation: blink 2s ease-in 1s infinite normal forwards;
	margin: 0;
}

@keyframes blink {
	0%,
	50%,
	100% {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0;
	}
}

.sociallive_cta {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

}

/* slider */

.slick-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    list-style: none; 
    padding: 0; 
    margin: 0;
    
}

.slick-dots li {
    list-style-type: none; 
    width: 16px;
    height: 4px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 3px;
    cursor: pointer;
    overflow: hidden;
}

.slick-dots button {
    display: none;
}

.slick-dots li.slick-active::after {
    content: "";
    display: block;
    height: inherit;
    background: rgb(255, 255, 255);
    border-radius: 3px;
    transform: translateX(-100%);
    animation: thumb 4500ms forwards linear;
}

@keyframes thumb {
	to {
		transform: initial;
	}
}


.slick-arrow {
    display: none;
    position: absolute;
    visibility: hidden;
    top: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    transition: all 200ms ease-in-out;
}

.slick-arrow span {
    display: block;
    margin: auto;
    width: 13px;
    height: 10px;
    background-image: url(../images/arrow-slider.svg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    cursor: pointer;
}

.slick-prev {
    left: 0;
}

.slick-prev.slick-arrow span {
    transform: rotate(-180deg);
}

.slick-next {
    right: 0;
}




/* ---------------------- MEDIA QUERIES ------------------------- */

@media screen and (max-width: 360px) {
    .watchNow_btn {
        /* margin: 5px 0; */
        padding: 5px;
    }

  
}


@media screen and (min-width: 540px) {
    body,
    .sociallive_widget {
        width: 545px;
        height: 168px;
    }

    .bg-d {
        display: block;
    }

    .bg-m {
        display: none;
    }

    .sociallive_leftSection {
        width: 55%;
    }

    .video_mainInfo {
        justify-content: end;
    }

    .live_info {
        margin-bottom: 10px;
    }

    .video_thumbnail img {
        -webkit-animation: obj_pos 8s linear alternate infinite;
        animation: obj_pos 8s linear alternate infinite;
    }

    .sociallive_rightSection {
        width: 45%;
    }

    

    .desc_slider {
        padding: 0 25px;
        margin: 0 auto;
    }

    .slick-arrow {
        display: block;
        position: absolute;
        visibility:visible;
        opacity: 0;
        z-index: 3;
    }

    .slick-arrow.active {
       opacity: 1;
    }
    
    .video_desc {
        height: 75px;
    }

   
    
    
    .watchNow_btn {
        margin: 10px 0 0;
        padding: 5px 10px;
    } 
    

  
}

@media screen and (min-width: 740px) {
    body,
    .sociallive_widget {
        width: 740px;
        height: 225px;
    }

    .sociallive_leftSection {
        width: 54%;
    }


    .video_embed {
        aspect-ratio: 16/9;
        width: 100%;
        height: auto;
        padding-right: 0;
    }

    .video_mainInfo {
        padding: 25px;
    }

    
    .info_icons {
        width:70px;
        padding: 5px 0;
    }

    .info_views {
        padding: 5px 5px;
    }

    .info_icons img {
        width: 25px;
        margin-right: 5px;
    }

    .info_icons p, 
    .info_views p {
        font-size: 14px;
    }


    .live_title p {
        font-weight: 600;
        
    }

    .sociallive_rightSection {
        width: 46%;
        padding: 10px 13px;
    }

    .video_desc {
        height: 85px;
    }
    
    .video_desc p {
        font-size: 12px;
        line-height: 18px;
    }

    .sociallive_rightSection {
        width: 46%;
    }

    .desc_slider {
        padding: 0 25px;
        margin: 0 auto;
    }

    .slick-arrow {
        display: block;
        position: absolute;
        visibility:visible;
        z-index: 3;
    }

    .slick-dots li {
     
        width: 20px;
        
    }
    

    .watchNow_btn {
        margin: 10px 0 10px;
        padding: 10px 15px;
    }

   


}


