.practise-card{
    overflow: hidden;
    cursor: pointer;
}

.practise-card:hover{
    transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
	transition-property: box-shadow, -webkit-box-shadow;
	transition-duration: 0.4s, 0.4s;
	transition-timing-function: ease, ease;
	transition-delay: 0s, 0s;
	box-shadow: 0 0 30px 0 rgb(139, 130, 130);
}

.practise-card-body{
    height: 77%;
    text-align: center;
    overflow: auto;
    text-overflow: ellipsis; 
    padding: 0 15%;
}

.practise-item{
    display: flex;
    padding: 7px 0px;
    align-items: center; 
}

.practise-item:hover .practise-title-long{
    color: rgb(70, 164, 201);
}

.practise-item:hover .practise-title{
    color: rgb(70, 164, 201);
}

.practise-title-long{
    text-align: left ;
    width: 200px;
}
.practise-title{
    text-align: left ;
    width: 150px;
    text-transform: capitalize;
    margin-left: 10%;
}

.practise-type{
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100px;
    text-align: center;
    font-size: 12px;
    margin: 0 5px;
}

.practise-item:hover{
    background: #ECF0F1 !important;
}


.confirm-date{
    width: 80px;
}

.progress-bar{
	height: 7px !important;
}


.progress{
	height: 7px !important;
	background: #e6e6e6 !important;
}

.progress-bar {
    background-image: linear-gradient(to right,#f4f4f4, skyblue); /* Standard syntax (must be last) */
}

.rank-list {
	height: 77%;
	padding: 0 50px;
	overflow: auto;
	background-color: #ffffff;
}

.rank-list-item {
	display: flex;
	padding: 10px 0px;
	align-items: center;
	justify-content: space-between;
	height: 33%;
	color: rgb(101, 112, 126);
}

.student-icon{
	border-radius: 50%;
	margin: 0 5px;
}

.student-name{
	width: 100px;
	text-align:center;
}

.datetime{
	color:#9f96db;
}

/* width */
div ::-webkit-scrollbar {
    width: 5px;
}

/* Track */
div::-webkit-scrollbar-track {
    background:#dedbf6;
}

/* Handle */
div::-webkit-scrollbar-thumb {
    background: #9f96db;
}

/* Handle on hover */
div::-webkit-scrollbar-thumb:hover {
    background: #7f72dd; 
}