/* Scrollbar for WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-radius: 10px;
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
    background: rgba(var(--bs-primary-rgb), 0.3);
    border-radius: 10px;
}

/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
    background: var(--bs-primary);
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
    cursor: pointer;
}

/* Scrollbar Handle on Hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--bs-primary-rgb), 0.8);
}

/* Scrollbar Handle on Active (When Clicked) */
::-webkit-scrollbar-thumb:active {
    background: rgba(var(--bs-primary-rgb), 1);
}



.w-sm-50{
    @include respond ('phone-land-min'){
        width: 50%!important;
    }
}

.screen-fixed{
	overflow: hidden;
}

.sticky-top{
    position: sticky;
    top: 120px;
    z-index: 1;
}

.flex-1{
    flex: 1;
}

// Social Icons 
.social-link{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
    font-size: 18px;
    &.style2{
        gap: 8px;
        li a{
            &:hover{
                background-color: var(--bs-primary);
                color: var(--bs-white);
            }
        }
    }
}

.social-icon-list {
    display: flex;
    align-items: center;
    gap: 16px;

    li {
        a {
            padding: 9px;
            background: $primary;
            border-radius: 10px;
            @include transMedium;
        }

        &:hover {
            a {
                background: $white;
                color: $primary;
            }
        }
    }
}

// Media Image ==
.edu-media{
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

// Ratings ==
.ins-rating{
    text-align: center;
    > ul{
        display: flex;
        align-items: center;
        gap: 5px;
        i{
            color: #FFC224;
        }
    }
    .ins-rating-text{
        margin: 0;
    }
}

.rating-star{
	display: flex;
	align-items: center;
	li{
		font-size: 10px;
		padding: 0 2px;
		i{
			color: #FFA902;
		}
	}
}
.total-review{
	font-size: 12px;
	font-weight: 600;
	color: var(--title);
}

.reviews-type{
	width: 100%;	
	li{
		padding-bottom: 5px;
		display: flex;
		align-items: center;
        gap: 10px;
		&:last-child{
			padding-bottom: 0;
		}
		.review-title{
			display: flex;
			font-weight: 500;
			margin-bottom: 5px;
			justify-content: space-between;
			color: var(--title);
			align-items: center;
		}
		span{
            display: block;
            width: 50px;
            white-space: nowrap;
            text-align: left;
		}
	}
	.progress{
		width: 100%;
	}
}


.user-review{
    margin-bottom: 16px;
	height: 100%;
    padding: 20px;
    background: $white;
    box-shadow: 0 0 20px rgba(113, 113, 113, 0.15);
    &:last-child{
        margin-bottom: 0;
    }
	.review-info{
		display: flex;
		align-items: center;
		.rating-star{
			li{
				font-size: 14px;
			}
		}
	}
	.review-text{
		font-weight: 500;
        margin-bottom: 0!important;
    }
}

// EduKate Widget ===
.wgt-title,
.comment-wgt-title,
.blog-wgt-tilte{
	position: relative;
	margin-bottom: 25px;
    text-transform: capitalize;
	&::after{
		content: '';
		background-color: $primary;
		border-radius: 0.25rem;
		display: block;
		height: 0.25rem;
		width: 42px;
		margin-top: 0.5rem;
	}
}

.edu-wgt{
    margin-bottom: 35px;
}

.edu-search-bx{
    .input-group{
        height: 100%;
        .btn{
            height: 100%;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            font-size: 20px;
            padding: 0 10px 0;
            z-index: 99;
            width: 50px;
        }  
        .form-control{
            border-top-left-radius: 6px;
            border-bottom-left-radius: 6px;
            height: 50px;
            padding: 10px 15px;  
        }
    }
}


.edu-saprater{
    position: relative;
    display: block;
    color: var(--bs-heading-color);
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    margin: 20px 0 0;
    z-index: 1;
    > span{
        background-color: var(--bs-body-bg);
        padding: 0 10px;
    }
    &::after{    
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: var(--bs-border-color);
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: -1;
    }
}


// Wow Extra 
.wow{
    -webkit-animation-duration: 0.8s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}