//  Base  colors, fonts etc...
@import "_base/_variables.scss";
@import "_base/_mixins.scss";
@import "_modules/_layouts.scss";
/* ------------------------------------- */
/*   Course-filter (Isotope) ........... */
/* ------------------------------------- */
.course-grid, .course-slider {
	position: relative;
	margin: -15px;
  }
  .course-grid:after {
	content: "";
	display: block;
	clear: both;
  }
  .course-grid .course-item {
	float: left;
	width: 33.3333333333%;
	padding-left: 15px;
    padding-right: 15px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
  }
  .course-grid.pf_5_cols .course-item { width: 20%; }
  .course-grid.pf_4_cols .course-item { width: 25%; }
  .course-grid.pf_2_cols .course-item { width: 50%; }
  .course-grid.pf_1_cols .course-item { width: 100% !important;}
  .course-filter-wrapper{overflow: visible;}

  .learnpress-page input[type=text], .learnpress-page input[type=email], .learnpress-page input[type=url], .learnpress-page input[type=number], .learnpress-page input[type=password], .learnpress-page textarea {
    -webkit-border-radius:25px;
    -moz-border-radius: 25px;
    border-radius:25px;
  }

/* Isotope Filtering **/
.course-filter{
    position: relative;
	text-align: center;
	padding-left: 0;
	padding-right: 0;
    list-style: none;
    text-align: center;
    margin: 20px auto;
    padding: 0 15px;
    position: relative;
    z-index: 4;
    &:after {
        content: "";
        display: block;
        clear: both;
    }
    &.left { text-align: left; }
    &.right{ text-align: right; }

    a {
        @extend .font-family;
        position: relative;
        overflow: hidden;
        display: inline-block;
        margin-right: 30px;
        line-height: 29px;
        letter-spacing: 0px;
        @extend .bold-weight;
        color: $color-font;
        font-size: 16px;
        will-change: transform;
        -ms-word-wrap: break-word;
        word-wrap: break-word;
        text-transform: capitalize;
        span {
            display: inline-block;
            transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95), -webkit-transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
            will-change: transform;
        }
        &:before {
            content: attr(data-title);
            height: 100%;
            position: absolute;
            width: 100%;
            top: 0;
            left: 0;
            transform: translateY(110%);
            transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95), -webkit-transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
        }
        &:hover , &:active , &:focus, &.active{ 
            @extend .color-main;
            &:before { transform: translateY(0); @extend .color-main; }
            span { transform: translateY(-125%); }
        }
    }

    li a:hover, li a.selected { @extend .color-main; }
    li:last-child a {margin-right: 0;  }
    li {display: inline-block;text-align: center;}
    li:last-child {margin-right: 0;}
    li:first-child {margin-left: 0; }
}
/* -------- wishlist ------- */
.wishlist-icon {
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    border-radius: 100%;
    border: 0;
    padding: 0;
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 9;
}
.mo-wishlist-wrapper {
    color: #FFF;
    font-size: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    border-radius: 100%;
    border: 0;
    padding: 0;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    z-index: 9;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    @extend .color-dark;
    @extend .box-shadow2;
    .course-wishlist:before{margin-right: 0;}
    &:before{
        @extend .color-dark;
        font-size:18px;
        visibility: visible;
        margin: 0 !important;
        content: "\e642";
        font-family: 'Pe-icon-7-stroke';
    }
    &.on:before{
        content: "\f004";
        font-family: "Font Awesome 5 Free";
    }
    &:hover {
        @extend .bg-dark; color:#fff;  &:before{color:#fff;}
    }
    &.on {
        color:#f8035d;
        &:before{color:#f8035d;}
        -webkit-backdrop-filter: blur(14px) brightness(92%);
        backdrop-filter: blur(14px) brightness(92%);
        background-color: rgba(255, 255, 255, 0);
        -webkit-backdrop-filter: blur(14px) brightness(92%);
        backdrop-filter: blur(14px) brightness(92%);
    }
}
.course-item .mo-wishlist-wrapper.ajaxload_wishlist:before {
    content: "\e6c2";
    font-family: 'Pe-icon-7-stroke';
    -webkit-animation: 1s linear 0s normal none infinite running mo-spin;
    animation: 1s linear 0s normal none infinite running mo-spin;
    cursor: auto;
    display: inline-block;
    font-size: 19px;
}
.lp-archive-courses .course-wishlist:before {
    font-family: "Font Awesome 5 Free";
    content: "\f004";
}
@-webkit-keyframes mo-spin {
	0% { -webkit-transform: rotate(0deg); transform: rotate(0deg);}
	100% { -webkit-transform: rotate(359deg); transform: rotate(359deg);}
}
@keyframes mo-spin {
	0% { -webkit-transform: rotate(0deg); transform: rotate(0deg);}
	100% { -webkit-transform: rotate(359deg); transform: rotate(359deg);}
}
/* ----------- */
.post-author {
    width: 50%;
    float: left;
    img{
        width: 32px;
        height: 32px;
        border-radius: 50% !important;
        vertical-align: middle;
        margin-right: 6px;
        overflow: hidden;
    }
    span{
        line-height: 27px;
        letter-spacing: .04em;
        text-transform: uppercase;
        font-size: 12px;
    }
}
/* ----------- */
.course-item{
    .thumbnail{
        position: relative;
        background: transparent;
        border: 0;
        padding: 0;
        margin: 0;
        border-radius: 0;
        overflow: hidden;
        height: 260px;
        img{
            object-fit: cover;
        }
    }
    .mo-course-review-wrapper{
        .review-stars-rated{
         margin-bottom: 0;
         margin-top: -4px;
         margin-right: 7px;
         float:left;
         width:auto;
        }
        .review-stars{
             display: inline-block;
             position: relative;
             font-size: 13px;
             top: 0;
             line-height: 1.5;
             float: left;
         }
        .review-star{
            display: inline;
            margin:0;
            svg{ width:15px; @extend .star-color;}
         }
     }
    .course-price{
        .course-price{
            @extend .Vbold-weight;
        }
        span.origin-price {
            margin-right: 5px;
            opacity: 0.7;
            text-decoration:line-through;
        }
    }
    .post-title{
        display: inline;
        background-image: linear-gradient(transparent 95%, currentcolor 5%);
        background-repeat: no-repeat;
        background-size: 0% 100%;
        transition: all 1s;
        @extend .font-subtitle; 
        &:hover{
            background-size: 100% 100%;
        }
    }
    .course-meta{
        list-style: none;
        padding: 0;
        margin-bottom: 0;
        li{
            font-size:14px; margin-right:15px;
            i { margin-right: 4px; font-size: 12px;}
        }
    }
}
.course-style-1{
    .course-item-inner{
        position: relative;
        background-color: #fff;
        overflow: hidden;
        margin-top: 30px !important;
        @extend .radius25;
        @extend .box-shadow;
        .thumbnail{
            position: relative;
            max-height: 250px;
            padding: 0;
            overflow: hidden;
            margin: 15px;
            @extend .radius15;
            > a:after {
                position: absolute;
                background-color: rgba(255, 255, 255, 0);
                -webkit-backdrop-filter: blur(14px) brightness(92%);
                backdrop-filter: blur(14px) brightness(92%);
                content: "";
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                opacity: 0;
                @extend .radius15;
                transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
            }
            img{
                height: 100%;
                width: 100%;
                object-fit: cover;
                -webkit-transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
                transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
            }
        }
    }
    .course-level{
        position: absolute;
        z-index: 9;
        text-align: center;
        color: #ffffff;
        font-size: 13px;
        font-weight: 900;
        line-height: 1.2em;
        padding: 5px 10px;
        top: 30px;
        left: 30px;
        text-transform: capitalize;
        background-color: rgba(255, 255, 255, 0);
        -webkit-backdrop-filter: blur(14px) brightness(92%);
        backdrop-filter: blur(14px) brightness(92%);
        @extend .radius25;
    }
    .inner{
        position: relative;
        padding: 10px 30px 30px;
        .content{margin-top: 10px; margin-bottom: 0;}
        .course-meta {
            margin-bottom: 0;
            margin-top: 10px;
        }
    }
    .course-price{
        position: absolute;
        right: 30px;
        top: -50px;
        font-size: 13px;
        color: #fff;
        text-transform: uppercase;
        border-radius: 50%;
        width: 60px;
        min-height: 60px;
        line-height: 20px !important;
        text-align: center;
        z-index: 2;
        transition: all .21s cubic-bezier(.5,.5,.4,.9);
        word-break: break-all;
        @extend .center_vertical;
        @extend .bg-color-main;
        .origin-price, .decimal-separator{display: none;}
        del{display: none;}
    }
    &:hover{
        .post-title{ background-size: 100% 100%; }
        .thumbnail {
            a:after{
                opacity: 1;
            }
            img{
                -webkit-transform: scale3d(1.1, 1.1, 1.1);
                transform: scale3d(1.1, 1.1, 1.1);
            }
        }
        .course-price{
            -ms-transform: scale(1.2) translateY(-10px);
            -moz-transform: scale(1.2) translateY(-10px);
            -o-transform: scale(1.2) translateY(-10px);
            -webkit-transform: scale(1.2) translateY(-10px);
            transform: scale(1.2) translateY(-10px);
        }
    }
}

.course-style-2{
    .course-item-inner{
        margin-bottom: 15px;
        margin-top: 15px;
        transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        @extend .border;
        @extend .radius25;
        .thumbnail{
            @extend .radius25;
            img{
                min-width: 100%;
                @extend .radius25;
                -webkit-transform: scale(1.05);
                transform: scale(1.05);
                -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
                -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
                transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
            }
            a.course-thumb:after {
                position: absolute;
                content: "";
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: #000;
                opacity: 0.3;
            }
        }
        .course-price{
            position: absolute;
            color: #fff;
            flex-direction: column;
            row-gap: 2px;
            z-index: 99;
            font-size: 14px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            bottom: 0;
            right: 0;
            padding: 10px 25px;
            border-top-left-radius: 25px;
            background: var(--color-primary);
        }
        span.course-level, span.course-duration {
            font-size: 12px;
            @extend .bold-weight;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        span.course-duration{
            margin-left:5px;
        }
        span.course-level{
            margin-right: 15px;
            @extend .color-main;
            &:before{
                content: "";
                width: 4px;
                height: 4px;
                border-radius: 50%;
                background-color: var(--color-primary);
                margin-right: 10px;
                display: inline-block;
                transform: translateY(-2px);
            }
        }
        .inner{
            padding: 24px 30px 20px 30px;
            .content-title{margin-bottom:10px;}
            .content{ margin-bottom: 15px; display: block; }
            .content-footer{
                margin-top: 20px;
                padding-top: 20px;
                border-top-width: 1px;
                border-top-style: solid;
                border-color: rgba(10, 29, 53, 0.1);
                .post-author{ 
                    margin-top: -10px; 
                    img {
                        width: 40px !important;
                        height: 40px !important;
                        float: left;
                    }
                    span {
                        padding-top: 5px;
                        display: inline-block;
                    }
                }
                .button{
                    display: block;
                    > span{justify-content: right;}
                }
            }
        }
    }
    &:hover .course-item-inner{
        border-color: transparent;
        @extend .box-shadow2;
        .thumbnail img{  -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1);}
        .post-title{ background-size: 100% 100%; }
        .course-price{ @extend .bg-blur; }
    }
}

.course-style-3{
    position: relative;
    .course-item-inner{
        position: relative;
        margin-top: 25px;
        margin-bottom: 50px;
        border-radius: 25px;
        .thumbnail{
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            height: 395px;
            max-height: 395px;
            img{
                -webkit-transform: scale(1.05);
                transform: scale(1.05);
                -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
                -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
                transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
            }
            > a:after{
                content: "";
                height: 100%;
                width: 100%;
                position: absolute;
                top: 0;
                left: 0;
                z-index: 1;
                background-color: rgba(255, 255, 255, 0);
                -webkit-backdrop-filter: blur(14px) brightness(92%);
                backdrop-filter: blur(14px) brightness(92%);
                display: flex;
                justify-content: flex-start;
                align-items: flex-end;
                opacity: 0;
                transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
            }
        }
        .course-rating{display:none;}
        .mo-course-price{
            width: 25%;
            display: inline-flex;
            flex-direction: column-reverse;
            border-top-width: 1px;
            border-top-style: solid;
            border-color: rgba(10, 29, 53, 0.1);
            margin-top: 10px;
            padding-top: 10px;
           .origin-price{display:none;}
        }
        .course-price{
            font-size: 14px;
            bottom: 27px;
            right: 25px;
            text-align: right;
            @extend .color-main;
        }
        span.course-level {
            font-size: 12px;
            text-transform: uppercase;
            margin-right: 10px;
            padding: 0;
            @extend .bold-weight;
            @extend .color-main;
            &:after{
                content: "";
                width: 4px;
                height: 4px;
                border-radius: 50%;
                margin-left: 10px;
                display: inline-block;
                transform: translateY(-2px);
                @extend .bg-color-main;
            }
        }
        .mo-course-review-wrapper{
            margin-top: 10px;
            display: flex;
            .review-stars{top:0;}
        }
        .inner{
            position: absolute;
            border-radius: 25px;
            width: calc(100% - 20px);
            left: 0;
            bottom: -40px;
            z-index: 2;
            overflow: hidden;
            border: 1px solid #E0E0E0;
            padding: 25px;
            justify-content: space-between;
            background-color:#fff;
            margin: 0 10px;
            gap: 10px;
            .course-cat{
                position: relative;
                display: inline-block;
                color: #a0a0a0;
                letter-spacing: .04em;
                color: inherit;
                text-transform: uppercase;
                font-size: 12px;
                a{display:none;}
                a:first-child { display:inline-block;}
            }
            .course-meta {
                margin-top: 10px;
                padding-top: 10px;
                border-top-width: 1px;
                border-top-style: solid;
                border-color: rgba(10, 29, 53, 0.1);
                width: 75%;
                display: inline-flex;
            }
        }
    }
    &:hover .course-item-inner{
        .thumbnail img{ zoom: 1; -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1);}
        .thumbnail > a:after { opacity: 1; }
        .post-title{ background-size: 100% 100%; }
    }
}

