.quiz-list {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}
.quiz-list li {
    width: 100%;
    display: flex !important;
}

/*===========================================================
========== My course list
===========================================================*/
.my-course-list .my-course {
    display: flex;
    padding: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 5px;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 5px 0px;
    margin-bottom: 15px;
}
.my-course-list .my-course .course-image {
    position: relative;
    width: 280px;
    height: 280px;
    overflow: hidden;
}
.my-course-list .my-course .course-image img {
    width: 100%;
    object-fit: cover;
}
.my-course-list .my-course .course-image .course-id {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffc600;
    color: #000;
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 14px;
}

.my-course-list .my-course .course-info {
    width: calc(100% - 300px);
    position: relative;
}
.my-course-list .my-course .course-status {
    background: #ffc600;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    font-size: 14px;
}
.my-course-list .my-course .course-status.course-active {
    background: #525fe1;
    color: #fff;
}
.my-course-list .my-course .course-status.course-expired {
    background: #d62e2e;
    color: #fff;
}

.my-course-list .my-course .course-order {
    position: absolute;
    top: 0;
    right: 0;
}


.my-course-list .my-course .course-title {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}


.my-course-list .my-course .course-date label {
    margin-right: 10px;
    font-weight: 500;
}


.my-course-list .my-course .quiz-label {
    margin: 10px 0;
    font-weight: 500;
}
.my-course-list .my-course .course-quizs .quiz-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed #525fe1;
    padding-bottom: 10px;
    margin-bottom: 10px;
}


.btn-theme, 
.btn-theme:visited {
    border-radius: 2px;
    line-height: 1;
    color: #fff;
    background: #525FE1;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.4s;
    text-decoration: none;
    border: 0 none;
}
.btn-theme:hover, 
.btn-theme:focus, 
.btn-theme:active {
	background: #231f40;
    color: #fff;
}