


.single-product .main-st-menu {
    padding: 0 50px;
}

.single-product .new-main-menu {
    background-color: #431d80;
    box-shadow: none;
}

header.single-product {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
}
.product-single-video {
    padding: 15px 15px 5px;
    background: rgb(0 0 0 / 13%);
    border-radius: 10px;
}

.product-single-video video {
    width: 100%;
    border-radius: 10px;
}

.product-category {
    margin-bottom: 20px;
}

span.posted_in a {
    color: #ffffff;
    display: inline-block;
    padding: 0 8px;
    border-radius: 10px;
    font-size: 14px;
}

span.posted_in {
    background: #431d80;
    padding: 4px;
    border-radius: 5px;
}

.product-des h1 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.8;
    color: #0a0909;
    background-color: #fff;
    padding: 10px;
    border-radius: 20px;
    text-align: center;

}

.product-des p {
    font-size: 16px;
    line-height: 1.8;
    color: #7b868a;
}

.product-social {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-share-btn {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

a.pop-su {
    background: #431d80;
    padding: 8px 15px;
    border-radius: 5px;
    color: #fff;
}

.post-share-btn a {
    color: #b1bbbf;
    margin-left: 1px;
    display: inline-block;
    height: 35px;
    line-height: 32px;
    width: 35px;
}

.modal-open .modal {
    z-index: 9999;
}
.video-des-box {
    margin-bottom: 40px;
}

.single-product-bre {
    background: #f0f2f7;
    padding: 16px;
    border-radius: 5px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.single-product-bre .breadcrumb {
    margin-bottom: 0;
}

.single-product-bre li {
    line-height: 36px;
}

.single-product-bre i {
    border-radius: 10px;
    -webkit-box-shadow: 0 8px 35px 0 rgb(0 0 0 / 6%);
    box-shadow: 0 8px 35px 0 rgb(0 0 0 / 6%);
    background: #fff;
    height: 36px;
    width: 36px;
    text-align: center;
    line-height: 34px;
    margin-left: 10px;
    color: #909aa7;
    font-size: 18px;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding-left: 0.5rem;
    color: #6c757d;
    content: ">";
}
.product-card {
    padding: 0 16px;
    -webkit-box-shadow: 0 5px 30px rgb(70 72 77 / 8%);
    box-shadow: 0 5px 30px rgb(70 72 77 / 8%);
    position: relative;
    transition: all .2s ease;
    top: 0;
    display: flex;
    align-items: center;
    min-height: 90px;
    margin-bottom: 30px;
    background-color: #fff;
}

.product-card:hover {
    top: -3px;
    box-shadow: 0 10px 36px 4px rgb(70 72 77 / 9%);
}

.product-card .icon i {
    font-size: 35px;
    margin-left: 10px;
    color: #fea000;
}
.value{
    width: 54%;
}
.product-card .value {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 500;
}

.product-card .value .title {
    color: #858c96;
}

.progress-title {
    background: #f0f2f7;
    padding: 16px 16px 8px 16px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #7b868a;
    background-color: #fff;
}

.progress-title i {
    font-size: 25px;
    margin-left: 8px;
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px);
}

.meter {
    height: 10px;
    position: relative;
    background: #dce5e8;
    margin-top: 10px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    direction: ltr;
}

.meter > span {
    display: block;
    height: 100%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #1fbd50;
    position: relative;
    overflow: hidden;
}

.meter > span:after {
    animation: move 2s linear infinite;
}

.meter > span:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(
            -45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
    z-index: 1;
    background-size: 50px 50px;
    animation: move 2s linear infinite;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
}

@keyframes move {
    0% {
        background-position: 0 0
    }
    100% {
        background-position: 50px 50px
    }
}
.product-single-content {
    background-color: #fff;
    padding: 3em;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    margin-bottom: 12px;
    -webkit-box-shadow: 0 0 13px 1px rgb(70 72 77 / 8%);
    box-shadow: 0 0 13px 1px rgb(70 72 77 / 8%);
}

.product-title-single, h3 {
    font-family: iranyekan, sans-serif;
    line-height: 22px;
    font-weight: 400;
    color: #0a0909;
    font-size: 22px;
    margin-bottom: 20px;
}

.product-single-content p {
    color: #7a7a7a;
    line-height: 25px;
}

.product-single-content ul {
    margin: 20px;
    padding-right: 20px;
    color: #7a7a7a;
}

.product-single-content ul li {
    list-style: circle;
}
section.course-section {
    margin-top: 30px;
}

.course-section .accordion-item {
    background: #f0f2f7;
    padding: 10px 18px;
    border-radius: 5px;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    background: transparent;
}

.accordion-button:not(.collapsed) {
    color: #7a7a7a;
    background-color: transparent;
}

.accordion-collapse {
    border: none;
    border-width: 0;
}

.accordion-button {
    border: none;
}

.course-section-group .accordion-button::after {
    background-image: url("");
}

.course-section-group .accordion-button:not(.collapsed)::after {
    background-image: url("");
}

.course-panel-heading {
    width: 100%;
}

.panel-heading-left {
    display: flex;
    align-items: center;
}

.course-section .course-section-group .course-panel-heading .panel-heading-left .course-lesson-icon {
    margin-left: 15px;
    margin-right: 0;
}

.course-section .course-section-group .course-panel-heading .panel-heading-left .course-lesson-icon i {
    color: #d4d9dd;
    font-size: 20px;
    -webkit-transition: color .2s ease-out;
    transition: color .2s ease-out;
}

.course-section .course-section-group .course-panel-heading .panel-heading-left .title h4 {
    font-size: 16px;
    margin: 0 0 8px;
}

.course-section .course-section-group .course-panel-heading .panel-heading-left .badge-item.video {
    color: #fff;
    margin-right: 6px;
    background-color: #f7a10a;
    padding: 6px 19px;
    display: inline-block;
    font-size: 12px;
    border-radius: 2px;
    margin-left: 6px;
    line-height: 1.2;
    text-transform: capitalize;
}

.course-section .course-section-group .course-panel-heading .panel-heading-left .title > p {
    font-size: 14px;
    color: #adb5bd;
    margin: 0;
    line-height: 1;
}

.course-section .course-section-group .course-panel-heading .panel-heading-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.panel-heading-right a {
    font-size: 14px;
    line-height: 1.4;
    padding: 7px 38px;
    display: flex;
    align-items: center;
    background: #f7a10a;
    border-radius: 3px;
    color: #fff;
    margin-right: -24px;
    justify-content: center;


}

.panel-heading-right a i {
    margin-left: 7px;
}

.panel-heading-right .download-btn {

    margin-right:4px;
    color: #fff;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-left: 7px;
    background-color: #7f8c8d;
    margin-bottom: -32px;
}
.panel-heading-right .download-btnn {


    color: #fff;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-left: 7px;
    margin-bottom: -33px;

}

.private-lesson {
    line-height: 30px;
    margin-right: 7px;
    color: #4a4a49;
}

.course-section-group .accordion-item {
    padding: 0;
}

.course-section-group-content {
    background: #fff;
}
span.badge-item.practice {
    padding: 0 5px;
    background: #00c56a;
    font-size: 12px;
    border-radius: 3px;
    color: #fff;
}
.hand-price {
    padding: 22px 22px 22px 22px;
    background-color: #EBFAF5;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #3ECE9D;
    border-radius: 10px 10px 10px 10px;
    margin-top: 30px;
}
.hand-price-title {
    margin-bottom: 12px;
    color: #3ECE9D;
    font-size: 20px;
}

.course-teacher-details ,.product-single-content,.product-reviews {
    background-color: #fff;
    padding: 1.35rem;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    margin-bottom: 12px;
    -webkit-box-shadow: 0 0 13px 1px rgb(70 72 77 / 8%);
    box-shadow: 0 0 13px 1px rgb(70 72 77 / 8%);
    position: relative;
}
.course-teacher-details .title {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 4px 15px;
    background: #fea000;
    border-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    width: 20%;
}
.course-teacher-details .title i {
    font-size: 18px;
    margin-left: 8px;
}
.course-teacher-details .top-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}
.course-teacher-details .top-part img {
    max-width: 100%;
    width: 62px;
    height: auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 2px 2px 20px #00000021;
}
.course-teacher-details .top-part .name {
    padding-right: 20px;
    padding-left: 0;
    line-height: normal;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 20px;
}
.course-teacher-details .top-part .name h6 {
    margin-bottom: 4px;
}
.product-single-content .tagged_as {
    display: block;
    color: #7b868a;
}
.product-single-content .tagged_as i {
    margin-left: 5px;
    font-size: 14px;
}
.product-single-content .tagged_as a {
    background: #eaecef;
    color: #7b868a!important;
    font-size: 12px;
    padding: 9px;
    margin: 3px;
    display: inline-block;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.product-single-content .tagged_as a:hover {
    background: #7b868a!important;
    color: #fff!important;
}
.advice-box .advice-inner{
    -webkit-box-shadow: 0 0 13px 1px rgb(70 72 77 / 8%);
    box-shadow: 0 0 13px 1px rgb(70 72 77 / 8%);
}
.advice-box .advice-inner a{
    background-color: #f7a10a;
    border-radius: 5px;
}
.advice-box .advice-inner {
    width: 100%;
    margin-bottom: 15px;
    margin-top: 10px;
    display: inline-block;

    background-position: right -92px top -67px;
    -webkit-box-shadow: 0 5px 20px rgb(0 0 0 / 7%);
    box-shadow: 0 5px 20px rgb(0 0 0 / 7%);
    border-radius: 5px;
}
.product-reviews .product-review-title {
    display: flex;
    color: #000;
    margin-bottom: 20px;
}

.product-reviews .product-review-title i {
    font-size: 23px;
    margin-left: 9px;
    color: #3c3c3c;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-content: center;
    padding-top: 7px;
    color: #fff;
    position: relative;
    background: #fea000;
    border-radius: 0 0 5px 5px;
}
.product-reviews .product-review-title .inner {
    position: relative;
    font-size: 16px;
    margin-bottom: 0;
    display: inline-block;
    color: #000;
    font-weight: 600;
    line-height: 33px;
}
article.main-product-box {
    background-color: #fff;
    transition: all .3s ease;
    border-radius: 5px;
    box-shadow: 0 0 19px rgb(168 172 185 / 30%);
}

article.main-product-box:hover {
    box-shadow: 0 7px 25px rgb(168 172 185 / 30%);
    transform: translateY(-4px);
}

figure.pro-image {
    position: relative;
    overflow: hidden;
}

.pro-image img {
    width: 100%;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.main-pro-title h3 {
    font-size: 16px;
    line-height: 1.5;
    height: 43px;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 5px;
}

span.star-rating {
    display: block;
    text-align: left;
    color: #ffc107;
    padding: 0 0 0 7px;
}

.pro-meta {
    background: #f6f7fa;
    padding: 10px 12px;
    font-size: .9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

span.user-pro {
    color: #6c757d;
    font-size: 16px;
}

span.price {
    color: #9e9e9e;
}

article.main-product-box .btn-section {
    position: absolute;
    bottom: -45px;
    right: 12px;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: all .2s linear;
}

article.main-product-box:hover .btn-section {
    bottom: 12px !important;
    opacity: 1;
}

article.main-product-box .pro-video-icon {
    background-color: rgba(255, 255, 255, .37);
    width: 40px;
    height: 40px;
    border: 0;
    color: #fff;
    font-size: 16px;
    padding-left: 3px;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 5px;
}

article.main-product-box .pro-video-icon:hover {
    background-color: #fff;
    color: #111;
}

article.main-product-box .pro-video-icon i {
    font-size: 23px;
}
.product-reviews-rules {
    padding: 10px;
    margin-top: 30px;
    font-size: 12px;
    color: #7b868a!important;
}
.product-reviews-rules h3 {
    font-size: 15px;
}
.product-reviews-rules ul {
    list-style: none;
    font-size: 12px;
    margin: 0;
}
.product-reviews-rules ul li i {
    text-rendering: auto;
    content: "\f00c";
    margin-left: 5px;
    font-size: 12px;
    color: #15cc79;
    margin-top: 7px;
}
.comment-respond {
    margin-top: 30px;
    background: #f0f2f7;
    padding: 30px;
    border-radius: 5px;
}
h3.comment-reply-title {
    font-size: 12px;
    overflow: hidden;
}
.product-info-box .sell_course {
    color: #7f8187;
    font-size: 16px;
    display: flex;
    border: 1px solid #ddd;
    background-color: #f0f2f7;
    padding: 0 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    position: relative;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
}
.product-info-box .sell_course:after, .product-info-box .sell_course:before {
    content: '';
    width: 16px;
    height: 16px;
    border-left: 1px dashed #ddd;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: calc(50% - 8px);
    right: -9px;
}
.product-info-box .sell_course:after {
    border-left: none;
    border-right: 1px dashed #ddd;
    right: auto;
    left: -9px;
}
.product-info-box .sell_course strong {
    padding-left: 20px;
    border-left: 1px solid #ddd;
    font-weight: 500;
    width: 100%;
    max-width: 84px;
    text-align: center;
}
.product-info-box .sell_course .fal {
    font-size: 22px;
    line-height: 55px;
}
.product-info-box p.price {
    font-size: 25px;
    margin-bottom: 0;
    font-size: 17px;
    width: 100%;
    text-align: left;
}
.product-info-box .price>.amount {
    font-size: 26px;
}
.product-info-box .price .amount {
    color: #464749;
}
.product-info-box .price span.woocommerce-Price-currencySymbol {
    float: left;
    color: grey;
    font-size: 10px;
    font-weight: 400;
    text-align: center;
    margin-right: 5px;
}
.product-info-box .button {
    background-color: #1fbd50;
    border-radius: 3px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    font-size: 19px;
    border: 1px solid #1fbd50;
    color: #fff;
    height: 50px;
    box-shadow: 0 2px 12px rgb(31 189 80 / 27%);
    width: 100%;
}
.product-info-box .button:before {

}

.add_to_cart_button{
    font-size: 15px !important;
}
.product-info-box .button:hover {
    background-color: #505358;
    border: 1px solid #505358;
    box-shadow: 0 2px 12px rgb(80 83 88 / 36%);
}
.product-info-box .total_sales {
    color: #555;
    border: 2px dotted #eaeaea;
    padding: 15px;
    font-size: 16px;
    text-align: center;
    border-radius: 10px;
    margin: 7px 0 16px 0;
    background-color: #fff;
}
.std-box-view {
    text-align: center;
    font-size: 14px;
    border-radius: 2px;
    color: #7b868a;
}
.product-views {
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #e5e5e5;
}

.std-box-view i {
    font-size: 25px;
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px);
    margin-left: 4px;
}
.product-info-box{
    background: #fff;
    padding: 10px;
    margin: 50px 0;

}
.product-info-box .posted_cat {
    color: #7b868a;
}
.product-info-box .posted_cat i {
    margin-left: 5px;
}
.product-info-box .posted_cat a {
    color: #7b868a;
    border: 1px dashed #efefef;
    display: inline-block;
    padding: 0 8px;
    margin: 0 2px 5px 0;
    border-radius: 10px;
    font-size: 11px;
    line-height: 18px;
}
.short-url-box {
    padding-top: 7px;
    margin-top: 5px;
    border-top: 1px dashed #e5e5e5;
}
input.short-url-link {
    color: #a7a7a7;
    letter-spacing: 1px;
    font-size: 12px;
    border-radius: 5px;
    width: 100%;
    padding: 8px;
    border: 1px solid #a7a7a7;
}
.widget-title:before {
    background: #f7a10a;}

.accordion-header  span  img{
    height: 65px;
    width: 116px;
}

.btn-link{

    text-decoration: none !important;
    font-weight: bolder !important;
    font-size: 21px !important;
}

.gform_footer  .gform_button.button{
    background-color: red !important;
    color: #fff !important;
}
.gform_title{
    display: none !important;
}

.course-lesson-icon:hover i{
    color: #e74c3c !important;
}

.inner-content{

    height: auto;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    text-align: right;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 25px;
    margin-top: 20px;
}

.title_reviews{
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}

.title_reviews h3{
    display: inline-block;
    color: #2a2929;
    position: relative;
    font-size: 18px;
    margin-right: 10px;
}

.title_reviews h3:after{

    content: '';
    height: 2px;
    width: 100%;
    display: block;
    background-color:#e74c3c;
    position: absolute;
    top: 43px;
}

.related_post{

    border-radius: 8px;
    overflow: hidden;
    margin: 15px 5px;
    transition: all .3s ease;
    border: 1px solid #eeeeee;

}
.post_thumbnail{
    position: relative;
}
.post_thumbnail img{

    display: block;
    width: 100%;
}
.post_content{

    padding: 5px 15px;
}

.entry_title{

    margin-top: 12px;
    height: 55px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.5px;
    line-height: 21px;
    overflow: hidden;
    color: #464749;
    width: 90%;

}

.post_excerpt{

    font-size: 12px;
    height: 45px;
    line-height: 18px;
    color: #898989;

}

.onsale_price{

    position: absolute;
    width: 54px;
    height: 55px;
    background:url("../images/video-box/discont_badge.png");
    z-index: 5;
    color: #fff;
    font-size: 11px;
    font-weight: 300;
    line-height: 22px;
    left: -1px;
    top: -1px;
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
    -webkit-transition: all .3s;
    transition: all .3s;
    text-align: center;
}

.onsale_price span{

    display: block;
    color: #fff;
    font-size: 17px;
    margin-top: 15px;

}
.play_video{
    position: absolute;
    top: 15px;
    right: 15px;
    text-align: center;
}

.play_video .play_btn{


    background-color: rgba(0, 0, 0, .37);
    width: 40px;
    height: 40px;
    border: 0;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.play_video .play_btn:hover{

    background-color: #FFFFFF;
    color: #000000;
}

.post_content{
    padding: 5px 15px;
}

.entry_title{

    margin-top: 12px;
    height: 55px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.5px;
    line-height: 21px;
    overflow: hidden;
}

.entry_title a{
    color: #464749;
}

.course_content_bottom{
    border-top: 1px solid #e5e5e5;
    padding: 15px 0;
    font-size: .9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.course_student{
    color: #6c757d;
    display: flex;
    align-items: center;

}

.course_student span{
    margin-right: 8px;
}

.amount  del{
    color: #555;
}

.amount ins{
    background-color: #27ae60;
    padding:5px 10px;
    color: #FFFFFF;
    text-decoration: none;
}

.related_post:hover .onsale_price{
    transform: rotate(2deg);
}
/*form comment */
del span.woocommerce-Price-currencySymbol {
    display: none;
}
.price  del{
    color: #dc3545;
    padding: 5px;
}
.price ins {
    color: #198754;
    font-size: 18px;
    font-weight: 600;
}
p.comment-form-email,p.comment-form-author {
    width: 49%;
    display: inline-block;
    padding-right: 15px;
    padding-left: 15px;
}
p.comment-form-comment{
    padding-right: 15px;
    padding-left: 15px;

}
p.comment-form-email input,p.comment-form-author input ,p.comment-form-comment textarea{
    width: 100%;
    font-family: inherit;
    height: auto !important;
    font-weight: inherit;
    line-height: 1.6;
    outline: 0;
    padding: 8px 10px;
    border: 1px solid #dcdcdc;
    -webkit-box-shadow: 0 1px 3px 0 rgb(0 0 0 / 6%);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 6%);
    border-radius: 4px;
    -webkit-appearance: none;
    -webkit-transition: all .2s;
    transition: all .2s;
}
form#commentform label {
    color: #6c757d;
    padding-bottom: 3px;
}
form#commentform  input#submit {
    width: 100%;
    background-color: #ffc107 !important;
    color: #fff !important;
}
/*sidebar */
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    display: block !important;
    text-align: center;
    line-height: 27px!important;
    color: #fff!important;
    background-color: #e74c3c!important;
}
.sell_course .price ins {
    text-decoration: none;
}
.product-info-box .price .amount {
    color: #464749
}
.product-info-box .price>.amount {
    font-size: 15px;
    margin-left: 35px;
}
.product-info-box .price span.woocommerce-Price-amount.amount bdi {
    margin-right: 8px;
    text-decoration: none;
    position: relative
}
.product-info-box .price span.woocommerce-Price-amount.amount bdi:after {
    width: 100%;
    height: 1px;
    background: #464749;
    content: '';
    position: absolute;
    left: 3px;
    top: 47%;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg)
}
.product-info-box .price span.woocommerce-Price-amount.amount bdi span.woocommerce-Price-currencySymbol {
    display: none;
}
.product-info-box .price > ins span.woocommerce-Price-amount.amount bdi span.woocommerce-Price-currencySymbol {
    display: block;
}
.product-info-box .price > ins span.woocommerce-Price-amount.amount bdi {
    margin-right: 0;
    text-decoration: none;
    position: relative
}
.product-info-box .price > ins span.woocommerce-Price-amount.amount bdi:after {
    width: 100%;
    height: 1px;
    background: #464749;
    content: none !important;
    position: absolute;
    left: 3px;
    top: 47%;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg)
}
.product-info-box .price ins .amount {
    font-size: 22px
}

.woocommerce .star-rating span::before {
    content: "SSSSS";
    top: 0;
    position: absolute;
    right: 0;
    color: #f1c40f;
}

.woocommerce p.stars a::before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-family: WooCommerce;
    content: "\e021";
    text-indent: 0;
    color: #f1c40f;
}

.comment-text{
    margin-top: 33px !important;
}
.woocommerce-Reviews-title{
    text-align: center !important;
    margin-top: 14px !important;
    font-size: 20px !important;
}

.avatar.avatar-60.photo{
    width: 50px !important;
    height: 50px!important;
    border-radius: 100% !important;
}

.ajax_add_to_cart.added{
    font-size: 14px !important;
}

.added_to_cart.wc-forward{
    background-color: #2ecc71 !important;
    color: #fff !important;
    padding: 10px !important;
    border-radius: 10px !important;
    text-align: center !important;
    margin: 20px auto !important;
}