.course-style-4{ 
    .course-item-inner{
        position: relative;
        overflow: hidden;
        min-height: 420px;
        transition: transform .65s cubic-bezier(.23,1,.32,1);
        margin-top: 30px;
        @extend .radius25;
        .img-perspective img{min-height: 350px;}
        .perspective-caption {
            pointer-events: visible;
            position: absolute;
            z-index: 3;
            left: 20px;
            bottom: 20px;
            width: calc(100% - 40px);
            padding: 20px 25px 20px;
            background-color: rgba(255, 255, 255, 0);
            -webkit-backdrop-filter: blur(14px) brightness(92%);
            backdrop-filter: blur(14px) brightness(92%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
        }
        .perspective_overlay{
            height: 60%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--color-dark) 100%);
        }
        .course-item-price{
            color: #fff;
            text-align: center;
            align-items: center;
            justify-content: center;
            padding: 2px 5px;
            font-size: 13px;
            font-weight: 900;
            line-height: 1.2em;
            display: inline-block;
            margin-bottom:0px;
            @extend .radius25;
            @extend .bg-dark;
        }
        .post-title{ 
            margin-top:10px;
            color:#fff;
            @extend .font-sm-subtitle;
            a, a:hover{color:inherit;}
        }
        .course-meta{ 
            margin-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 5px;
            margin-bottom: 0;
        }
        .course-meta li {
            font-size: 12px;
            opacity: 0.7;
        }
        .mo-wishlist-wrapper.on:before, .mo-wishlist-wrapper.on { color: #fff;}
        .mo-wishlist-wrapper:hover, .mo-wishlist-wrapper.on{@extend .bg-color-main;}
    }
	&:hover{
        .course-item-inner{
            transform: scale3d(1.09,1.09,1);
            @extend .box-shadow2;
        }
        .img-perspective img {
			-webkit-transform: scale(1);
			transform: scale(1);
			opacity: 1;
		}
        .post-title{ background-size: 100% 100%; }
		.perspective-caption {
			-moz-transform: translateY(-65px);
			-ms-transform: translateY(-65px);
			-webkit-transform: translateY(-65px);
			transform: translateY(-10px);
		}
	}
}


