/* CSS for Sai Video Embed Plugin with Slider */

/* Main slider container */
.sai-videos-container {
    position: relative;
    margin: 0 auto;
    width: 100%; /* Adjust width as needed */
    max-width: 1200px; /* Adjust max-width as needed */
    overflow: hidden;
}

/* Individual video embed container */
.sai-video-embed {
    position: relative;
    margin-right: 20px; /* Adjust margin between videos */
    width: 260px; /* Adjust width of individual videos */
    height: 462px; /* Adjust height of individual videos */
    box-sizing: border-box;
}

/* Video player styles */
.sai-video-embed iframe,
.sai-video-embed video {
    width: 100%;
    height: 100%;
    border-radius: 10px; /* Rounded corners for video container */
}

/* "Buy Now" button styles */
.sai-video-embed .buy-this {
    position: absolute;
    bottom: 35px;
    background: #ff0000;
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 1;
	font-size: 12px;
    border-radius: 2px;
	
}

/* Slide image container */
.sai-video-embed .slide-image {
    opacity: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.8s ease;
}

/* Show slide image */
.sai-video-embed .slide-image.show {
    opacity: 1;
}

/* Slider arrows */
.sai-videos-container {
    position: relative;
    overflow: hidden;
}

.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: blue; /* Transparent background for buttons */
    color: #000; /* Text color */
    border: none; /* Remove default border */
    padding: 10px; /* Padding for button */
    cursor: pointer; /* Pointer cursor */
    z-index: 1000; /* Ensure buttons are above other content */
    width: 50px; /* Fixed width */
    height: 50px; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Make them round */
}

.slick-prev {
    left: 30px; /* Fixed position on the left */
	background-color: blue;
}

.slick-next {
    right: 30px; /* Fixed position on the right */
	background-color: blue;

}

.slick-prev i,
.slick-next i {
    color: #fff; /* White icon color */
	background-color: blue;
	padding: 18px 22px 18px 22px;
	border-radius: 60%;
	font-size: 20px;
	font-weight: bold;

}
.sai-video-embed .play-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 18px;
    display: none;
    font-size: 18px;
    border-radius: 50%;
}