/* dashboard-top start */
.dashboard-top {
    display: flex;
    margin-top: 100px;
    padding-bottom: 8px;
    align-items: center;
    position: relative;
    font-family: "Poppins", serif;
    justify-content: space-between;
    border-bottom: 1px solid rgb(3, 161, 158, .5);
}

.profile-img {
    gap: 10px;
    display: flex;
    align-items: center !important;

    >img {
        height: 70px;
        width: 70px;
        object-fit: contain;
        border-radius: 100px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -ms-border-radius: 100px;
        -o-border-radius: 100px;
    }
}

.user-info {
    >h4 {
        font-size: 17px;
        color: rgb(68, 68, 68);
    }

    >p {
        margin: 0%;
        font-size: 14px;
    }
}

/* notification */
.profile-notification {
    cursor: pointer;
    height: 50px;
    width: 50px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: rgb(3, 161, 158, .1);
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;

    >i {
        color: #03A19E;
        font-size: 20px;
    }
}

.notification-number {
    position: absolute;
    top: 0%;
    right: 0%;
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ffffff;
    background-color: #F14336;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.notification-box {
    top: 90%;
    right: 0%;
    position: absolute;
    width: 300px;
    height: 400px;
    display: none;
    z-index: 999;
    background-color: #ffffff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all .4s ease;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;

    >p {
        padding: 15px;
        padding-bottom: 0px;
        font-size: 14px;
        text-align: center;
        color: #707474;
        font-weight: 550;

        >span {
            font-weight: 800;
            color: #029687;
        }
    }
}

hr {
    margin: 0%;
}

.notification-details {
    gap: 10px;
    display: flex;
    padding: 10px;
    padding-bottom: 0px;
    padding-top: 15px;
    border-bottom: 1.5px solid #a7a8a8;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;

    >img {
        width: 40px;
        height: 40px;
        border-radius: 100px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -ms-border-radius: 100px;
        -o-border-radius: 100px;
    }

    >div {
        >h4 {
            color: #474949;
            font-size: 15px;
        }

        >p {
            color: #707474;
            font-size: 13px;
            margin-top: 0%;
        }
    }
}

.notification-details:hover {
    background-color: #dae2e1;
}

.see-all-notification {
    display: flex;
    padding: 10px;
    align-items: end;

    >a {
        color: rgb(36, 85, 171);
        font-size: 13px;
        font-weight: 550;
    }
}

.active-notification {
    display: block;
}

/* dashboard-top end */


/* dashboard-content start */
.dashboard-content {
    display: flex;
    align-items: start;
    font-family: "Poppins", serif;
    justify-content: space-between;
}

/* dashboard-sidebar start */
.dashboard-sidebar {
    width: 25%;

    >ul {
        padding-top: 20px;

        >li {

            >a,
            >form>.logout_btn {
                gap: 10px;
                display: flex;
                align-items: center;
                justify-content: start;
                padding: 12px 10px;
                color: #03A19E;
                font-weight: 500;
                border: none;

                >p {
                    margin: 0%;
                }
            }

            >form>button {
                border: none;
                background-color: transparent;
            }


        }
    }
}

.active-dashboard {
    color: #ffffff !important;
    background-color: #03A19E !important;
}

/* dashboard-sidebar end */



/* dashboard-page start */
.dashboard-details {
    padding: 20px;
    padding-right: 0px;
    height: 80vh;
    width: 75%;
    overflow: scroll;
    padding-bottom: 50px;
    border-left: 1px solid rgb(3, 161, 158, .5);
}

/* dashboard card */
.dashboard-title {
    font-size: 18px;
    font-weight: 550;
    margin-top: 20px;
}