.course-style-5{
    .course-item-inner{
        overflow: hidden;
        display: flex;
        background: rgba(255,255,255,0.4);
        margin-top: 15px;
        margin-bottom: 15px;
        border: 1px solid #E9E9E9;
        @include border-radius(25px);
        @include single-transition(all, .3s, ease-in-out);
    }
    .wishlist-icon{
       top:20px; right:20px;
       .mo-wishlist-wrapper { border: 1px solid #E9E9E9;}
    }
    .cat-level-wrap{
        span.course-level, .course-cat a {
            font-size: 10px;
            @extend .bold-weight;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        span.course-level{
            margin-right: 15px;
            @extend .color-main;
            &:before{
                content: "";
                width: 4px;
                height: 4px;
                border-radius: 50%;
                background-color: var(--color-primary);
                margin-right: 10px;
                display: inline-block;
                transform: translateY(-2px);
            }
        }
    }
	.content-wrap {
		padding: 30px;
		position: relative;
		width: 50%;
		display: flex;
		flex-direction: column;
		gap: 0;
		justify-content: flex-end;
		.button{
			margin-bottom: 0;
			padding-bottom: 0;
            padding-top: 10px;
            margin-top: 10px;
            border-top: 1px solid #E9E9E9;
		}
		.icon-wrap {
			text-align: left;
            display: block;
			flex-grow: 1;
		}
        .title-wrap{ margin-bottom: 15px;}
		.post-title{
			flex-grow: 1;
            @extend .font-l-subtitle;
		}
	}
	.caption{
		position: relative;
		width: 50%;
		overflow: hidden;
        max-height: 335px;
        .course-thumb{
            position: relative;
            height: 100%;
            width: 100%;
            display: block;
            object-fit: cover;
            will-change: transform;
            img{
                position: relative;
                overflow: hidden;
                width: 100%;
                height: 100% !important;
                object-fit: cover;
                will-change: transform;
                transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
            }
            &:after{
                content: "";
                height: 100%;
                width: 100%;
                position: absolute;
                top: 0;
                left: 0;
                z-index: 1;
                background-color: #000;
                opacity: 0.3;
                -webkit-backdrop-filter: blur(14px) brightness(92%);
                backdrop-filter: blur(14px) brightness(92%);
                display: flex;
                justify-content: flex-start;
                align-items: flex-end;
                transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
            }
        }
        .course-price{
            position: absolute;
            color: #fff;
            flex-direction: column;
            row-gap: 2px;
            z-index: 99;
            font-size: 14px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            top: 0;
            left: 0;
            padding: 5px 20px;
            border-radius: 10px;
            border-bottom-left-radius: 0;
            @include single-transition(all, .3s, ease-in-out);
            @extend .bg-blur;
        }
	}
    .mo-wishlist-wrapper.on:before, .mo-wishlist-wrapper.on { color: #fff;}
    .mo-wishlist-wrapper:hover, .mo-wishlist-wrapper.on{@extend .bg-color-main; @extend .border-color-main;}
	.course-item-inner:hover{
        .course-thumb{
            img{
                -webkit-transform: scale(1.05) translateX(2%);
                -ms-transform: scale(1.05) translateX(2%);
                transform: scale(1.05) translateX(2%);
            }
            &:after {  background-color: rgba(255, 255, 255, 0); opacity: 1;}
        }
        .course-price{ @extend .bg-color-main; }
	}
}

.course-style-6{
    .course-item-inner{
        overflow: hidden;
        display: flex;
        background-color: #fff;
        overflow: hidden;
        @extend .radius25;
        margin-top: 15px;
        margin-bottom: 15px;
        @extend .box-shadow;
        @include single-transition(all, .3s, ease-in-out);
    }
    .wishlist-icon{left:15px;}
    .mo-wishlist-wrapper.on:before, .mo-wishlist-wrapper.on { color: #fff;}
    .mo-wishlist-wrapper:hover, .mo-wishlist-wrapper.on{@extend .bg-color-main;}
	.content-wrap {
		padding: 15px 30px 15px;
		position: relative;
		width: 50%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		.post-title{
			flex-grow: 1;
            @extend .font-l-subtitle;
		}
        .content{margin-top:10px;}
        .desc-content {
            margin-top: 10px;
            border-top: 1px solid #E9E9E9;
        } 
        .post-author{width:100%;}       
        .course-item-price{
            //color: #fff;
            text-align: center;
            align-items: center;
            justify-content: center;
            padding: 3px 12px;
            font-size: 13px;
            font-weight: 900;
            line-height: 1.2em;
            display: inline-block;
            margin-bottom: 10px;
            @extend .radius25;
            //@extend .bg-color-main;
            background-color: var(--color-grey);
        }
        span.course-level {
            font-size: 12px;
            text-transform: uppercase;
            margin-right: 5px;
            padding-right: 5px;
            @extend .bold-weight;
            &:after{
                content: "";
                width: 4px;
                height: 4px;
                border-radius: 50%;
                margin-left: 10px;
                background: currentColor;
                display: inline-block;
                transform: translateY(-2px);
            }
        }
        .course-duration{
            position: relative;
            display: inline-block;
            margin-top: 10px;
            color: #a0a0a0;
            letter-spacing: .04em;
            color: inherit;
            text-transform: uppercase;
            font-size: 12px;
        }
	}
	.caption{
		position: relative;
		width: 50%;
		overflow: hidden;
		img{
			position: relative;
			overflow: hidden;
			width: 100%;
			height: 100% !important;
			object-fit: cover;
			will-change: transform;
			transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
		}
        .course-price{
            position: absolute;
            color: #fff;
            flex-direction: column;
            row-gap: 2px;
            z-index: 99;
            font-size: 14px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            top: 0;
            left: 0;
            padding: 5px 20px;
            border-radius: 10px;
            border-bottom-left-radius: 0;
            @extend .bg-color-main;
        }
	}
	.course-item-inner:hover img{ 
        -webkit-transform: scale(1.05) translateX(2%);
            -ms-transform: scale(1.05) translateX(2%);
                transform: scale(1.05) translateX(2%);
	}
}
.owl-item {
    .course-item:hover .course-item-inner { box-shadow: none !important;}
    .course-style-2:hover .course-item-inner { border-color: #ccc;}
}
.learn-press-wishlist-courses .course{
    .course-item-inner{
        position: relative;
        background-color: #fff;
        overflow: hidden;
        @extend .radius25;
        @extend .box-shadow;
        .thumbnail{
            max-height: 300px;
            padding: 0;
            margin: 0;
            overflow: hidden;
            @extend .bg-dark;
            img{
                -webkit-transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
                transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
            }
        }
    }
    .course-level{
        position: absolute;
        z-index: 9;
        text-align: center;
        color: #ffffff;
        font-size: 13px;
        font-weight: 900;
        line-height: 1.2em;
        padding: 5px;
        top: 15px;
        left: 15px;
        @extend .radius4;
        @extend .bg-blur;
    }
    .inner{
        position: relative;
        padding: 30px;
        .content{margin-top:10px;}
    }
    .course-price{
        position: absolute;
        right: 30px;
        top: -32px;
        font-size: 13px;
        display: inline-block;
        color: #fff;
        text-transform: uppercase;
        border-radius: 50%;
        width: 60px;
        text-align: center;
        line-height: 60px !important;
        z-index: 2;
        transition: all .21s cubic-bezier(.5,.5,.4,.9);
        @extend .bg-color-main;
        .origin-price{display: none;}
    }
    .content, .course-meta, .button{ display:none; }
    .review-stars-rated {
        margin-bottom: 0;
        margin-right: 5px;
        float: left;
        .far svg { width: 15px;}
    }
    .review-stars{
        display: inline-block;
        position: relative;
        top: -6px;
        line-height: 1;
        font-size: 13px;
    }

    &:hover{
        .post-title{ background-size: 100% 100%; }
        .thumbnail img{
            opacity: .4;
            -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
        }
        .course-price{
            -ms-transform: scale(1.2) translateY(-10px);
            -moz-transform: scale(1.2) translateY(-10px);
            -o-transform: scale(1.2) translateY(-10px);
            -webkit-transform: scale(1.2) translateY(-10px);
            transform: scale(1.2) translateY(-10px);
        }
    }
}


.course-wishlist-wrapper{overflow: visible;}
.course-wishlist-item{
    margin-top: 15px;
    margin-bottom: 15px;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.course-wishlist-wrapper.pf_5_cols .course-item { width: 20%;}
.course-wishlist-wrapper.pf_4_cols .course-item { width: 25%;}
.course-wishlist-wrapper.pf_3_cols .course-item { width: 33.3%;}
.course-wishlist-wrapper.pf_2_cols .course-item { width: 50%;}
.course-wishlist-wrapper.pf_1_cols .course-item { max-width: 400px;}

/* course pagetitle **/
.lp_course_pagetitle.pagetitle-v1{min-height:130px;}
.lp_course_pagetitle.pagetitle-v2{
    .mo-course-index-archive{
        float: none;
        display: block;
        bottom: 0;
        width: 100%;
        left: 0;
    }
}
.mo-course-archive.container {
    min-height: 400px;
    margin-bottom: 80px;
}
.lp_course_pagetitle .mo-course-index-archive{
    width: 100%;
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    .mo-course-archive-index-count{
        display: inline-block;
        margin-top: 30px;
        color: inherit;
        @extend .font-sm-subtitle;
    }
    .mo-course-archive-search{
        input{
            border: 1px solid rgba(255, 255, 255, 0.1);
            -webkit-backdrop-filter: blur(var(--mo-backdrop-filter-blur, 0));
            backdrop-filter: blur(var(--mo-backdrop-filter-blur, 0));
            --mo-backdrop-filter-blur: 15.6px;
            background: rgba(255, 255, 255, 0.1);
            &::placeholder{color:#fff;}
        }
    }
}
/* course-search-form **/
.nori-archive-course-search-form, .nori-courses-searching, .lp-form-course-filter .lp-form-course-filter__item .lp-form-course-filter__content .lp-course-filter-search-field{
    position: relative;
    max-width:500px;
    margin: auto;
    input[type=text]{
        height: 55px;
        width: 100%;
        font-size: 13px;
        background-color: transparent;
        -webkit-font-smoothing: subpixel-antialiased;
        -webkit-appearance: none;
        display: inline-block;
        -webkit-appearance: none;
        box-shadow: none;
        vertical-align: middle;
        background: 0 0;
        outline: 0;
        padding-left: 30px;
        padding-right: 50px;
       // color: #fff;
        @extend .radius50;
        @include single-transition(all, 0.4s , ease-in-out);
    }
    .search-button, .mo-course-btn{
        background-color: transparent;
        border: none;
        position: absolute;
        z-index: 0;
        font-size: 0;
        outline: none;
        width: 50px;
        height: 50px;
        top: 3px;
        right: 0;
        @extend .radius50;
        &:before {
            font-family: FontAwesome;
            font-size: 16px;
            text-align: center;
            content: "\f002";
            position: absolute;
            font-weight: 400;
            display: block;
            width: 45px;
            height: 45px;
            line-height: 42px;
            z-index: 1;
            top: 15px;
            right: 5px;
            color: #fff;
            @extend .radius50;
            @extend .bg-dark;
            @include single-transition(all, 0.4s , ease-in-out);
        }
        &:hover:before {
            @extend .bg-color-main;
        }
    }
}

.pagetitle-v2 .nori-archive-course-search-form .search-button{top:-1px;}
.pagetitle-v5 .nori-archive-course-search-form .search-button{top: -10px;}

.lp-form-course-filter__content .lp-course-filter-search-result{
    .lp-courses-suggest-list.item-course-suggest { padding: 10px 25px; }
    .lp-courses-suggest-list .course-img img { border-radius: 5px; }
    .lp-courses-suggest-info { border-radius: 5px; font-size: 14px;}
}
form.lp-form-course-filter {
    border-radius: 25px;
    padding: 10px 30px 30px;
    @extend .border;
}
/* learnpress element defualt **/
.item-instructor{
    position: relative;
    overflow: hidden;
    margin: auto;
    @extend .radius25;
    @extend .border;
    .instructor-avatar{
        position: relative;
        overflow: hidden;
        max-width: 250px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        @extend .radius25;
        @extend .center_vertical;
        &:after{
            content: "";
            height: 100%;
            left: 0;
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 1;
            -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
            transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
            -webkit-transform: scaleY(0);
            transform: scaleY(0);
            -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0.31) 50%, rgba(0, 0, 0, 0.65) 100%);
        }
    }
    > a{
        display: block;
        margin-bottom: 0;
        font-style: normal;
        text-transform: capitalize;
        font-size: 18px;
        line-height: 23px;
        margin-top: 15px;
        @extend .bold-weight;
    }
    > p { margin: auto; }
    .instructor-total-courses, .instructor-total-students{
        margin-bottom: 0;
        font-weight: 400;
        font-size: 15px;
        line-height: 26px;
        letter-spacing: 0;
        font-style: normal;
        text-transform: capitalize;
        opacity: 0.8;
        color:#939393;
        float: left;
    }
    .instructor-display-name{
        text-align: center;
        display: block;
    }
    .instructor-total-courses{ 
        border-left: 0;
        border-right: 1px solid #e2e0db;
        padding-right: 8px;
    }
    .instructor-total-students{margin-left:10px;}
    &:hover{
        > a{ @extend .color-main; }
        .instructor-avatar:after{
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
            opacity: 1;
        }
    }
}
.lp-archive-courses .course-item .course-instructor a {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: .5px;
    color: $color-content;
    @extend .bold-weight;
    &:hover{color:inherit;}
}

.learn-press-courses[data-layout=grid] .course .course-item:hover, .learn-press-courses[data-layout=list] .course .course-item:hover{ border-color: transparent; @extend .box-shadow;}
.learn-press-courses[data-layout=grid] .course-content .course-title, .learnpress-widget-wrapper .lp-widget-course__title{ @extend .font-sm-subtitle;}
.lp-archive-courses .course-content .course-categories a:first-child{@extend .bg-color-main;}

.lp-archive-courses .course-content .course-permalink{
    @extend .font-primary;
    @include single-transition(all, 0.4s , ease-in-out);
    &:hover, &:hover .course-title{
        @extend .color-main;
    }
}
/* list learnpress courses */
.learn-press-courses[data-layout=list]{
    .course {
        padding-bottom: 0;
        margin-bottom: 30px;
        border-radius: 25px;
        overflow: hidden;
        @extend .border;
        .course-thumbnail{
            height: 100%;
            > a, .course-img{
                width: 100%;
                height: 100%;
            }
            img{
                position: relative;
                overflow: hidden;
                width: 100%;
                height: 100% !important;
                object-fit: cover;
                will-change: transform;
            }
        }
        .course-readmore a {
            border-radius: 25px !important;
            border-color: #ccc;
            font-size: 15px;
        }
    }
    .course-content{
        padding: 30px;
        .course-title{ @extend .font-subtitle;}
        .course-readmore a:hover{ opacity:1; @extend .bg-dark;}
    }
    .course-wrap-meta {
        .meta-item::before{ @extend .color-main;}
        .meta-item {
            text-transform: capitalize;
            line-height: 20px;
            letter-spacing: .5px;
            font-style: normal;
            font-size: 12px;
            text-transform: uppercase;
            @extend .bold-weight;
            &:before {
                margin-right: 0px;
                font-size: 12px;
            }
        }
    }
    .course-instructor-category label{ display:none;}
    .course-content .course-categories {
        width: 120px;
        height: 30px;
        overflow: hidden;
        color: transparent;
        a{
            clip-path: none;
            font-weight: 600;
            font-size: 12px !important;
            line-height: 23px !important;
            text-transform: uppercase;
            z-index: 4;
            overflow: hidden;
            line-height: 1.5 !important;
            padding: 2px 13px 2px 14px;
            color: #fff;
            -webkit-transition: all 0.4s ease-in-out;
            -moz-transition: all 0.4s ease-in-out;
            -o-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
            border-radius: 10px;
            &:hover{color:#fff;}
        }
    }
}
.lp-archive-courses .course-content{
    .course-instructor {
        margin-bottom: 0;
        margin-top: 0;
        text-transform: capitalize;
        float: left;
    }
    .course-categories {
        float: left;
        margin-right: 0;
    }
    .course-permalink {
        clear: both;
    }
}
/** widget **/
.lp_widget_course_info, .widget_course_extra .learnpress-widget-wrapper{ @extend .radius25; }
.wp-block-heading , .widget-title , .learnpress.widget_course_info .lp_widget_course_info h3, .elementor-widget-wp-widget-learnpress_widget_course_info .lp_widget_course_info h3, .learnpress.widget_course_extra .learnpress-widget-wrapper .lp-widget-course-extra h3, .elementor-widget-wp-widget-learnpress_widget_course_extra .lp-widget-course-extra h3{ 
    @extend .font-sm-subtitle;
}
.learnpress-widget-wrapper .lp-widget-course{
    border-radius: 16px;
    overflow: hidden;
    border: 0 !important;
    @extend .box-shadow;
    .lp-widget-course__content{
        padding: 30px 30px 15px;
        border: 0 !important;
        h3{ 
            margin-bottom: 10px;
            display: inline;
            background-image: linear-gradient(transparent 95%, currentcolor 5%);
            background-repeat: no-repeat;
            background-size: 0% 100%;
            transition: all 1s;
        }
        .lp-widget-course__description{font-size:15px;line-height:25px;}
        .lp-widget-course__meta{ border-top:1px solid #00000030; padding-top:15px;}
        .lp-widget-course__meta .course-price .course-item-price { display: block;}
        span.origin-price {
            margin-right: 5px;
            opacity: 0.7;
            text-decoration: line-through;
        }
    }
    &:hover{
        .lp-widget-course__content h3{ background-size: 100% 100%;}
    }
}
.lp-form-course-filter .lp-form-course-filter__item, .lp-form-course-filter .lp-form-course-filter__item .lp-form-course-filter__content .lp-course-filter-search-result{ border:0;}
.lp-form-course-filter .lp-form-course-filter__item .lp-form-course-filter__content .lp-course-filter__field label { font-size: 15px; line-height: 26px; font-weight: 400;  @extend .font-primary;}
.lp-form-course-filter .lp-form-course-filter__item .lp-form-course-filter__title {font-size:13px;line-height:1; opacity:0.7; margin-bottom:7px; margin-top:20px;}
.widget_course_filter .lp-form-course-filter .course-filter-submit{@extend .bg-color-main; color:#fff;}
.widget_course_filter .lp-form-course-filter .course-filter-reset{ @extend .bg-grey; }
.widget_course_filter .lp-form-course-filter .course-filter-submit, .widget_course_filter .lp-form-course-filter .course-filter-reset {
    padding: 10px 24px;
    font-size: 15px;
    min-height: 50px;
    letter-spacing: 0.5px;
    border: 0;
    border-radius: 25px;
    @extend .bold-weight;
    @include single-transition(all, 300ms, linear);
    &:hover{ @extend .bg-dark;}
}
.learnpress.widget_course_info .lp_widget_course_info ul li, .elementor-widget-wp-widget-learnpress_widget_course_info .lp_widget_course_info ul li {
    display:inline-block !important; margin-right:10px;
    label{
        font-size: .8em;
        letter-spacing: .04em;
        text-transform: uppercase;
        font-size: 12px;
        line-height: 20px;
    }
}
/* mo-course-filter-sidebar */
.course-filter.filter-sidebar-column{
    text-align: left;
    margin-top: 0;
}
.mo-course-filter-sidebar{
    .widget-area-wrapper {
        background-color:#fff;
        margin-bottom: 60px !important;
        padding: 30px 30px 20px;
        @extend .radius25;
        @extend .border;
        h5.widget-title {
            margin-bottom: 15px;
            position: relative;
            cursor: pointer;
            @extend .font-sm-subtitle;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-size: 15px;
            line-height: 26px;
            font-weight: 400;
        }
        span.filter-cat-name {
            margin-left: 5px;
        }
        span.mo-filter-multicheck {
            margin-right: 5px;
        }
        span.filter-count{
            margin-left: 5px;
        }
        .input-search{
            height: 47px;
            width: 100%;
            font-size: 13px;
            background-color: transparent;
            box-shadow: none;
            vertical-align: middle;
            outline: 0;
            border: 1px solid rgba(10, 29, 53, 0.1);
            -webkit-transition: all 0.4s ease-in-out;
            -moz-transition: all 0.4s ease-in-out;
            -o-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
            margin-bottom: 30px;
            @extend .radius25;
        }
        .mo-filter-content {
            margin-bottom: 20px;
        }
        .button{
            border: 0;
            height: 52px;
            line-height: 50px;
            padding: 0;
            width: 100%;
            @extend .radius5;
            @extend .center_vertical;
        }
        .nori-filter-clear{border:1px solid rgba(10, 29, 53, 0.1) !important;}
    }
}
.filtered-courses{
    .mo-top-sorting-area{
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 0;
    }
    .mo-top-sorting-left{
        .course-found{
            font-size: 16px;
            line-height: 23px;
            padding-top: 20px;
        }
    }
    .mo-top-sorting-right{
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        .mo-course-sorting{
            position: relative;
            margin-left: 30px;
            select {
                height: 37px;
            }
        }
    }
    .layout-switcher {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        .mo-filter-type-text{
            font-size: 16px;
            font-weight: 600;
            margin-top: 4px;
            cursor: pointer;
        }
        ul.switcher-btn li .mo-filter-layout-trigger:hover{@extend .color-dark;}
        ul.switcher-btn li .mo-filter-layout-trigger.active{@extend .color-main;}
        ul.switcher-btn{
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            margin: -5px;
            padding-left: 10px;
            list-style: none;
            li{
                margin: 5px;
                width: 40px;
                height: 40px;
                border-radius: 25px;
                @extend .border;
                .mo-filter-layout-trigger{
                    display: block;
                    width: 100%;
                    height: 100%;
                    color: #d1d1d1;
                    font-size: 16px;
                    line-height: 1;
                    margin: 0;
                    padding: 0;
                    cursor: pointer;
                    i{
                        padding-top: 11px;
                        margin-left: -2px;
                    }
                }
            }
        }
    }
}
.mo-filter-type-text, .display-layout-grid, .display-layout-list {
    display: none;
}
.display-layout-list .lp_course {
    margin-bottom: 30px;
}
.mo-filter-type-text.active, .display-layout-grid.active, .display-layout-list.active {
    display: block;
}
.display-layout-grid .course-item.course-style-2 .thumbnail{
    height: 240px;
}
.filter-right-align{ 
    flex-direction: row-reverse;
    .filter-sidebar-column{float:right;}
}
/* review-stars-rated */
.mo-course-review-wrapper{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    .review-stars-rated {
        margin-top: 1px;
        margin-right: 5px;
        margin-bottom: 0;
        display: flex;
        position: relative;
        .review-star {
            position: relative;
            line-height: 1;
            margin: 0;
            .lp-review-svg-star[style="width:0%;"]{display: none;}
        }
        .review-star:last-child {
            margin-right: 0px;
        }
        .review-star g {
            fill:  var(--color-primary) !important;
        }
        .review-star .fas polygon {
            fill: #f8b81f !important;
        }
        .review-star .far {
           color: #000;
        }
        + span {
            font-size: 14px;
            font-weight: 500;
            margin-left: 10px;
        }
        .review-star .far {
            position: relative;
        }
        .review-star .fas {
            position: absolute;
            left: 0;
            top: 0;
            overflow: hidden;
        }
        .review-star {
            position: relative;
            line-height: 1;
            margin: 0 2px;
        }
    }
}
.course-hover-content .mo-course-review-wrapper .review-stars-rated .far {
   color: #fff !important;
}
.course-hover-content .mo-course-review-wrapper .review-stars-rated + span {
    color:#fff;
}
body .course-hover-content .mo-course-review-wrapper .review-stars-rated .review-star .far g {
    fill:#fff !important;
}
/* ------------------------
 single coures
* ------------------------*/
/* header single coures */
.mo-course-page-header{
    .mo-course-header-breadcrumb{
        position: relative;
        margin-top: 10px;
        letter-spacing: .04em;
        color: rgba(255,255,255,.7);
        text-transform: uppercase;
        font-size: 14px;
        a{color: rgba(255,255,255,.9); font-weight: 600;}
    }
    .mo-course-title .post-title{
        clear: both;
        font-size: 3.2em;
        line-height: 1.21em;
        @extend .bold-weight;
        text-decoration: none;
        text-transform: none;
        letter-spacing: 0px;
    }
    .mo-course-header-meta-items{
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-bottom: 0;
        padding: 0;
        > li{
            margin-right: 10px;
            font-size: 12px !important;
            line-height: 23px !important;
            text-transform: uppercase;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            position: relative;
            border-radius: 25px;
            i{ margin-right: 8px;}
            a{color:inherit;}
        }
        li.category{
            padding: 2px 13px 2px 14px;
            color: #fff;
            background: var(--color-primary);
        }
        li.instructor{
            border-radius: .5rem;
            background-color: #6b21a81a;
            padding-left: .75rem;
            padding-right: .75rem;
            padding-top: .5rem;
            padding-bottom: .5rem;
        }
        .tutor-ratings-stars {
            float: left;
        }
        .mo-course-review-wrapper{
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
    }
}

.mo-course-page-header.style-1{
    position: relative;
    padding-top: 160px;
    padding-bottom: 185px;
    background-image: none !important;
    &:before {
        content: "";
        background: #ccc;
        width: 100%;
        height: 100%;
        top: 0;
        display: block;
        position: absolute;
        pointer-events: none;
        background-image: linear-gradient(180deg, var(--color-primary), rgba(255, 255, 255, 0));
        opacity: 0.2;
    }
    &:after {
        content: "";
        height: 100px;
        width: 100%;
        background: #fff;
        position: absolute;
        border-top-right-radius: 100px;
        border-top-left-radius: 100px;
        bottom: 0;
    }
    .mo-course-header-breadcrumb-content{
        &:after, &:before{
            content: "";
            background-image: url('../images/clould.png');
            width: 100px;
            height: 100px;
            z-index: 2;
            position: absolute;
            background-repeat: no-repeat;
        }
        &:after{
            top: 35%;
            left: 20%;
        }
        &:before{
            top: 60%;
            left: 10%;
            opacity: 50%;
        }
    }
    .mo-course-header-breadcrumb{
        text-align: center;
        color: $color-content;
        margin-bottom: 7px;
        a, span{ color: $color-content;}
        &:after{
            content: "";
            background-image: url('../images/clould.png');
            width: 100px;
            height: 100px;
            z-index: 2;
            position: absolute;
            background-repeat: no-repeat;
            right: 0;
            opacity: 70%;
        }
    }
    .mo-course-title .post-title{
        text-align: center;
        max-width: 670px;
        margin: 0 auto 15px;
    }
    .mo-course-header-meta-items{
        justify-content: center;
    }
    .mo-course-header-meta-items{
       li.instructor{
        border: 1px solid #d6d6d6;
        border-radius: 5px;
        line-height: 1.2;
        padding: 2px 13px 2px 14px;
        width: fit-content;
        font-size: 12px !important;
        line-height: 23px !important;
        text-transform: uppercase;
        border-radius: 25px;
       }
       li.category{
        padding: 2px 13px 2px 14px;
        width: fit-content;
        color: #fff;
        font-size: 12px !important;
        line-height: 23px !important;
        text-transform: uppercase;
        background: var(--color-primary);
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
       }
    }
    .mo-course-review-wrapper span{
        font-size: 12px !important;
        line-height: 23px !important;
        text-transform: uppercase;
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
    }
}
.mo-course-page-header.style-2{
    padding-top: 150px;
    padding-bottom: 90px;
    margin-bottom: 80px;
    color: #fff;
    @extend .bg-dark;
    .mo-course-header-breadcrumb{color:rgba(255,255,255,0.7); margin-bottom:10px;}
    .mo-course-header-breadcrumb a{color:rgba(255,255,255,0.9);}
    .mo-course-title .post-title{color:#fff;width:60%;}
}
.mo-course-single-style-2  .mo-course-details-sidebar-inner {margin-top: -250px;}

.mo-course-page-header.style-3{
    padding-top: 170px;
    background-image: unset !important;
    .mo-course-breadcrumb-inner{ text-align: center;}
    .mo-course-title .post-title{
        margin-bottom: 90px;
        margin-top: 10px;
        @extend .font-title;
    }
    .mo-course-header-breadcrumb { 
        color: rgba(0, 0, 0, 0.7);
        a{ color:inherit; }
    }
}

.mo-course-single-preview{
    margin-bottom: 50px;
    position: relative;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    overflow: hidden;
    .mo-course-details-card-preview{
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: #ccc;
        height: 420px;
    }
    .mo-video-fancybox{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}

.mo-page-title-area.style-2{
    position: relative;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: bottom center !important;
    overflow: hidden;
    &:before{
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0.4;
        content: '';
        z-index: 1;
        pointer-events: none;
        background:var(--color-dark);
    }
    .mo-course-breadcrumb-inner{position:relative; z-index:2;}
}
.mo-page-title-area.style-4, .mo-page-title-area.style-5{
    position: relative;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: bottom center !important;
    overflow: hidden;
    &:before{
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: .4;
        content: '';
        z-index: 1;
        pointer-events: none;
        background: rgba(0, 0, 0, 0.45);
    }
    .container{
        text-align: center;
        max-width: 800px;
        color: #fff;
        margin: auto;
        z-index: 2;
        position: relative;
        .post-title{
            clear: both;
            margin: 10px auto 20px;
            font-size: 3.2em;
            font-style: normal;
            line-height: 1.21em;
            text-decoration: none;
            text-transform: none;
            letter-spacing: 0;
            font-weight: 600;
            color: #fff;
        }
        .mo-breadcrumb-wrapper{
            letter-spacing: .04em;
            text-transform: uppercase;
            font-size: 12px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 700;
            a{ color: rgba(255, 255, 255, 0.9); }
        }
    }
}

.mo-page-title-area.style-4{
    padding-top: 100px;
    padding-bottom: 150px;
    margin: 90px 15px 0 15px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    margin-bottom: 50px;
    &:after {
        content: "";
        width: calc(100% - 260px);
        height: 50px;
        background: #fff;
        position: absolute;
        bottom: 0;
        left: 130px;
        border-top-right-radius: 25px;
        border-top-left-radius: 25px;
        z-index: 1;
    }
    .anchor-side{
       &:before, &:after{
            content: "";
            -webkit-mask-size: contain;
            -webkit-mask-position: bottom right;
            -webkit-mask-repeat: no-repeat;
            width: 33px;
            height: 33px;
            position: absolute;
            top: revert-layer;
            background: #fff;
            z-index: 1;
            -webkit-mask-image: url(../images/btn-box-left.svg);
        }
        &:after { left: 98px;bottom: 0;}
        &:before { right: 97px; bottom: -1px; transform: rotate(90deg); }
    }
}
.mo-page-title-area.style-5{
    padding-top: 175px;
    padding-bottom: 225px;
    background-attachment: fixed;
    &:after {
        content: "";
        width: 100%;
        height: 100px;
        background: #fff;
        position: absolute;
        bottom: 0;
        left: 0;
        border-top-right-radius: 100px;
        border-top-left-radius: 100px;
        z-index: 2;
    }
}

/* course details sidebar */
.mo-course-details-sidebar-inner {
    background-color: #fff;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    margin-bottom: 60px !important;
    padding: 30px 30px 10px;
    @extend .border;
}
.mo-course-sidebar .mo-course-details-card-preview,
.mo-course-details-sidebar .mo-course-details-card-preview {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ccc;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    height: 235px;
    position: relative;
    margin-bottom: 30px;
    .mo-video-fancybox.style-3 {
        display: block;
        height: 100%;
        width: 100%;
        padding: 5px;
        .video-button{
           left: calc(50% + -22px);
           top: calc(50% + -22px);
        }
    }
}
.mo-course-details-sidebar-content{
    .widget-title {
        @extend .font-l-subtitle;
    }
}
ul.mo-course-meta-informations {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    li{
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        margin: 0;
        border-width: 0;
        border-bottom-width: 1px;
        border-style: solid;
        @extend .borde-color;
        &:last-child{ border: 0;}
        .mo-course-feature-item-label {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            font-size: 15px;
            @extend .font-primary;
            @extend .bold-weight;
            @extend .color-dark;
            i{
                font-size: 18px;
                padding-right: 15px;
                max-width: 35px;
                line-height: 1;
                color: $color-content;
            }
        }
    .mo-course-feature-item-value{
            .course-item-price{
                @extend .font-subtitle;
                @extend .color-main;
                span.origin-price {
                    opacity: 0.6;
                    padding-right: 10px;
                    font-size: 18px;
                    text-decoration: line-through;
                }
            }
        }
    }
}
.mo-course-details-sidebar-buttons{
    margin-top: 30px;
    button.lp-button{
        width: 100%;
        border: none;
        color: #fff;
        overflow: hidden;
        font-size: 15px;
        text-transform: capitalize;
        min-height: 50px;
        letter-spacing: 0.5px;
        margin: 0 0 15px;
        padding: 0;
        text-align: center;
        display: block;
        @extend .radius25;
        @extend .bold-weight;
        @extend .bg-color-main;
        @include single-transition(all, 0.4s , ease-in-out);
        &:hover{ @extend .bg-dark; }
    }
    form.lp-form.form-button.form-button-finish-course{width:100%;display:block;}
    .button-purchase-course{width: 100%;}
    button.lp-btn-wishlist.on{@extend .bg-dark;}
    .enroll-course{width: 100%;}
    form.enroll-course, form.purchase-course{ width:100%;}
    .lp-button.lp-btn-wishlist{
        background: transparent !important;
        color:var(--color-dark);
        transition: 300ms linear;
        &::before{
            width: 36px;
            height: 36px;
            line-height: 36px;
            background: #FFF;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
            font-size: 16px;
            display:inline-block;
            text-align:center;
            border-radius:100%;
            margin-right: 10px;
        }
        &:hover{
            background: transparent;
            color: var(--color-primary);
        }
        &.on{
            &::before{color:rgb(248, 3, 93);} 
        }
    }
}
.nori-single-social-share{
    padding-top: 15px;
    border-width: 0;
    border-top-width: 1px;
    border-style: solid;
    @extend .borde-color;
    .share-title{
        font-size: 14px;
        font-weight: 700;
        margin-right: 15px;
        margin-top: 8px;
        float: left;
    }
    .share-links{
       float: none;
       padding: 0;
       display: block;
       width: 100%;
       height: 60px;
       a {
        position: relative;
        height: 40px;
        width: 40px;
        line-height: 33px;
        font-size: 17px;
        color:$color-black; 
        background-color: transparent;
        border: 1px solid #eaeaea;
        @extend .radius50;
        @extend .center_vertical;
        &.facebook {color:#42599e;}
        &.twitter  {color:#55acee;}
        &.linkedin {color:#0798cf;}
        &.pinterest{color:#fc3030;}
        &.whatsapp {color:#34af23;}
        i{margin: 0;}
        &:after {
            content: "";
            position: absolute;
            width: 40px;
            height: 40px;
            display: block;
            left: -1px;
            top: 0;
            z-index: -1;
            border: 1px solid transparent;
            border-radius: 50%;
            box-sizing: border-box;
           }
        }
        a:hover { 
            z-index: 4;
            &:after { animation: mo-menu-circle-border-current 1s forwards; }
        }
    }
}
.mo-course-header-meta-items{
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border: 0;
    .meta-item{
        flex-direction: row;
        min-width: 300px;
    }
    .course-info-title{
        display: block;
        margin-top: 15px;
        @extend .bold-weight;
        @extend .color-dark;
    }
	.course-info-content{
        display: block;
    }
    .course-info-image{
        width: 90px;
        height: 90px;
        float: left;
        margin-right: 20px;
        img{
            max-width: 90px;
            border-radius: 50%;
            overflow: hidden;
        }
    }
    .course-info-content{
        letter-spacing: .04em;
        line-height: 21px;
        padding-top: 5px;
        color: inherit;
        text-transform: uppercase;
        font-size: 13px;
        display: inline-block;
    }
    .instructor-name{float: left;}
    .meta-item.category{
        .course-info-content a{
            color: $color-content;
            margin-right: 10px;
            &:after{
                content: "";
                width: 1px;
                height: 14px;
                display: inline-block;
                background: #ccc;
                position: relative;
                left: 5px;
                top: 2px;
            }
        }
        a:last-child:after{ width: 0;}
    }
    .mo-course-review-wrapper{
        .lp-review-svg-star svg{ width:15px;}  
        .review-stars-rated{float: left;}  
        span{letter-spacing: .04em;text-transform: uppercase; font-size: 11px;}
    }
}
.course-featured-review{
    margin-bottom: 30px;
    padding: 30px 30px 10px;
    background:  var(--color-grey); 
    @extend .border;
    @extend .radius25;
    i.lp-icon-star{@extend .star-color;}
}
.featured-review__title{
    line-height: 28px;
    font-size: 17px;
    @extend .bold-weight;
    @extend .color-dark;
}
.featured-review__content{
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
}
/* course tab panel */
.mo-course-details-page-content{
    padding-right: 40px;
    padding-bottom:50px;
}
.mo-course-details-page .course-nav-tabs {
    background: transparent;
	border: 0 none;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    column-gap: 10px;
}
.mo-course-details-page .course-nav-tabs .course-nav {
	margin: 0px 5px;
    flex: inherit !important;
}
.mo-course-details-page ul.learn-press-nav-tabs .course-nav.active::before,
.mo-course-details-page ul.learn-press-nav-tabs .course-nav:first-child.active::before,
.mo-course-details-page ul.learn-press-nav-tabs .course-nav:first-child.active::after,
.mo-course-details-page ul.learn-press-nav-tabs .course-nav:last-child.active::after {
	display: none;
}
.mo-course-details-page .course-nav-tabs .course-nav label {
    font-size: 16px;
    line-height: 28px;
    border: 0 none;
    position: relative;
    display: inline-block;
    padding: 5px 30px 7px 30px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    border: 1px solid #e4e4e4;
    color: $color-content;
    @include single-transition(all, 0.3s, ease-in-out);
    @include border-radius(50px);
    @extend .bold-weight;
    @extend .font-primary;
    &:hover{
        color: var(--color-primary);
        border-color: var(--color-primary);
    }
}
.learn-press-nav-tabs li.active::after, .learn-press-nav-tabs li:hover::after{display: none;}
.mo-course-details-page .wrapper-course-nav-tabs{border: 0;}
#learn-press-course-tabs .learn-press-nav-tabs label::after { display: none; }
#learn-press-course-tabs input[name=learn-press-course-tab-radio]:nth-child(1):checked ~ .learn-press-nav-tabs .course-nav:nth-child(1) label::after,
#learn-press-course-tabs input[name=learn-press-course-tab-radio]:nth-child(2):checked ~ .learn-press-nav-tabs .course-nav:nth-child(2) label::after,
#learn-press-course-tabs input[name=learn-press-course-tab-radio]:nth-child(3):checked ~ .learn-press-nav-tabs .course-nav:nth-child(3) label::after,
#learn-press-course-tabs input[name=learn-press-course-tab-radio]:nth-child(4):checked ~ .learn-press-nav-tabs .course-nav:nth-child(4) label::after,
#learn-press-course-tabs input[name=learn-press-course-tab-radio]:nth-child(5):checked ~ .learn-press-nav-tabs .course-nav:nth-child(5) label::after {
    color:#fff !important;
    background:var(--color-primary) !important;
}

.mo-course-details-page .course-nav-tabs .course-nav.active label {
    background:var(--color-primary) !important;
    border-color: var(--color-primary);
    color:#fff !important;
}
.mo-course-details-page .nori-comments-area:empty {
    display: none;
}
.course-extra-box {
    border-radius: 20px !important;
    overflow: hidden;
    .course-extra-box__title{ background: transparent !important; padding: 25px; }
    &.active .course-extra-box__title{ color: var(--color-primary);}
    .course-extra-box__content li{ padding: 5px 25px;}
    .course-extra-box__content li::before {font-size: 12px;}
}
.course-faqs-box{ margin-top:30px; border-radius:20px!important; padding:15px;}
.course-tab-panel-faqs .course-faqs-box__content-inner{padding: 0 20px 20px;}
.lp-archive-courses ul.list-courses{
    list-style: none;
    padding-left: 0;
    li{
        margin-bottom: 12px;
        margin-left: 15px;
        &:before{
            content: "";
            width: 10px;
            height: 10px;
            display: inline-block;
            overflow: hidden;
            text-align: center;
            background-image: url(../images/mo-star-dark.svg);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: top center;
            position: relative;
            top: 0px;
            left: -13px;
            opacity: 0.5 !important;
            animation: push_animat2 05s infinite linear;
            animation-delay: 2s;
        }
    }
}
.title-details-courses {
    margin-top: 30px;
}
.course-tab-panel-overview.course-each-tab-panel {
    margin-bottom: 50px;
}
.course-tab-panel-instructor {
    margin-bottom: 40px;
    margin-top: 25px;
    padding: 25px 30px 30px;
    border-radius: 20px;
    @extend .border;
    @include border-radius(20px);
}
input[name=course-faqs-box-ratio]:checked+.course-faqs-box .course-faqs-box__title{background:transparent;}
.lp-course-curriculum .course-section{border-radius:15px;}
.lp-course-curriculum__title{
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    margin-top: 15px;
}
.course-curriculum-info{
    letter-spacing: .04em;
    color: inherit;
    text-transform: uppercase;
    font-size: 13px;
    margin-right: 15px
}
.lp-course-curriculum .course-section__title{ font-size:16px !important;}
.course-curriculum, .lp-course-curriculum{
    ul.course-sections{
        margin-bottom: 30px;
        border-radius: 25px;
        .section-header , .course-section-header{
            padding:13px 30px 13px 25px;
            border: 0;
            background: var(--color-grey);
            text-transform: capitalize;
            color: var(--color-dark);
            .section-count-items {
                line-height: 1.6;
                font-size: 14px;
                border: 1px solid;
                border-radius: 25px;
                color: var(--color-primary);
            }
        }
    }
    .course-item{ 
        background: transparent;
        padding: 10px 30px !important;
       .section-content {padding: 10px;}
       .course-item-ico::before {
            color: var(--color-primary);
            opacity: 0.5;
        }
       .item-name{ 
          @extend.font-xsm-subtitle;
          @extend .font-primary;
        }
        .section-item-link {
            padding: 15px 0 0;
            border-top: 1px solid #eee;
            &:before{color:#ccc}
        }
        .course-item-info{
            display:table;
            .course-item-info-pre{
                display: table-cell !important;
                padding: 0;
                text-align: right;
                vertical-align: middle;
                white-space: nowrap;
                .item-meta.duration{
                    position: relative;
                    letter-spacing: .04em;
                    color: inherit;
                    text-transform: uppercase;
                    font-size: 13px;
                    border-radius: 25px;
                    overflow: hidden;
                    display: inline-block;
                    padding: 0px 15px;
                    &:before{
                        content:"";
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100px;
                        background:  var(--color-primary);
                        opacity: 0.05;
                    }
               }
            }
        }
    }
}
.course-tab-panel-faqs .course-faqs-box{@include single-transition(all, 0.3s, ease-in-out);}
.course-tab-panel-faqs .course-faqs-box:hover .course-faqs-box__title{color:var(--color-primary);}
/* popup course */
#popup-header{
    min-height: 70px;
}
#popup-course .back-course {
    padding-left: 17px;
    padding-right: 17px;
    margin-right: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 58px;
    i.lp-icon-times{font-size: 20px;}
}
#popup-course #sidebar-toggle{
    padding-left: 0;
    padding-right: 5px;
    margin-left: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 40px;
}
#popup-header .course-title a:hover{color:#fff; opacity: 0.7;}
#popup-sidebar{
    .course-curriculum .course-item.item-locked .course-item-status::before {
        color:#ccc;
        font-size: 12px;
    }
    .course-curriculum .course-item .item-name{font-size:14px;}
    .course-curriculum ul.curriculum-sections .section .section-header h3.section-title{font-size:18px;}
    .course-curriculum ul.curriculum-sections .section {margin-top: 30px; margin-left:10px; margin-right:10px;}
    .section-header{ background:var(--color-grey) !important; border-top-left-radius:25px;  border-top-right-radius:25px;}
}
/* material table */
.lp-list-material{
    overflow: auto;
    border-radius: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(10, 29, 53, 0.1);
    margin-bottom: 15px;
 }
 .lp-material-skeleton .course-material-table {
    border: 0;
    margin-bottom: 0;
    th, td, tr, thead, tbody{ border:0!important;padding:15px 20px;}
}
.learnpress table thead th{
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--color-dark);
    background: var(--color-grey);
}
/* author wrapper */
.mo-course-author-wrapper{
    display: flex;
    padding-top:15px;
    .mo-course-author-thumb{
        min-width: 100px;
        width: 100px;
        img{
            border-radius: 100%;
            width: 75px;
            height: 75px;
            object-fit: cover;
            overflow: hidden;
        }
    }
    .mo-course-author-details{
        .nori-author-bio-name{font-size:20px; margin-bottom:0; text-transform:capitalize;}
        .nori-author-bio-subtitle{font-size:15px; line-height:28px; text-transform:capitalize; font-weight:400; margin-bottom:4px; opacity:0.8;}
        .nori-author-bio-details{ font-size: 15px;line-height: 24px;}
    }
    .nori-author-meta{
        list-style: none;
        padding: 0;
        li{
            letter-spacing: .04em;
            color: inherit;
            text-transform: uppercase;
            font-size: 13px;
            display: inline-block;
            margin-right: 15px;
            a{ color: inherit;}
            i{margin-right: 5px;}
        }
    }
    
}
.course-tab-panel-reviews{
    .course-rate__details {
        margin-left: 0;
        max-width: 400px;
    }
    .course-rate__summary{
        flex: 0 0 25%;
        padding: 20px 10px;
        min-height: 160px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        @extend .border;
        @extend .radius25;
        .course-rate__summary-value {
            font-weight: 700;
            font-size: 28px;
            line-height: 1;
            margin-bottom: 10px
        }
        .course-rate__summary-text{
            letter-spacing: .04em;
            color: inherit;
            text-transform: uppercase;
            font-size: 13px;
        }
    }
}
.course-tab-panel-curriculum.course-each-tab-panel, .course-tab-panel-reviews.course-each-tab-panel {
    padding-top: 50px;
}
/* instructors */
.lp-list-instructors .ul-list-instructors li.item-instructor {
    @extend .border;
    @extend .radius25;
    .instructor-avatar{ @include border-radius(25px); }
    .instructor-display-name { 
        @extend .font-primary;
        @extend .bold-weight;
        @extend .color-dark;
        @extend .font-l-subtitle;
        text-transform: capitalize;
        margin-bottom: 10px !important;
        margin-top: 20px;
    }
    .instructor-info {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 5px;
        padding-bottom: 15px;
        border: 0;
        border-bottom-width: 1px;
        border-style: solid;
        border-color: rgba(10, 29, 53, 0.1);
        flex-wrap: unset !important;
    }
    .instructor-info>div {
       column-gap: 0 !important;
       .lp-ico svg { 
            width:15px;
            margin-right: 5px;
            opacity: 0.5;
        }
        span {
            font-size: 12px;
            text-transform: uppercase;
            line-height: 1.2em;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 0;
            border: 0;
            margin-left: 5px;
        }
        .instructor-total-students {
            margin-left: 0;
        }
    }
    .instructor-btn-view {
        text-transform: capitalize;
        font-size: 16px;
        line-height: 23px;
        font-weight: 700;
        border: 0 !important;
        padding: 0 !important;
        &:hover{ background: transparent !important; color:rgba(0,0,0,0.7) !important;}
    }
}

/* related-course  */
.related-posts.related-course{
    background: transparent;
    padding-bottom: 100px;
    .course-item .inner .content{display: none;}
    .course-item .course-item-inner .thumbnail{max-height: 200px;}
    .course-item .post-title{ @extend .font-l-subtitle;}
}
/* user profile */
.lp-user-profile {
    .wrapper-profile-header{
        background: transparent !important;
    }
    .lp-profile-content-area{
        overflow: hidden;
        border-radius: 25px;
        padding: 30px 30px 30px;
        border: 1px solid rgba(10, 29, 53, 0.1);
        &:after {
            content: "";
            height: 100%;
            left: -5%;
            position: absolute;
            top: 0;
            width: 120%;
            opacity: 1;
            z-index: 1;
            background: var(--color-grey);
        }
        .lp-profile-left {
            z-index: 2;
            min-width: 120px;
            max-width: 120px;
            border-radius: 5px;
            overflow: hidden;
            .user-avatar img {
                border-radius: 50%;
                padding: 10px;
                -webkit-box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
                -moz-box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
                box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
            }
           .user-avatar .lp-btn-to-edit-avatar::before{font-size:16px;}
        }
        .lp-profile-right {
            padding-right: 0;
            padding-left: 30px;
            z-index: 2;
            gap: 5px;
            .lp-profile-username {
                @extend .font-subtitle;
                @extend .color-dark;
                @extend .font-primary;
                &:before, &:after { content: none; }
            }
        }  
    }  
    &.guest .lp-content-area {
        display: block;
        .lp-content-area>div{position:relative;width:auto;}
    }
    .learn-press-profile-course__statistic {
        margin-bottom: 60px;
    }
    .dashboard-statistic__row .statistic-box{
        position: relative;
        overflow: hidden;
        @extend .border;
        background: transparent;
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        @include single-transition(all, .4s, ease);
        &:after{
            content: "";
            height: 100%;
            left: -5%;
            position: absolute;
            top: 0;
            width: 120%;
            background: var(--color-primary);
            z-index: 1;
            opacity: 0;
            @include single-transition(all, .4s, ease);
        }
        &:hover{
            background: transparent;
            border-color: transparent;
            box-shadow: none;
            &:after{opacity:  0.05;}
        }
        .statistic-box__text, .statistic-box__number{z-index: 2;}
        .statistic-box__text{
            color: $color-content;
            @extend .font-primary;
            @extend .font-xsm-subtitle;
        }
    }
    .statistic-box .statistic-box__number {
        color: var(--color-primary) !important;
    }
    .lp-profile-content .lp-button {
        @extend .bg-dark;
        color: #fff;
        text-align: center;
        font-size: 15px;
        font-weight: 700;
        text-transform: capitalize;
        min-height: 50px;
        letter-spacing: 0.5px;
        -webkit-transition: all 300ms linear;
        padding: 0 30px;
        border: 0;
        &:hover{@extend .bg-color-main;}
    }
}

.learn-press-course-tab-filters, .learn-press-subtab-content{
    .learn-press-filters>li {
        border: 0 none;
        a, span{
            color:var(--color-dark);
            height: 36px;
            padding: 0;
            width: auto;
            transition: 0.4s;
            font-size: 16px;
            line-height: 23px;
            font-weight: 700;
        }
        &:after{ content:none;}
    }
     .learn-press-filters a:hover, .learn-press-filters a.active, .learn-press-filters > li span{ color: var(--color-primary);}
}

.learn-press-profile-course__progress .lp_profile_course_progress__item{
     td, th{text-align:left; padding:10px 15px;}
     .course-img img{   
        width: 50px;
        height: 50px;
        margin: auto;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
    }
}
.learn-press-profile-course__progress .lp_profile_course_progress__item td:nth-child(2) a, .learn-press-profile-course__progress .lp_profile_course_progress__item th:nth-child(2) a{
    color:var(--color-dark); 
    font-family: $font-primary;
    @extend .bold-weight;
}
.lp-archive-courses .learn-press-courses .course-wrap-meta {
    flex-wrap: wrap;
    row-gap: 8px;
    font-size: 14px;
    padding-top: 5px;
    .meta-item{ gap:5px; line-height:1; margin-top:5px;}
    .meta-item::before {color: #ccc;}
}
.learn-press-courses .course{float:left;}
.learn-press-courses[data-layout=grid]{
    .course-item {
        border-radius: 25px;
        overflow: hidden;
        @extend .border;
        .course-wrap-meta { border-top: 1px solid rgba(10, 29, 53, 0.1); }
        &:hover {
            -webkit-transform: translateY(-5px);
            -ms-transform: translateY(-5px);
            transform: translateY(-5px);
            border-color: transparent;
            background-color: transparent !important;
            @extend .box-shadow2;
        }
    }
    .course-content {
        padding: 15px 20px 5px 20px;
        .course-permalink:hover{color:inherit;}
        .course-title {
            display: inline !important;
            background-image: linear-gradient(transparent 95%, currentcolor 5%);
            background-repeat: no-repeat;
            background-size: 0% 100%;
            transition: all 1s;
            &:hover{ background-size: 100% 100%;}
        }
        .wap-course-title, .course-instructor-category{margin-bottom: 5px;}
        .course-instructor-category  {
            label{ display: none; }
            .course-categories {
                position: absolute;
                top: -40px;
                right: 0;
                width: 110px;
                height: 30px;
                overflow: hidden;
                display: block;
            }
            .course-categories a {
                clip-path: none;
                font-weight: 600;
                font-size: 12px !important;
                line-height: 23px !important;
                text-transform: uppercase;
                z-index: 4;
                overflow: hidden;
                line-height: 1.5 !important;
                padding: 2px 13px 2px 14px;
                color: #fff;
                background:var(--color-dark);
                padding: 5px 15px;
                -webkit-transition: all 0.4s ease-in-out;
                -moz-transition: all 0.4s ease-in-out;
                -o-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
                border-radius: 25px;
                -webkit-border-radius: 25px;
                -moz-border-radius: 25px;
            }
        }
        .course-readmore a {
            border-radius: 25px;
            margin-bottom: 15px;
            font-size: 15px;
            line-height: 1;
            padding: 14px 15px;
            background: var(--color-grey);
            border: 0;
            font-weight: 600;
            &:hover{color: var(--color-primary); }
        }
        span.course-item-price {
            position: absolute;
            right: 25px;
            bottom: 120px;
            background: transparent;
            padding: 0;
            border-radius: 25px;
        }
    }
}

.lp-user-profile{
    #profile-sidebar{ margin-bottom:60px; border:0; padding-right:25px;}
    #profile-nav{
        .lp-profile-nav-tabs ul{box-shadow:none;}
        .lp-profile-nav-tabs >li, .lp-profile-nav-tabs li>ul li{
            border-radius: 10px;
            border: 1px solid rgba(10, 29, 53, 0.1);
            @include single-transition(all, 0.3s, ease-in-out);
            a{
                padding: 12px 20px;
                border:0;
                @include single-transition(all, 0.3s, ease-in-out);
                @extend .font-primary; 
                @extend .bold-weight; 
                >i { 
                    color: var(--color-primary);
                    font-size: 16px;
                    margin-right: 5px;
                }
            }
            &:hover , &.active{
                background: var(--color-primary);
                > a{ color: #fff;}
                > a > i{ color:#fff;}
            } 
        }
        .lp-profile-nav-tabs li:not(last-child){ margin-bottom: 10px;}
        .lp-profile-nav-tabs li>ul{
            min-width: 180px;
            box-shadow: none;
            background: transparent;
            padding-left: 10px;
            li{
                background: #fff;
                a{ color:var(--color-font);}
                i{ color: var(--color-primary);}
            }
        }
    }
    .learn-press-tabs .learn-press-tabs__checker:nth-child(2):checked ~ .learn-press-tabs__nav .learn-press-tabs__tab:nth-child(2) label a, .learn-press-tabs .learn-press-tabs__checker:nth-child(3):checked ~ .learn-press-tabs__nav .learn-press-tabs__tab:nth-child(3) label a{color: var(--color-primary);}  
}
img.lp-avatar-image{
    border-radius: 50%;
    padding: 10px;
    -webkit-box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    -moz-box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
}
.lp-content-area.learn-press-message, .learn-press-message.success{margin-bottom: 100px;}
.learn-press-message {background: var(--color-grey); border-radius: 5px;}

.lp-list-table thead tr th{  @extend .font-primary; font-size: 14px;@extend .bg-grey;}
.lp-list-table th, .lp-list-table td { height: 50px !important; padding: 10px 20px;}
.lp-profile-content table.lp-list-table, .lp-profile-content table.lp-list-table tr th, .lp-profile-content table.lp-list-table tr td , div.order-recover input[type=text]{ @extend .borde-color;}
.lp-profile-content table.lp-list-table {
    border-radius: 0;
    margin-bottom: 50px;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.lp-user-profile .lp-profile-content .lp-button {    
    min-height:45px;
    border: 0;
    margin-bottom: 50px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
}
.lp-btn-remove-avatar, .lp-btn-remove-cover-image{background:red !important;}
.lp-user-cover-image .lp-cover-image-preview{ border-radius:20px;}
.lp-user-cover-image_background {
    margin-bottom: -20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    min-height:200px;
}
.recover-order__title , .lp-profile-content #profile-content-order-details h3 {
    @extend .font-xsm-subtitle;
    @extend .font-primary;
    @extend .color-dark;
}
.lp-user-profile .profile-orders .column-order-actions a {
    line-height: 17px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    @extend .color-main;
    &:hover{color: inherit;}
}
.lp-profile-content strong{ @extend .color-dark;}

.lp-user-profile #profile-content-settings .learn-press-form .form-fields .form-field .form-field-input input{
    padding: 0 20px;
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    border: 0;
    background-color: var(--color-grey);
}
.lp-user-profile #profile-content-settings .learn-press-form .form-fields .form-field .form-field-input input[type="checkbox"]{
    display: inline;
    height: auto;
}
.lp-user-profile #profile-content-settings .learn-press-form button[type="submit"]{
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    min-height: 50px;
    letter-spacing: 0.5px;
    -webkit-transition: all 300ms linear;
    padding: 0 30px;
    border: 0;
    background: #000;
    border-radius: 25px;
}
.course-description{margin-bottom:30px;}
.learn-press-form .form-fields .form-field .description{display: inline-block;}
.learn-press-form .form-fields .form-field textarea{
    border: 0;
    border-radius: 25px;
    padding: 30px;
    color: var(--color-font);
    background-color: var(--color-grey);
}
.lp-user-profile #profile-content-settings .learn-press-form .form-fields .form-field label{
    font-weight: 400;
    font-size: 14px;
    line-height: 29px;
    margin-bottom: 0;
    font-style: normal;
    color: $color-content;
}
.lp-profile-content .learn-press-tabs {
    background: transparent;
}
.learn-press-tabs .learn-press-tabs__tab {
    border-right: 0;
    background: transparent;
    justify-content: left;
}
.learn-press-tabs .learn-press-tabs__nav,
.learn-press-profile-course__tab__inner {
    background: transparent;
    border-bottom: 1px solid  rgba(10, 29, 53, 0.1);;
    margin-top: 0 !important;
}
.lp-user-profile #profile-content-settings .learn-press-tabs__nav{
    border: 0;
    li a{ font-size:16px; line-height:23px; font-weight:700;}
}
.learn-press-tabs .learn-press-tabs__checker:nth-child(1):checked ~ .learn-press-tabs__nav .learn-press-tabs__tab:nth-child(1) label a{
    color: var(--color-primary);
}
.learn-press-tabs .learn-press-tabs__tab>label,
.learnpress .entry-content ul.learn-press-tabs .learn-press-tabs__tab>li,
.learn-press-profile-course__tab__inner>li {
    margin: 0 !important;
}
.learn-press-tabs .learn-press-tabs__tab>label {
    padding: 0;
}
.learn-press-tabs .learn-press-tabs__tab>label a,
.learnpress .entry-content ul.learn-press-tabs .learn-press-tabs__tab a,
.learn-press-profile-course__tab__inner a {
    background: transparent;
    border: 0 none;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    padding: 0;
    padding-bottom: 15px;
    position: relative;
    transition: 0.4s;
    @extend .color-dark;
}
.learn-press-tabs .learn-press-tabs__tab>label a {
    display: inline-block;
    font-weight: 600;
    @extend .font-xsm-subtitle;
    @extend .font-primary;
    @extend .color-dark;
}
.learn-press-tabs .learn-press-tabs__tab a::after,
.learn-press-profile-course__tab__inner a::after {
    position: absolute;
    content: "";
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--color-primary);
    transition: 0.4s;
    width: 0;
}
.learn-press-tabs .learn-press-tabs__tab a.active,
.learn-press-profile-course__tab__inner a.active {
    border: 0;
    color: var(--color-primary);
}
.learn-press-tabs .learn-press-tabs__tab:first-child.active label::before,
.learn-press-tabs .learn-press-tabs__tab::before,
.learn-press-tabs .learn-press-tabs__tab::after,
.learn-press-tabs .learn-press-tabs__tab a.active::before,
.learn-press-profile-course__tab__inner a.active::before {
    display: none;
}
.learn-press-tabs .learn-press-tabs__checker:nth-child(1):checked ~ .learn-press-tabs__nav .learn-press-tabs__tab:nth-child(1) label a::after,
.learn-press-tabs .learn-press-tabs__checker:nth-child(2):checked ~ .learn-press-tabs__nav .learn-press-tabs__tab:nth-child(2) label a::after,
.learn-press-tabs .learn-press-tabs__checker:nth-child(3):checked ~ .learn-press-tabs__nav .learn-press-tabs__tab:nth-child(3) label a::after,
.learn-press-tabs .learn-press-tabs__tab a:hover::after, 
.learn-press-tabs .learn-press-tabs__tab a.active::after,
.learn-press-profile-course__tab__inner a:hover::after, 
.learn-press-profile-course__tab__inner a.active::after {
    width: 100%;
}
#learn-press-profile-basic-information button[type=submit], button.learnpress_avatar__button, .profile-basic-information button, form[name=profile-change-password] button{
    margin-top: 15px;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    min-height: 50px;
    letter-spacing: 0.5px;
    padding-left: 30px;
    padding-right: 30px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
    background: var(--color-primary);
    &:hover{ opacity: 1;background: var(--color-dark); }
}
.learnpress_avatar__cropper img { border-radius: 25px; -webkit-border-radius: 25px; -moz-border-radius: 25px;}
.user-login, .user-register{
    margin-bottom: 100px;
    margin-top: 50px;
    padding: 50px;
    border-radius: 25px;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    @extend .box-shadow;
    #confirm_password{margin-bottom: 25px;}
    input[type="submit"]{font-weight: 700;}
    p,a{
        font-size: 14px;
        letter-spacing: 0;
        color: var(--color-dark);
        line-height: 1.4;
    }
}
/* single instructor */
.lp-single-instructor {
    .lp-single-instructor__info{
        overflow: hidden;
        position: relative;
        border: 0;
        padding-bottom: 15px;
        border-radius: 25px;
        padding: 30px 30px 15px;
        border:1px solid  rgba(10, 29, 53, 0.1);
        &:after {
            content: "";
            height: 100%;
            left: -5%;
            position: absolute;
            top: 0;
            width: 120%;
            opacity: 0.05;
            z-index: 1;
            @extend .bg-color-main;
        }
        .instructor-avatar {
            z-index: 2;
            border-radius: 50%;
            -webkit-border-radius:50%;
            -moz-border-radius:50%;
            overflow: hidden;
            width: 200px;
            height: 200px;
            float: left;
            margin-right: 15px;
            margin-bottom: 15px;
            @extend .box-shadow;
            img{
                padding: 10px;
                max-width: 200px;
                border-radius: 50%;
                overflow: hidden;
            }
           .lp-btn-to-edit-avatar::before{font-size:16px;}
        }
        .lp-single-instructor__info__right {
            padding-right: 0;
            padding-left: 0;
            z-index: 2;
            h2{
                margin-bottom: 0;
                line-height: 1;
                margin-top: 15px;
            }
            .instructor-display-name{
                padding-left: 0 ;
                @extend .font-subtitle;
                @extend .color-dark;
                @extend .font-primary;
                &:before, &:after { content: none; }
            }
            .instructor-social{
                margin: 0;
                font-size: 14px;
                margin-top: 10px;
                a{ margin-bottom: 15px;}
            }
            .wrapper-instructor-total-courses, .wrapper-instructor-total-students{ float: left;}
            .instructor-total-courses {
                border: 0;
                margin-left: 0;
                margin-right: 20px;
            }
            .wrapper-instructor-total-students svg, .wrapper-instructor-total-courses svg{  opacity: 0.8; width: 13px;}
            .instructor-total-courses, .instructor-total-students {
                letter-spacing: .04em;
                color: inherit;
                text-transform: uppercase;
                font-size: 12px;
            }
        }  
    } 
    .ul-instructor-courses .item-course{
        margin-bottom: 10px;
        padding: 20px;
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        @extend .box-shadow;
        .course-img {
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            -webkit-border-radius: 25px;
            -moz-border-radius: 25px;
            img{
                -webkit-transform: scale(1.05);
                transform: scale(1.05);
                object-fit: cover;
                -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
                -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
                transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
            }
        }
        .course-categories{
            display: none !important;
            margin-bottom: 0;
        }
        h3, h2{
            @extend .font-sm-subtitle;
            border: 0;
            margin: 0;
            padding-bottom: 5px;
            padding-left: 5px;
            a{
                background-image: linear-gradient(transparent 95%, currentcolor 5%);
                background-repeat: no-repeat;
                background-size: 0% 100%;
                transition: all 1s;
            }
        }
        .price-categories{ 
            margin-bottom: 0;
            padding-left: 5px;
            .course-item-price {
                font-size: 12px;
                text-transform: uppercase;
                line-height: 1.2em;
                font-weight: 600;
                letter-spacing: 1px;
                text-decoration: none;
                position: relative;
                overflow: hidden;
                will-change: transform;
                -ms-word-wrap: break-word;
                word-wrap: break-word;
                .price{color: var(--color-primary);}
            }
        }
        .course-count {
            letter-spacing: .04em;
            color: inherit;
            text-transform: uppercase;
            font-size: 12px;
            padding-left: 5px;
            gap: 15px;
            div .course-ico svg { width:13px; }
        }
        &:hover{
            .course-img > img{
                zoom: 1;
                filter: grayscale(1);
                -webkit-transform: scale(1);
                transform: scale(1);
            }
            h3 > a{
                background-size: 100% 100%;
                color: var(--color-dark);
            }
        }
    }
}
/* lp-checkout */
.order-comments, #checkout-order .lp-checkout-order__inner{ border-radius: 10px; @extend .border; }
.lp-checkout-form a{
    @extend .color-dark;
    &:hover{color: var(--color-primary); }
}
#checkout-order .course-name a:hover{color: var(--color-primary);}
.lp-checkout-form__before .lp-checkout-block h4, .lp-checkout-form__after .lp-checkout-block h4{
    @extend .font-sm-subtitle;
}
#learn-press-checkout .payment-methods .lp-payment-method.selected>label , #learn-press-checkout .payment-methods .lp-payment-method>label{
    background: transparent;
}
#learn-press-checkout .payment-methods .lp-payment-method {
    margin-bottom: 0;
}
#checkout-payment .lp-payment-method .gateway-icon {
    max-height: 25px;
}
#learn-press-checkout .payment-methods .lp-payment-method>label {
    padding: 5px 0;
}
#checkout-payment #checkout-order-action button {
    width: auto;
    border: 0;
    color: #fff;
    background: var(--color-primary);
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    min-height: 50px;
    letter-spacing: 0.5px;
    padding: 0 30px;
    vertical-align: middle;
    margin-top: 15px;
    line-height: 3.1;
    border-radius: 25px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
    &:hover{
        @extend .bg-dark;
        opacity: 1;
    }
}
.lp-checkout-block p, .lp-terms-and-conditions{
    font-weight: 400;
    font-size: 14px;
    line-height: 29px;
    margin-bottom: 0;
    color: $color-content;
}
#checkout-order tfoot tr th, #checkout-order tfoot tr, #checkout-order tfoot tr:last-child td, #checkout-order tfoot tr:last-child th{background: transparent !important;}
#checkout-order .order-total>th {
    padding: 20px 20px 20px 0;
}
#checkout-order .course-thumbnail {
    padding: 10px 0;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    overflow: hidden;
    .course-img{
        width: 65px;
        height: 65px !important;
        border-radius: 50%;
        overflow: hidden;
        img{
            min-height: 100%;
            object-fit: cover;
        }
    }
}
#checkout-order .order-total .col-number{
    color: var(--color-primary);
}
#checkout-payment .lp-payment-method .gateway-input {
    width: 15px;
    height: 15px;
    padding: 0;
}
#learn-press-checkout .payment-methods .payment-method-form {
    padding: 5px 20px;
    border: 0; 
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    font-weight: 400;
    font-size: 14px;
    line-height: 29px;
    @extend .bg-grey;
}
.lp-ajax-message{border-width: 1px;}
.lp-content-area{ 
    .learn-press-courses{ display:block !important; margin:30px 0 100px; }
    .lp-review-svg-star svg{ width: 15px;}
    .review-stars-rated{margin-bottom: 5px; }
    .course-featured {
        position: absolute;
        top: -40px;
        letter-spacing: .04em;
        text-transform: uppercase;
        font-size: 12px;
        line-height:2;
        padding: 0 15px;
        border-radius: 25px;
    }
    .learn-press-courses .course-content .course-info .course-price .free, .learn-press-courses .course-content .course-info .course-price .price, .learn-press-courses .course-content .course-info .course-price .origin-price{font-size:15px!important; line-height:1; margin-bottom:0;}
    .lp-single-instructor .ul-instructor-courses {
        li {width:100%!important; margin-bottom:0px;}
        a:hover{ color: #000 !important;}
        .course-content .course-info .course-readmore { width:auto; margin-top:7px;}
        .course-readmore a{
            padding: 0; border: 0;
            font-size: 13px !important;
            font-weight: 500;
            line-height: 1.4;
            min-height: auto;
            letter-spacing: .04em;
            text-transform: uppercase;
            &:hover{background:transparent; color:var(--color-primary);}
        }
        .course-content .course-info{flex-direction:row; display:flex; border-top:1px solid rgba(10, 29, 53, 0.1); padding-top:10px;}
        .course-content .course-info>span{margin-bottom: 0;}
        .course-item{border-radius:25px !important;overflow: hidden;}
        .course-wrap-meta .meta-item>div{font-size: 14px;}
        .course-info .course-price .free{font-size: 18px;}
    }
}
.lp-single-instructor .ul-instructor-courses .course-item:hover{box-shadow:none !important;}
h1.lp-content-area { margin:200px auto 50px; text-align:center;}
.lp-user-profile{padding-bottom: 100px;}

.learnpress-page .lp-button, .learnpress-page #lp-button{
    font-size: 15px;
    text-transform: capitalize;
    padding: 10px 24px;
    letter-spacing: 0.5px;
    margin: 0 0 15px;
    border-radius: 50px;
    font-weight: 700;
}
.review-form{
    border-radius: 25px;
    padding: 50px;
}
.course-rate{
    margin: 10px 0 30px !important;
}
.learnpress-course-review{
    margin-bottom: 100px;
}
.learnpress-course-review .item-title{
    width: 100%;
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    margin-top: 15px;
}
.learnpress-course-review .course-reviews-list li, .learnpress-course-review .course-reviews-list-shortcode li{
    margin-top: 25px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    .review-author img{
        border-radius: 100%;
        width: 75px;
        height: 75px;
        object-fit: cover;
        overflow: hidden;
    }
    .review-date{
        letter-spacing: .04em;
        color: inherit;
        text-transform: uppercase;
        font-size: 13px;
        display: inline-block;
        margin-right: 15px;
    }
    h4.user-name{
        font-size: 20px;
        margin-bottom: 0;
        text-transform: capitalize;
    }
    h5.course-review-title{
        line-height: 23px;
        font-size: 15px;
    }
    .lp-review-svg-star svg {
        width: 14px;
    }
    .review-content{
        font-size: 15px;
        line-height: 24px;
    }
}