.dashboard {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.dashboard-card {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgb(3, 161, 158, .5);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;

    >i {
        color: #03A19E;
        font-size: 35px;
        position: unset;
        margin: 0 auto;
    }

    >span {
        height: 30px;
        width: 30px;
        padding: 10px;
        display: flex;
        color: #ffffff;
        margin-top: 20px;
        align-items: center;
        justify-content: center;
        background-color: rgb(3, 161, 158, .5);
        border-radius: 100px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -ms-border-radius: 100px;
        -o-border-radius: 100px;
    }

    >p {
        margin: 0;
        margin-top: 10px;
    }
}

/* course card */
.course-card {
    width: 100%;
    height: 230px;
    overflow: hidden;
    display: flex;
    border: 1px solid rgb(3, 161, 158, .5);
    margin-bottom: 20px;
    /* align-items: center;
    justify-content: start;
    flex-direction: column; */
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.course-img {
    width: 350px;
    height: 100%;
    /* background-color: rgb(3, 161, 158, .5); */

    >img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.course-details {
    width: 100%;
    padding: 20px;
    display: block;
}

.course-review {
    gap: 10px;
    display: flex;
    align-items: center;

    >p {
        margin: 0%;
        font-size: 13px;
        font-weight: 500;
    }
}

.review-icon {
    >i {
        color: #F19606;
    }
}

.course-title {
    font-size: 18px;
    margin-top: 15px;
    color: #272929;
}

.lesson {
    display: block;
    font-size: 13px;
}

.progress-bars {
    gap: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;

    >p {
        margin: 0%;
        font-weight: 500;
        font-size: 13px;
        min-width: 130px;
    }
}

.progress {
    height: 10px;
    width: 100%;
}

/* dashboard page end */


/********** profile & setting page start *************/
.uploaded-photo {
    margin-bottom: 20px;

    >img {
        height: 70px;
        width: 70px;
        border-radius: 100px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -ms-border-radius: 100px;
        -o-border-radius: 100px;
    }
}

.set-profile-photo {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgb(3, 161, 158, .5);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;

    >div {
        gap: 10px;
        display: flex;
        align-items: center;

        >i {
            color: #03A19E;
            font-size: 22px;
        }

        >p {
            color: #6a6a6a;
            margin: 0%;
            font-weight: 500;
        }
    }
}

.upload-photo-btn {
    border: 1px solid rgb(3, 161, 158, .5);
    padding: 8px 10px;
    color: #03A19E;
    font-weight: 500;
    font-size: 14px;
    background-color: rgb(3, 161, 158, .1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.file-upload {
    display: none;
}

.userInput {
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    >div {
        width: 50%;
    }
}

.user-content {
    >label {
        width: 100%;
        font-size: 14px;
        font-weight: 550;
        margin-top: 15px;
    }

    >input {
        width: 100%;
        padding: 10px;
        outline: none;
        font-size: 13px;
        border: 1px solid rgb(3, 161, 158, .5);
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }

    >input::placeholder {
        font-size: 13px;
    }
}

/********* profile page end **********/

.our_courses {
    margin-top: 0px;
}

/******** exam page start ********** */
.exam-title {
    font-size: 17px !important;
}

.exam-top {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-family: "Poppins", serif;
}

.prevNextBtn>button,
.exam-top>button {
    color: #fff;
    padding: 8px 15px;
    border: none;
    font-size: 14px;
    font-family: "Poppins", serif;
    background-color: #03A19E;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.question {
    font-size: 15px;
}

.exam-body {
    margin-top: 40px;

    >.MCQTime {
        display: flex;
        justify-content: space-between;

        >button {
            color: #007465;
            padding: 5px 10px;
            background: #D9EAE8;
            border: none;
            font-size: 12px;
            font-weight: 500;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
        }
    }

    >p {
        margin-top: 20px;
        font-weight: 550;
    }

    >div {
        letter-spacing: 1px;
        line-height: 30px;
        color: #646464;

        >select {
            color: #707070;
            outline: none;
            border: 1px solid rgb(199, 199, 197);
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
        }
    }

}

.Answer {
    padding: 0%;

    >li {
        list-style: none;
        display: flex;
        padding: 10px;
        margin-top: 15px;
        align-items: center;
        justify-content: start;
        font-family: "Poppins", serif;
        border: 1px solid #dad6d6;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;

        >input {
            height: 20px !important;
            width: 30px !important;
            margin-right: 10px;
        }

        >label {
            font-size: 14px;
            color: #646464;
            cursor: pointer;
        }
    }
}

.prevNextBtn {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
}

.btn_disable {
    opacity: 0.5;
}

.SERU_Mock_Complete {
    gap: 30px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

    >div {
        height: 400px;
        width: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;

        >h4 {
            margin-top: 20px;
            font-weight: bold;
        }

        >.timeTaken {
            gap: 20px;
            display: flex;
            margin-top: 20px;
            align-items: center;
            justify-content: center;

            >p {
                margin: 0%;
            }

            >button {
                color: #007465;
                padding: 5px 10px;
                background: #D9EAE8;
                border: none;
                font-size: 12px;
                font-weight: 500;
                border-radius: 5px;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                -ms-border-radius: 5px;
                -o-border-radius: 5px;
            }
        }
    }
}

.mock-result {
    .mcq-number {
        padding: 25px;
        color: #fff;
        font-weight: bold;
        margin-bottom: 20px;
        background-color: #007465;
        border-radius: 100px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -ms-border-radius: 100px;
        -o-border-radius: 100px;
    }

    .Performance {
        display: flex;
        margin-top: 30px;
        align-items: center;

        >p {
            margin: 0%;
            padding: 4px 10px;
            padding-right: 35px;
            border-top-left-radius: 5px;
            border-bottom-left-radius: 5px;
            border: 1px solid rgb(179, 179, 179);
        }

        >button {
            color: #fff;
            border: none;
            padding: 5px 15px;
            margin-left: -3px;
            background-color: #E2425C;
            border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
        }
    }

    >p {
        font-weight: 500;
        margin-top: 20px;
    }

    .viewQuestion {
        display: flex;
        gap: 20px;

        >button {
            color: #fff;
            padding: 10px 20px;
            border: none;
            margin-top: 20px;
            background-color: #007465;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
        }
    }
}

/********** exam page start ********** */

/* dashboard-content end */