/* /Components/Dashboard/DashboardCertificate.razor.rz.scp.css */

.get-certificate[b-kxg7yrlgrp]{
    padding:20px 0;
}
    .get-certificate input[b-kxg7yrlgrp]{
        height:50px;
    }

    .payment-instructions[b-kxg7yrlgrp] {
        background-color: #f8f9fa;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-width: 500px;
        margin: 20px auto;
    }

.payment-title[b-kxg7yrlgrp] {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.price-list[b-kxg7yrlgrp] {
    list-style-type: none;
    padding: 0;
}

.price-item[b-kxg7yrlgrp] {
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: #ffffff;
    border-left: 4px solid var(--base-color-7);
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

    .price-item:hover[b-kxg7yrlgrp] {
        transform: translateX(5px);
    }

.icon[b-kxg7yrlgrp] {
    margin-left: 10px;
    font-size: 1.2rem;
}

.price[b-kxg7yrlgrp] {
    font-weight: bold;
    color: #e74c3c;
    margin-right: 5px;
}

.bank-info[b-kxg7yrlgrp] {
    background-color: var(--base-color-2);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.bank-icon[b-kxg7yrlgrp] {
    font-size: 1.5rem;
    vertical-align: middle;
}

.card-number[b-kxg7yrlgrp] {
    display: inline-block;
    margin: 10px ;
    padding: 15px;
    background-color: var(--base-color-0);
    color: white;
    border-radius:20px;
    width:200px;
}
/*///////////////////////////////////////////*/
.success-message-container[b-kxg7yrlgrp] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.success-message[b-kxg7yrlgrp] {
    background-color: #e8f5e9; 
    border: 1px solid #a5d6a7; 
    border-radius: 8px;
    padding: 15px 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
}

.success-icon[b-kxg7yrlgrp] {
    font-size: 1.5rem;
    margin-left: 10px;
    vertical-align: middle;
}

.success-text[b-kxg7yrlgrp] {
    color: #2e7d32; 
    font-size: 1.1rem;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}

/*.//////////////////////////////////*/

.validation-errors-container[b-kxg7yrlgrp] {
    margin: 20px 0;
}

.validation-errors[b-kxg7yrlgrp] {
    background-color: #fdecea; 
    border: 1px solid #ef9a9a; 
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease-in-out;
}

.error-list[b-kxg7yrlgrp] {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.error-item[b-kxg7yrlgrp] {
    padding: 8px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ffcdd2;
}

    .error-item:last-child[b-kxg7yrlgrp] {
        border-bottom: none; 
    }

.error-icon[b-kxg7yrlgrp] {
    color: #d32f2f; 
    margin-left: 10px;
    font-size: 1.2rem;
}

.error-text[b-kxg7yrlgrp] {
    color: #d32f2f; 
    font-size: 1rem;
}

/* /Components/Dashboard/DashboardIndex.razor.rz.scp.css */
.dashboard-index[b-q5ougqz7wg]
{
    min-height:200px;
}

.welcome-section[b-q5ougqz7wg] {
    width:100%;
    min-height:100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--base-color-0);
    color: white;
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 30px;
}

.welcome-text h1[b-q5ougqz7wg] {
    font-size: 2rem;
    margin-bottom: 8px;
}

.welcome-text p[b-q5ougqz7wg] {
    font-size: 1.1rem;
    opacity: 0.9;
}

.welcome-image img[b-q5ougqz7wg] {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.overview-panel[b-q5ougqz7wg] {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 30px;
    transition:all .5s;
}
@media (max-width: 767.98px) {
    .overview-panel[b-q5ougqz7wg] {
        gap: 20px;
        justify-content:center;
        flex-direction:column
    }
}

.metric-box[b-q5ougqz7wg] {
    flex: 1 1 200px;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: default;
    transition: transform 0.5s ease;
}

    .metric-box:hover[b-q5ougqz7wg] {
        transform: translateY(-5px);
    }

.icon[b-q5ougqz7wg] {
    font-size: 2.5rem;
    margin-right: 20px;
}

.metric-info h3[b-q5ougqz7wg] {
    font-size: 2rem;
    margin-bottom: 5px;
}

.metric-info p[b-q5ougqz7wg] {
    font-size: 1rem;
    opacity: 0.85;
}

/* رنگ‌ها مطابق تصویر */

.yellow[b-q5ougqz7wg] {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    color: #6b4b00;
}

.purple[b-q5ougqz7wg] {
    background: linear-gradient(135deg, #7c5dfa 0%, #9e7bff 100%);
}

.pink[b-q5ougqz7wg] {
    background: linear-gradient(135deg, #ff6a88 0%, #ff99ac 100%);
}

.light-purple[b-q5ougqz7wg] {
    background: linear-gradient(135deg, #b3a1f9 0%, #d7d2f0 100%);
    color: #3a2e7d;
}
/* /Components/Dashboard/DashboardInvoice.razor.rz.scp.css */
.pitch-decks-list[b-u45e8jey0p] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pitch-card[b-u45e8jey0p] {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

    .pitch-card:hover[b-u45e8jey0p] {
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

.pitch-details[b-u45e8jey0p] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #333;
}



.pitch-actions[b-u45e8jey0p] {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* دکمه‌های ویرایش و حذف */
.edit-btn[b-u45e8jey0p],
.delete-btn[b-u45e8jey0p] {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #7c5dfa;
    transition: color 0.3s ease;
}

    .edit-btn:hover[b-u45e8jey0p] {
        color: #5a3fd1;
    }

    .delete-btn:hover[b-u45e8jey0p] {
        color: #d14f4f;
    }
/* /Components/Dashboard/DashboardPersonInfo.razor.rz.scp.css */
.preson-info[b-kth6zeawoe]
{
    min-height:200px;
}
.overview-panel[b-kth6zeawoe] {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.metric-box[b-kth6zeawoe] {
    flex: 1 1 200px;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: default;
    transition: transform 0.2s ease;
}

    .metric-box:hover[b-kth6zeawoe] {
        transform: translateY(-5px);
    }

.icon[b-kth6zeawoe] {
    font-size: 2.5rem;
    margin-right: 20px;
}

.metric-info h3[b-kth6zeawoe] {
    font-size: 2rem;
    margin-bottom: 5px;
}

.metric-info p[b-kth6zeawoe] {
    font-size: 1rem;
    opacity: 0.85;
}

/* رنگ‌ها مطابق تصویر */

.yellow[b-kth6zeawoe] {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    color: #6b4b00;
}

.purple[b-kth6zeawoe] {
    background: linear-gradient(135deg, #7c5dfa 0%, #9e7bff 100%);
}

.pink[b-kth6zeawoe] {
    background: linear-gradient(135deg, #ff6a88 0%, #ff99ac 100%);
}

.light-purple[b-kth6zeawoe] {
    background: linear-gradient(135deg, #b3a1f9 0%, #d7d2f0 100%);
    color: #3a2e7d;
}
/* /Components/Dashboard/DashboardPurchasedTextbooks.razor.rz.scp.css */
.purchased-textbooks[b-wr4qadl8a1] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .purchased-textbooks .pitch-card[b-wr4qadl8a1] {
        display: flex;
        align-items: center;
        background-color: white;
        border-radius: 12px;
        padding: 15px 20px;
        margin: 20px 0;
        box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        transition: box-shadow 0.3s ease;
    }
@media (max-width: 767.98px) {
    .purchased-textbooks .pitch-card[b-wr4qadl8a1] {
        flex-direction: column;
    }
}
        .purchased-textbooks .pitch-card:hover[b-wr4qadl8a1] {
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }



    .purchased-textbooks .pitch-details[b-wr4qadl8a1] {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 6px;
        color: #333;
    }


    .purchased-textbooks .pitch-actions[b-wr4qadl8a1] {
        display: flex;
        align-items: center;
        gap: 12px;
    }



    /* دکمه‌های ویرایش و حذف */
    .purchased-textbooks .more-btn[b-wr4qadl8a1] {
        background: none;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        color: #7c5dfa;
        transition: color 0.3s ease;
    }

        .purchased-textbooks .more-btn:hover[b-wr4qadl8a1] {
            color: #5a3fd1;
        }

   
/* /Components/Home/HomeAbout.razor.rz.scp.css */
.home-about[b-j8cy7nigvo]{
    width:100%;
    min-height:400px;
    padding:30px 0;
}
.text-content[b-j8cy7nigvo] {
    width:100%;
    min-height:400px;
    border:2px solid var(--base-color-0);
    margin:10px 0;
    border-radius:20px;
    position:relative;
    padding:20px;
    background-image:url('/images/slider/image2.png')
}
    .text-content img[b-j8cy7nigvo] {
        width: 40px;
        display: inline;
        position: absolute;
        top: -20px;

    }
.highlight[b-j8cy7nigvo]{
    font-size:20px;
    color:var(--base-color-5)
}
.gallery[b-j8cy7nigvo] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    width: 100%;
}
.photo[b-j8cy7nigvo] {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .photo img[b-j8cy7nigvo] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.large[b-j8cy7nigvo] {
    width:100%;
    height: 300px;
}

.small[b-j8cy7nigvo] {
    width:100%;
    height: 200px;
}

/* چیدمان عکس‌ها */
.photo:nth-child(1)[b-j8cy7nigvo] {
    grid-column: 1;
    grid-row: 1;
}

.photo:nth-child(2)[b-j8cy7nigvo] {
    grid-column: 2;
    grid-row: 1;
}

.photo:nth-child(3)[b-j8cy7nigvo] {
    grid-column: 1;
    grid-row: 2;
}

.photo:nth-child(4)[b-j8cy7nigvo] {
    grid-column: 2;
    grid-row: 2;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 600px) {
    .gallery[b-j8cy7nigvo] {
        grid-template-columns: 1fr;
    }

    .photo:nth-child(1)[b-j8cy7nigvo],
    .photo:nth-child(2)[b-j8cy7nigvo],
    .photo:nth-child(3)[b-j8cy7nigvo],
    .photo:nth-child(4)[b-j8cy7nigvo] {
        grid-column: 1;
    }

    .photo:nth-child(1)[b-j8cy7nigvo] {
        grid-row: 1;
    }

    .photo:nth-child(2)[b-j8cy7nigvo] {
        grid-row: 2;
    }

    .photo:nth-child(3)[b-j8cy7nigvo] {
        grid-row: 3;
    }

    .photo:nth-child(4)[b-j8cy7nigvo] {
        grid-row: 4;
    }
}

/* /Components/Home/HomeBlog.razor.rz.scp.css */
.home-blog[b-2owfhyw5nx]{
    width:100%;
    min-height:500px;
    background-image:url('/images/slider/back3.png');
    background-repeat:no-repeat;
    background-size:cover;
    background-color:#fff;
    padding:30px 0;

}
    .home-blog .item-blog[b-2owfhyw5nx] {
        width: 100%;
        height: 400px;
        border: 1px solid #ddd;
        border-radius: 20px;
        transition: all .5s;
        padding:20px;
    }
.home-blog .item-blog .image[b-2owfhyw5nx]{
    width:100%;
    height:200px;
    background-size:cover;
    background-position:center center;
    transition:all .5s;
}
    .home-blog .item-blog:hover[b-2owfhyw5nx] {
        transform: scale(1.02)
    }
    .home-blog .item-blog .info[b-2owfhyw5nx]{
    width:100%;
    height:150px;
    overflow:hidden;
    margin:10px 0;
    padding:20px ;
}
    .home-blog .item-blog .info i[b-2owfhyw5nx],
   .home-blog .item-blog .info .date[b-2owfhyw5nx]{
        color:var(--base-color-1)
    }
/* /Components/Home/HomeCategory.razor.rz.scp.css */
.category[b-e7lkg6xl62] {
    width: 100%;
    height: 400px;
    padding: 30px 0;
    background-color: red;
}
.category .item[b-e7lkg6xl62]{
    width:100%;
    height:200px;
    text-align:center;
}
.category .item .icon[b-e7lkg6xl62]{
    width:130px;
    height:130px;
    border-radius:100%;
    margin:0 auto;
    border:1px solid var(--base-color-2);
    display:flex;
    justify-content:center;
    align-items:center;

}
    .category .item .icon img[b-e7lkg6xl62]{
        width:100px;
    }
/* /Components/Home/HomeCounter.razor.rz.scp.css */
.counter[b-gufd91z2pj]{
    width:100%;
    padding:30px 0;
}

.item-counter[b-gufd91z2pj] {
    width:100%;
    display: flex;
    align-items: center;
    justify-content:center;
    flex-direction:column;
    border-radius: 8px;
    padding: 16px 24px;
    margin:10px 0;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgb(0 0 0 / 0.04);
    cursor: default;
    user-select: none;
    transition:all .5s;
}
    .item-counter:hover[b-gufd91z2pj]{
        transform:scale(1.01)
    }
    .icon-box[b-gufd91z2pj] {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        border-radius: 6px;
        margin-right: 16px;
        flex-shrink: 0;
    }
/* رنگ پس‌زمینه و رنگ آیکون‌ها برای هر کارت */
.item-counter1[b-gufd91z2pj] {
    background: #fff4de;
    color: #d28c00;
}

    .item-counter1 .icon-box[b-gufd91z2pj] {
        background: #f8db86;
    }

.item-counter2[b-gufd91z2pj] {
    background: #d7dfeb;
    color: #192b43;
}

    .item-counter2 .icon-box[b-gufd91z2pj] {
        background: #8d9cae;
    }

.item-counter3[b-gufd91z2pj] {
    background: #ded6f2;
    color: #5f2ea5;
}

    .item-counter3 .icon-box[b-gufd91z2pj] {
        background: #b1a3e6;
    }

.item-counter4[b-gufd91z2pj] {
    background: #d8e8f3;
    color: #1e627a;
}

    .item-counter4 .icon-box[b-gufd91z2pj] {
        background: #8ac1dd;
    }

/* استایل آیکون‌ها با SVG درون خطی */
svg[b-gufd91z2pj] {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.text-group[b-gufd91z2pj] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.title[b-gufd91z2pj] {
    padding:10px 0;
   text-align:center
}

.subtitle[b-gufd91z2pj] {
    color: #000000;
    opacity: 0.6;
}

/* /Components/Home/HomeLastVisit.razor.rz.scp.css */
.last-visit[b-0rxdc829no] {
    width: 100%;
    min-height:300px;
    padding: 30px 0;
    position:relative;
}
    .last-visit .shape[b-0rxdc829no] {
        width: 70%;
        height: 250px;
        background-color: var(--base-color-2);
        position: absolute;
        bottom: 0px;
        right: 0;
        z-index:-10;
    }

    .last-visit .swiper[b-0rxdc829no],
    .last-visit .swiper-wrapper[b-0rxdc829no] {
        min-height: 500px;
        padding-bottom:20px;
        position: relative;
    }

    .last-visit .swiper-slide[b-0rxdc829no] {
        width: 300px;
        height: 400px;
        margin: 0 10px;
    }

    .last-visit .item[b-0rxdc829no] {
        width: 100%;
        min-height: 300px;
        border: 2px solid var(--base-color-2);
        background-color: #fff;
        border-radius: 20px;
        padding: 10px;
    }
.last-visit .item i[b-0rxdc829no] {
    font-size: 20px;
    color: var(--base-color-8);
    margin-left: 10px;
}
.last-visit .item .image[b-0rxdc829no] {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center center;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}


        .last-visit .item .caption[b-0rxdc829no] {
            width: 100%;
            height: 100px;
            padding: 10px 0;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
        }
            .last-visit .item .caption p[b-0rxdc829no] {
               color: #808080;
            }
    .last-visit .item .caption .info[b-0rxdc829no]{
        padding:5px 0;
    }
    .item .price-product[b-0rxdc829no] {
        width: 100%;
        height: 50px;
        border-top: 1px solid #ddd;
        display: flex;
        align-items: center;
        justify-content: space-around
    }

@media (max-width: 768px) {
    .last-visit .swiper[b-0rxdc829no],
    .last-visit .swiper-wrapper[b-0rxdc829no] {
        min-height: unset;
    }
    }
/* /Components/Home/HomeSlider.razor.rz.scp.css */
.home-slider[b-orjh29oli9] {
    width: 100%;
    height: 800px;
    padding: 30px 0;
    background-image: url("/images/slider/image1.jpg");
    background-size: cover;
    background-position: center center;
}
    .home-slider .search[b-orjh29oli9] {
        width: 100%;
        background-image: url('/images/slider/image2.png');
        background-size:cover;
        margin:30px 0;
    }
    .home-slider .search input[b-orjh29oli9]{
        height:50px;
        background-color:var(--base-color-2);
    }
    .home-slider .about-us-slider[b-orjh29oli9]{
        width:100%;
        min-height:100px;
        display:flex;
        justify-content:space-around;
        align-items:center;
    }
/*/////////////////////////////*/
@media (max-width: 767.98px) {
    .home-slider[b-orjh29oli9] {
        height:400px;

    }
        .home-slider  .about-us-slider[b-orjh29oli9] {
            display: none
        }
}
.mc-index-slider .content[b-orjh29oli9],
.mc-index-slider .menu-cp[b-orjh29oli9],
.mc-index-slider .menu-mob[b-orjh29oli9] {
    position: absolute;
    top: 0;
    left: 0;
}


.mc-index-slider[b-orjh29oli9] {
    width: 100%;
    height: 85%;
    text-shadow: 0 0 15px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

    .mc-index-slider .content[b-orjh29oli9] {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

        .mc-index-slider .content .slide[b-orjh29oli9] {
            width: 100%;
            height: 100%;
            background-position: center top;
            background-size: cover;
            animation-duration: 8s;
            animation-timing-function: linear;
            position: absolute;
            top: 0;
            left: 0;
        }
            .mc-index-slider .content .slide.mc-zoomout[b-orjh29oli9] {
                animation-name: mc-zoomout-b-orjh29oli9;
            }

            .mc-index-slider .content .slide.mc-zoomin[b-orjh29oli9] {
                animation-name: mc-zoomin-b-orjh29oli9;
            }

            .mc-index-slider .content .slide[b-orjh29oli9]::after {
                content: "";
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background: var(--base-color-6);
                opacity: .7;
            }

        .mc-index-slider .content .caption[b-orjh29oli9] {
            width: 100%;
            min-height: 300px;
            z-index: 20;
            position: absolute;
            right: 20px;
            top: 100px;
            padding: 10px;
        }
            .mc-index-slider .content .caption h3[b-orjh29oli9],
            .mc-index-slider .content .caption p[b-orjh29oli9] {
                color: #fff;
                margin: 20px 0;
            }

@keyframes sroll-b-orjh29oli9 {
    0% {
        margin-top: 40px;
    }

    100% {
        margin-top: 50px;
    }
}


@keyframes mc-zoomin-b-orjh29oli9 {
    100% {
        transform: scale(1.3);
    }
}

@keyframes mc-zoomout-b-orjh29oli9 {
    0% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.menu-cp[b-orjh29oli9] {
    width: 100%;
    min-height: 80px;
    transition: all .5s;
    text-shadow: 0 0 15px rgba(0,0,0,0.6);
    background-color: transparent !important;
    padding-top: 20px;
    z-index: 100;
}
/*//////////////////////////////*/





/*/////////////////////////////////////////////*/
.offcanvas-body ul li[b-orjh29oli9] {
    height: 30px;
    margin: 10px 0;
}
/*/////////////////////////////*/
@media screen and (max-width:768px) {
    .mc-index-slider .content .caption[b-orjh29oli9] {
        width: 100%;
        min-height: 300px;
        z-index: 20;
        position: absolute;
        right: 0;
        top: 50px;
        left: 10px;
    }

        .mc-index-slider .content .caption h2[b-orjh29oli9] {
            font-size: 1.5rem;
        }

    .mc-index-slider .caption .btn-slider[b-orjh29oli9] {
        flex-direction: column;
    }

        .mc-index-slider .caption .btn-slider button[b-orjh29oli9] {
            margin: 20px 0;
        }

    .mc-index-slider .content .slide.mc-zoomout[b-orjh29oli9],
    .mc-index-slider .content .slide.mc-zoomin[b-orjh29oli9] {
        animation-name: none;
    }
}

@media screen and (max-width:400px) {

    .mc-index-slider .content span[b-orjh29oli9] {
        width: 250px;
        height: 250px;
        font-size: 12px;
        padding-top: 90px;
    }
}
/* /Components/Home/HomeTest.razor.rz.scp.css */
.test[b-pasva4mz6x]{
    width:100%;
    background-image:url('/images/slider/back5.png');
    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;
    padding:30px 0;
}
    .test input[b-pasva4mz6x] {
        height: 50px;
        width: 70%;
        margin: 0 auto;
        border-radius: 30px;
        border: 3px solid var(--base-color-2);
    }
/* /Components/Home/OurCoursesHome.razor.rz.scp.css */
.our-courses[b-tl8biy4fy2] {
    width: 100%;
    min-height: 500px;
    /*background-image: url('/images/slider/back12.png');*/
    background-size: cover;
    padding: 30px 0;
}
.our-courses .swiper[b-tl8biy4fy2],
.our-courses .swiper-wrapper[b-tl8biy4fy2]{
    height:600px;
}
    .our-courses .swiper-slide[b-tl8biy4fy2] {
        margin: 0 10px;
        width: 300px;
        height:550px;
    }
        .our-courses .swiper-slide .item[b-tl8biy4fy2] {
            width: 100%;
            min-height: 500px;
            border:1px solid var(--base-color-0);
            background-color:#fff;
            border-radius:20px;
            padding: 10px ;
        }
    .our-courses .swiper-slide .item .image[b-tl8biy4fy2] {
        width:100%;
        height:200px;
        background-size:cover;
        background-position:center center;
        border-radius:var(--border-radius);
        margin-bottom:10px;
    }
            .our-courses .swiper-slide .item .caption[b-tl8biy4fy2] {
                width: 100%;
                height: 250px;
                overflow: hidden;
                padding: 10px 0;
                overflow: hidden; 
                text-overflow: ellipsis;
                display: -webkit-box; 
                -webkit-line-clamp: 4; 
                -webkit-box-orient: vertical;
            }


.our-courses .swiper-slide .item .caption p[b-tl8biy4fy2] {
    color: #808080;
}

                .our-courses .swiper-slide .item i[b-tl8biy4fy2] {
                    font-size: 20px;
                    color: var(--base-color-8);
                    margin-left: 10px;
                }
            .our-courses .swiper-slide .item .price-product[b-tl8biy4fy2] {
                width: 100%;
                height: 50px;
                border-top: 1px solid var(--base-color-0);
                display: flex;
                align-items: center;
                justify-content: space-around
            }
.navigation-wrapper[b-tl8biy4fy2]{
    height:100px;
    background-color:red
    
}
/* /Components/Layout/DashboardLayout.razor.rz.scp.css */
.dashboard-layout[b-nnzkomauvg] {
    width: 100%;
    min-height: 500px;
    height: auto;
    padding: 50px 0;
}

    .dashboard-layout .content-dashboard[b-nnzkomauvg] {
        width: 100%;
        padding: 10px;
        height: auto;
        border: 1px solid #ddd;
        border-radius: 10px;
    }

.sidbar-dashboard[b-nnzkomauvg],
.dashboard-layout .content-dashboard[b-nnzkomauvg] {
    width: 100%;
    border-radius: 20px;
    padding: 10px;
}
/*/////////////////////////////////sidebar*/
.sidbar-dashboard[b-nnzkomauvg] {
    background-color: #ffff;
    border-radius: 10px;
    overflow-y: auto;
    height: auto;
}

    .sidbar-dashboard .menu-item[b-nnzkomauvg] {
        width: 100%;
        transition: all .5s;
        height: 80px;
        cursor: pointer;
        padding: 20px;
        border-radius:10px;
        border: 1px solid #ddd;
        margin-bottom:20px;
        transition: background-color 0.3s ease, color 0.3s ease;
        display:flex;
        justify-content:flex-start;
        align-items:center;
    }

        .sidbar-dashboard .menu-item i[b-nnzkomauvg] {
            color: var(--base-color-0);
        }




        .sidbar-dashboard .menu-item a[b-nnzkomauvg],
        .sidbar-dashboard .menu-item:hover[b-nnzkomauvg] {
            background-color: var(--base-color-2);
        }

        .sidbar-dashboard .menu-item i[b-nnzkomauvg] {
            font-size: 20px;
            margin-left: 10px;
        }

    .sidbar-dashboard a:hover[b-nnzkomauvg] {
        transform: scale(1.01)
    }

    .sidbar-dashboard .person[b-nnzkomauvg] {
        width: 100%;
        height: 100px;
        border-bottom: 1px solid #ddd;
        text-align: center;
        padding: 30px;
    }

        .sidbar-dashboard .person .info[b-nnzkomauvg] {
            width: 100%;
            height: 160px;
            text-align: center;
        }





/*///////////////////////////////////////////////.content-dashboard */
.content-dashboard[b-nnzkomauvg] {
    min-height: 500px;
}
/*/////////////////////////////////.btn-exit*/
.btn-exit[b-nnzkomauvg] {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: var(--base-color-0);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* /Components/Layout/Footer.razor.rz.scp.css */
.footer[b-lb40w068py] {
    width: 100%;
    min-height: 300px;
    position: relative;
    background-color:var(--base-color-2);
}
    .footer .content[b-lb40w068py]{
        width:100%;
        min-height:300px;
        background-color:var(--base-color-2);
        background-image:url('../../images/slider/1.png');
        background-size:contain;
        background-position:left bottom;
        background-repeat:no-repeat;
        padding:30px 0;
      
   
    }
        .footer .content ul[b-lb40w068py]{
            list-style:none;
            margin:0;
            padding:0;
        }
            .footer .content ul li[b-lb40w068py]{
                padding:5px 0;
            }
            .footer .content ul li i[b-lb40w068py] {
                color: var(--base-color-1);
                font-size: 20px;
            }
            .footer .copy-right[b-lb40w068py] {
                width: 100%;
                height:50px;
                background-color: var(--base-color-3);
                display: flex;
                justify-content: center;
                align-items: center;
                padding-top: 20px;
            }
    .footer .copy-right i[b-lb40w068py]{
        color:red;
        font-size:18px;
    }
    .footer .follow-us[b-lb40w068py] {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        transition: all .5s;
    }

        .footer .follow-us i[b-lb40w068py] {
            font-size: 20px;
            color: var(--base-color-1);
            margin: 0 10px;
            transition: all .5s;
        }

.follow-us i:hover[b-lb40w068py],
 .follow-us img:hover[b-lb40w068py] {
    transform: scale(1.1)
}
/* /Components/Layout/Hooshang.razor.rz.scp.css */

.chat-toggle[b-1h2pjm7vrc] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--base-color-0);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    animation: pulse-b-1h2pjm7vrc 2s infinite; /* 2s مدت زمان هر چرخه انیمیشن */
    transition: transform 0.3s ease; /* برای هموار شدن انیمیشن */
}
    .chat-toggle i[b-1h2pjm7vrc] {
        color: white;
        font-size: 24px;
    }
/* انیمیشن نبض */
@keyframes pulse-b-1h2pjm7vrc {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}



    /* توقف انیمیشن هنگام hover (اختیاری) */
    .chat-toggle:hover[b-1h2pjm7vrc] {
        animation: none;
        transform: scale(1.05);
    }

/* پنل چت */
.chat-panel .welcom-hooshang[b-1h2pjm7vrc]{
    width:100%;
    padding:10px 0;
    color:#000;
    font-weight:bold;
    /*background-color:var(--base-color-2);*/

}
.chat-panel[b-1h2pjm7vrc] {
    width: 30%;
    height: 100%;
    background-image: url('/images/backHooshang.png');
    background-size: contain;
    background-position: center center;
    position: fixed;
    top: 0;
    right: -30%; /* مخفی شدن در ابتدا */
    overflow-y: scroll; /* فعال کردن اسکرول عمودی */
    background-color: #f9f9f9;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
    .chat-panel .wrapper-chat[b-1h2pjm7vrc] {
        height: 60%;
        overflow-y: scroll;
        scrollbar-width: none; 
        -ms-overflow-style: none;
        padding:20px 0;
    }
    .chat-panel.active[b-1h2pjm7vrc] {
        right: 0; /* نمایش پنل */
    }
@media (max-width: 768px) {
    .chat-panel.active[b-1h2pjm7vrc] {
        width: 100%
    }
}
        .chat-panel.active ~ .chat-toggle[b-1h2pjm7vrc]{
            display:none
        }

        /* باکس‌های چت */
        .chat-box[b-1h2pjm7vrc] {
            height:100%;
            flex: 1;
            padding: 20px;
            overflow-y: auto;
        }

.user-message[b-1h2pjm7vrc], 
.ai-message[b-1h2pjm7vrc] {
    min-height:50px;
    margin-bottom: 10px;
    padding: 10px 10px;
    border-radius: 8px;
    max-width: 80%;

}

.user-message[b-1h2pjm7vrc] {
    background-color: #e3f2fd;
    margin-left: auto;
    text-align: right;
}

.ai-message[b-1h2pjm7vrc] {
    background-color: #f1f1f1;
    margin-right: auto;
    text-align: right;
}

/* دکمه بستن */
.close-chat[b-1h2pjm7vrc] {
  width:30px;
  height:30px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:20px;
  cursor:pointer;
  background-color:var(--base-color-0)
}
.close-chat i[b-1h2pjm7vrc]{
    font-size:30px;
    color:#fff;
}
/*wrapper-chat-css////////////////////////////////////////*/
.wrapper-send-chat[b-1h2pjm7vrc]{
    width:100%;
    height:10%;
    background-color:var(--base-color-2);
    position:absolute;
    left:0;
    bottom:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;

}
    .wrapper-send-chat textarea[b-1h2pjm7vrc]{
        width:90%;
        height:50px;
        border-radius:20px;
        border:none;
        padding:5px;

    }
    .wrapper-send-chat .send-icon[b-1h2pjm7vrc]{
        width:10%;
        text-align:left

    }
        .wrapper-send-chat .send-icon i[b-1h2pjm7vrc]{
            font-size:25px;
            color:var(--base-color-0)
        }
        /*dorpdown-models-css/////////////////////////////////////*/
        .dropdown-models .dropdown-menu[b-1h2pjm7vrc] {
            width: 100%;
        }
.dropdown-models .dropdown-menu .dropdown-item[b-1h2pjm7vrc]{
    width:100%;
    background-color:var(--base-color-2);
    margin:10px 0;
    padding:10px;
    cursor:pointer;
    z-index:100;
    
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-7enzt6y1bi] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-7enzt6y1bi] {
    flex: 1;
}

.sidebar[b-7enzt6y1bi] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-7enzt6y1bi] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-7enzt6y1bi]  a, .top-row[b-7enzt6y1bi]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-7enzt6y1bi]  a:hover, .top-row[b-7enzt6y1bi]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-7enzt6y1bi]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-7enzt6y1bi] {
        justify-content: space-between;
    }

    .top-row[b-7enzt6y1bi]  a, .top-row[b-7enzt6y1bi]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-7enzt6y1bi] {
        flex-direction: row;
    }

    .sidebar[b-7enzt6y1bi] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-7enzt6y1bi] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-7enzt6y1bi]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-7enzt6y1bi], article[b-7enzt6y1bi] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-7enzt6y1bi] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-7enzt6y1bi] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-menu-top[b-kysrcy87dp] {
    width: 100%;
    min-height: 50px;
    background-color: #FFF0F0;
}
    .nav-menu-top .follow-us[b-kysrcy87dp]{
        width:100%;
        height:50px;
        display:flex;
        justify-content:flex-start;
        align-items:center;
        transition:all .5s;
    }
       
    .nav-menu-top i[b-kysrcy87dp] {
        font-size: 20px;
        color: var(--base-color-0);
        margin: 0 10px;
        transition: all .5s;
    }
    .nav-menu-top .follow-us i:hover[b-kysrcy87dp],
    .nav-menu-top .follow-us img:hover[b-kysrcy87dp] {
        transform: scale(1.1)
    }
    .nav-menu-top .nav-contact-us[b-kysrcy87dp] {
        height: 50px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end
    }
    /*///////////////////*/
    .menu-default[b-kysrcy87dp] {
        width: 100%;
        min-height: 80px;
        background-color: var(--base-color-0);
    }
.menu-default img[b-kysrcy87dp]{
    width:100%;
    padding-top:10px;
}
    .menu-default .items[b-kysrcy87dp],
    .menu-default .portal[b-kysrcy87dp]{
        padding-top:20px;
    }
    .menu-default .items ul[b-kysrcy87dp] {
        display: flex;
        list-style: none;
        align-items: center;
    }
    .menu-default .items ul li[b-kysrcy87dp]{
        padding:0px 10px;
    }
    .menu-default .portal i[b-kysrcy87dp]{
        font-size:20px;
        margin:0 5px;
        color:var(--base-color-2)
    }
/*///////////////////////////////////////menu-mob*/

/* /Components/Layout/NavMenuMobile.razor.rz.scp.css */
.kaveh-menu-mobile[b-d038yjrao1] {
    width: 100%;
    position: relative;
    height:auto;
}

    .kaveh-menu-mobile .top-menu[b-d038yjrao1] {
        background-color: var(--base-color-2);
        min-height: 50px;
        height: auto;
        position: relative;
        z-index: 1;
    }

        .kaveh-menu-mobile .top-menu .search[b-d038yjrao1] {
            position: relative;
            margin-top: 5px;
        }

            .kaveh-menu-mobile .top-menu .search[b-d038yjrao1],
            .kaveh-menu-mobile .top-menu .search input[b-d038yjrao1] {
                width: 100%;
            }

                .kaveh-menu-mobile .top-menu .search input[b-d038yjrao1] {
                    border-radius: 10px;
                    border: none;
                    font-size: 14px;
                }

                    .kaveh-menu-mobile .top-menu .search input:focus[b-d038yjrao1],
                    .kaveh-menu-mobile .top-menu .search input[b-d038yjrao1] {
                        outline: none;
                        border-color: inherit;
                        -webkit-box-shadow: none;
                        box-shadow: none;
                    }

                .kaveh-menu-mobile .top-menu .search input[b-d038yjrao1],
                .kaveh-menu-mobile .top-menu .search .submit[b-d038yjrao1] {
                    position: absolute;
                    height: 35px;
                    top: 10px;
                    left: 0;
                }

                .kaveh-menu-mobile .top-menu .search .submit[b-d038yjrao1] {
                    width: 40px;
                    background: #f8f8f8;
                    border-radius: 30px 0 0 30px;
                    padding-top: 7px;
                    text-align: center;
                    cursor: pointer;
                    font-size: 17px;
                }
    .kaveh-menu-mobile .social-media-menu[b-d038yjrao1] {
        width: 100%;
        height: 100%;
        padding-top: 10px;
    }

        .kaveh-menu-mobile .social-media-menu i[b-d038yjrao1] {
            font-size: 20px;
            margin: 0 10px;
            transition: all .5s;
            color: var(--base-color-1)
        }
        /* //////////////////////////////////////// */

        .kaveh-menu-mobile .top-menu .logo[b-d038yjrao1] {
            width: 30px;
            height: 30px;
            background: #fff;
            border-radius: 10px;
            text-align: center;
            margin-top: 18px;
        }

            .kaveh-menu-mobile .top-menu .logo img[b-d038yjrao1] {
                width: 16px;
                height: 16px;
            }


 
    /* ///////////////////////////////////// */
    .kaveh-menu-mobile .icons .icon[b-d038yjrao1] {
        position: relative;
        width: 30px;
        height: 30px;
        float: right;
        margin-top: 15px;
        cursor: pointer;
    }

  
/* //////////////////////////////////// */
    .kaveh-menu-mobile .menu[b-d038yjrao1] {
        padding: 10px 0;
    }
.kaveh-menu-mobile .menu a[b-d038yjrao1] {
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}
.kaveh-menu-mobile-part-two .menu-but[b-d038yjrao1]{
    background-color:var(--base-color-2);
    border:none;
}
.kaveh-menu-mobile-part-two .menu-but[b-d038yjrao1] {
    color: #000;
}

.kaveh-menu-mobile .menu-but .icon[b-d038yjrao1] {
    font-size: 30px;
    color: var(--base-color-1);
}



/* //////////////////////////////////////// */

.kaveh-menu-mobile .dropdown-item[b-d038yjrao1] {
    color: rgb(121, 119, 119) !important;
    min-height: 50px;
    margin: 10px 0;
    padding: 10px;
    /*background: #fff;*/
    border-radius: 10px;
    border-bottom:1px solid var(--base-color-3)
}

    .kaveh-menu-mobile .dropdown-item img[b-d038yjrao1] {
        max-width: 60px;
        max-height: 60px;
        border-radius: 100%;
        margin: 5px 0;
    }

.kaveh-menu-mobile .dropdown-menu[b-d038yjrao1] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #D6D6D6;
    padding: 10px;
}

.kaveh-menu-mobile .offcanvas[b-d038yjrao1] {
    background: #f8f8f8;
}

.kaveh-menu-mobile .offcanvas-body[b-d038yjrao1] {
  
}



/*///////////////////////////////////////////////////  .kaveh-menu-mobile .bottom-menu    ////////*/
.kaveh-menu-mobile-part-two[b-d038yjrao1] {
    width: 100%;
    height: 50px;
    background-color: var(--base-color-2);
}

    .kaveh-menu-mobile-part-two .list-icon[b-d038yjrao1] {
        overflow: hidden;
        position: relative;
        text-align: left;
    }


                .kaveh-menu-mobile-part-two .list-icon  i[b-d038yjrao1] {
                    display: inline-block;
                    font-size: 20px;
                    margin: 0 10px; 
                    color:var(--base-color-1);
                }
.count-cart[b-d038yjrao1] {
    width: 20px;
    height: 20px;
    background-color: #E5FCE5;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: 10px;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}
/* /Components/Pages/AboutUs.razor.rz.scp.css */
.about-us[b-5j252t69oq] {
    width: 100%;
    min-height: 500px;
    padding-bottom: 30px;
}

  
/*/////////////////////////progress*/
.chart-progress[b-5j252t69oq] {
    width: 100%;
    min-height: 400px;
    padding: 30px 0;
    background-image: url('../../images/slider/back12.png');
    background-size: cover;
}

    .chart-progress .progress[b-5j252t69oq] {
        margin: 30px 0;
    }
/*/////////////////////////////////////////////certificate*/
.certificate[b-5j252t69oq] {
    width: 100%;
    min-height: 400px;
    padding: 30px 0;
    background-image: url('../images/slider/image2.png');
    background-size: contain;
    background-repeat:no-repeat;
    background-position: center center;
}

   
/*///////////////contactUs css///*/
.contact-us[b-5j252t69oq] {
    width: 100%;
    min-height: 500px;
}

    .contact-us .main[b-5j252t69oq] {
        width: 100%;
        min-height: 500px;
        margin: 30px 0;
        background-image: url('../images/slider/back17.png');
        background-size: contain;
        background-position: center right;
        background-repeat: no-repeat;
        color: #000;
    }

        .contact-us .main .image[b-5j252t69oq] {
            width: 100%;
            height: 500px;
            background-size: cover;
            background-position: center center;
        }

        .contact-us .main .form-contact[b-5j252t69oq] {
            width: 100%;
            height: 500px;
            padding: 30px 0;
            color: #fff;
        }

            .contact-us .main .form-contact input[b-5j252t69oq] {
                height: 40px;
            }

            .contact-us .main .form-contact textarea[b-5j252t69oq] {
                max-height: 200px;
            }

    .contact-us .social[b-5j252t69oq] {
        width: 100%;
        min-height: 50px;
        padding: 30px;
    }

        .contact-us .social .item[b-5j252t69oq] {
            width: 100%;
            height: 250px;
            background-color: #ddd;
            float: left;
        }

            .contact-us .social .item .image-contact[b-5j252t69oq] {
                width: 100%;
                height: 250px;
                background-size: cover;
                background-position: center center;
            }

            .contact-us .social .item .social-contact[b-5j252t69oq] {
                width: 100%;
                height: 250px;
                background-color: var(--base-color-2);
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
            }

                .contact-us .social .item .social-contact .icon[b-5j252t69oq] {
                    width: 70px;
                    height: 70px;
                    border-radius: 100%;
                    border: 2px solid var(--base-color-3);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                    .contact-us .social .item .social-contact .icon i[b-5j252t69oq] {
                        font-size: 25px;
                        color: var(--base-color-3)
                    }
/*///////////////////////////////////////////teams css*/

.team[b-5j252t69oq] {
    width: 100%;
    min-height: 500px;
    padding-bottom: 30px;
}

    .team .item[b-5j252t69oq] {
        width: 100%;
        min-height: 300px;
        margin: 10px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .team .image[b-5j252t69oq] {
            width: 150px;
            height: 150px;
            border-radius: 100%;
            margin: 20px 0;
            padding: 10px;
            transition: all .2s;
        }

    .team .image:hover[b-5j252t69oq] {
        transform: scale(1.05);
        padding: 0;
    }

    .team .image .person[b-5j252t69oq] {
        width: 150px;
        height: 150px;
        border-radius: 100%;
        background-size: cover;
        background-position: center center;
    }

    .team .main .item .name[b-5j252t69oq] {
        width: 100%;
        height: 50px;
        text-align: center;
    }

    .team .main .item .position[b-5j252t69oq] {
        width: 100%;
        height: 50px;
        text-align: center;
    }
/* /Components/Pages/Auth.razor.rz.scp.css */
.login[b-mnjr3nnxmu] {
    width: 100%;
    min-height: 700px;
    background-image: url('../images/slider/class.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

    .login .form-login[b-mnjr3nnxmu] {
        width: 100%;
        min-height: 300px;
        backdrop-filter: blur(2px) saturate(140%);
        -webkit-backdrop-filter: blur(2px) saturate(140%);
        background-color: rgba(0, 205, 205, 0.5);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.125);
        margin-top: 50px;
        color: #fff;
        padding: 20px;
        margin:20px 0;
        border-radius: 20px;
    }

        .login .form-login h3[b-mnjr3nnxmu] {
            position: relative;
            z-index: 2;
        }
/* /Components/Pages/BlogDetail.razor.rz.scp.css */
.content[b-n6dm6ml0qu]
{
    width:100%;
    min-height:500px;
    padding:30px 0;
}
.content .image-content[b-n6dm6ml0qu]{
    width:100%;
    height:300px;
    margin:0 auto;
}
    .content .image[b-n6dm6ml0qu] {
        width: 100%;
        height: 300px;
        background-size:cover;
        background-position:center center;
        border-radius:5px;
        margin: 0 auto;
        float:left
    }
    .content .info[b-n6dm6ml0qu] {
        width: 100%;
        height: 80px;
        box-shadow: 9px 10px 6px -9px rgba(0,132,89,1);
        border-radius: 10px;
        margin: 0 auto;
        padding-top: 20px;
    }
    .content .info ul[b-n6dm6ml0qu]{
        list-style:none;
        margin:0;
        padding:0;
        display:flex;
        justify-content:space-around;
        align-items:center;
    }
/* /Components/Pages/Blogs.razor.rz.scp.css */
.blogs[b-kcvwp8g49m]{
    width:100%;
    min-height:500px;
    padding:30px 0;
}
.blogs .item-blog[b-kcvwp8g49m] {
    width: 100%;
    min-height: 400px;
    background-color:#f8f8f8;
    border-radius:10px;
    margin:10px 0;
}

    .blogs .item-blog .image[b-kcvwp8g49m] {
        width: 100%;
        height: 200px;
        background-size: cover;
        background-position: center center;
        transition: all .5s;
        border-radius: 10px;
    }

        .blogs .item-blog .image:hover[b-kcvwp8g49m] {
            transform: scale(1.02)
        }

    .blogs .item-blog .info[b-kcvwp8g49m] {
        width: 100%;
        height: 100px;
        overflow: hidden;
        margin: 10px 0;
        text-align: center;
        padding: 20px 0;
    }

        .blogs .item-blog .info i[b-kcvwp8g49m],
        .blogs .item-blog .info .date[b-kcvwp8g49m] {
            color: var(--base-color-1)
        }
    .blogs .item-blog  .caption[b-kcvwp8g49m]{
        height:100px;
        overflow:hidden;
    }
/* /Components/Pages/CallBackPayment.razor.rz.scp.css */
.call-back[b-xr06m1vrn5]{
    width:100%;
    min-height:100px;
    padding:30px 0;
}
    .call-back .status-box[b-xr06m1vrn5] {
        width: 100%;
        min-height: 150px;
        margin: 30px 0;
        backdrop-filter: blur(2px) saturate(140%);
        -webkit-backdrop-filter: blur(2px) saturate(140%);
        background-color: rgba(0, 205, 205, 0.8);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.125);
        color: #000;
        float: left;
        text-align:center;
        padding:20px 0;
    }
    .call-back .status-box i[b-xr06m1vrn5]{
        font-size:80px;
    }
/* /Components/Pages/Checkout.razor.rz.scp.css */
.checkouts[b-9yoaa5stro] {
    width: 100%;
    min-height: 500px;
    position:relative;

}
    .checkouts .bag[b-9yoaa5stro] {
        width: 100%;
        min-height: 500px;
        padding: 30px 0;
        background-image: url('../images/slider/cart.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        position:relative
    }
        .checkouts .bag .item[b-9yoaa5stro] {
            width: 100%;
            height: 150px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin: 30px 0;
            backdrop-filter: blur(2px) saturate(140%);
            -webkit-backdrop-filter: blur(2px) saturate(140%);
            background-color: rgba(0, 205, 205, 0.8);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.125);
            color: #000;
            float:left;
        }
    .checkouts .bag .item img[b-9yoaa5stro]{
        width:150px;
        position:relative;
        z-index:100;
    }
    .checkouts .bag .item .icon i[b-9yoaa5stro]{
        font-size:25px;
        color:red;
        cursor:pointer;
    }
    .checkouts .bag .payment[b-9yoaa5stro] {
        width:100%;
        height:200px;
        display:flex;
        align-items:center;
        justify-content:space-around;
    }
        /*   price*/

    .checkouts .bag   .final-price[b-9yoaa5stro] {
        width: 100%;
        min-height: 50px;
        border-top: 1px solid var(--base-color-3);
        border-bottom: 1px solid var(--base-color-3);
        display: flex;
        justify-content: center;
        align-items: center;
        padding:30px 0;
        margin:30px 0;
    }


  
    /*gatway*//**/
.gateway-list[b-9yoaa5stro] {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    backdrop-filter: blur(2px) saturate(140%);
    -webkit-backdrop-filter: blur(2px) saturate(140%);
    background-color: rgba(0, 205, 205, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    direction: rtl;
}

.gateway-item[b-9yoaa5stro] {
    display: flex;
    background-color:var(--base-color-2);
    align-items: center;
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 15px;
    transition: background-color 0.3s;
    cursor: pointer;
}

    .gateway-item:hover[b-9yoaa5stro] {
       background-color:var(--base-color-3);
 
    }

    .gateway-item input[type="radio"][b-9yoaa5stro] {
        margin-left: 15px;
        transform: scale(1.2);
        cursor: pointer;
    }

.gateway-label[b-9yoaa5stro] {
    flex-grow: 1;
    font-weight: 600;
    color: #34495e;
    cursor: pointer;
}

.gateway-logo[b-9yoaa5stro] {
    width: 50px;
    height: auto;
    margin-left: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
/* /Components/Pages/ContactUs.razor.rz.scp.css */
.contact-us[b-9aejmpbg26]{
    width:100%;
    min-height:500px;
}
    .contact-us .main[b-9aejmpbg26] {
        width: 100%;
        min-height: 500px;
        margin: 30px 0;
        background-image: url('../images/slider/back17.png');
        background-size: contain;
        background-position: center right;
        background-repeat: no-repeat;
        color:#000;
    }

 .contact-us .main .image[b-9aejmpbg26] {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center center;
}

        .contact-us .main .form-contact[b-9aejmpbg26] {
            width: 100%;
            height: 500px;
            padding: 30px 0;
          
            color: #fff;
        }

            .contact-us .main .form-contact input[b-9aejmpbg26] {
                height: 40px;
            }
        .contact-us .main .form-contact  textarea[b-9aejmpbg26]{
            max-height:200px;
        }
        .contact-us .social[b-9aejmpbg26]{
            width:100%;
            min-height:50px;
            padding:30px;
        }
    .contact-us .social .item[b-9aejmpbg26]{
        width:100%;
        height:250px;
        background-color:#ddd;
        float:left;
    }
        .contact-us .social .item .image-contact[b-9aejmpbg26] {
            width:100%;
            height:250px;
            background-size:cover;
            background-position:center center;
        }
        .contact-us .social .item .social-contact[b-9aejmpbg26] {
            width: 100%;
            height: 250px;
            background-color: var(--base-color-2);
            display:flex;
            justify-content:center;
            align-items:center;
            flex-direction:column;
        }
        .contact-us .social .item .social-contact .icon[b-9aejmpbg26]{
            width:70px;
            height:70px;
            border-radius:100%;
            border:2px solid var(--base-color-3);
            display:flex;
            justify-content:center;
            align-items:center;
        }
            .contact-us .social .item .social-contact .icon i[b-9aejmpbg26]{
                font-size:25px;
                color:var(--base-color-3)

            }
/* /Components/Pages/Logout.razor.rz.scp.css */
.auth[b-rd5zdtowbr] {
    width: 100%;
    min-height: 500px;
    padding: 30px 0;
}

    .auth .form-auth[b-rd5zdtowbr] {
        width: 100%;
        min-height: 500px;
        background-color: #f8f8f8;
        padding: 30px;
        border-radius:10px;
    }

        .auth .form-auth input[b-rd5zdtowbr] {
            height: 50px;
        }
    .auth .counter-resend[b-rd5zdtowbr] {
        width: 80px;
        height: 80px;
        border-radius: 100%;
        border: 1px dotted #dddd;
        margin:30px auto;
        display:flex;
        justify-content:center;
        align-items:center;

    }
/* /Components/Pages/PakageDetail.razor.rz.scp.css */
.pakage[b-amk02btlmb] {
    width: 100%;
    min-height: 500px;
    padding: 30px 0;
}



    .pakage .image-product[b-amk02btlmb] {
        width: 100%;
        height: 300px;
        background-size: cover;
        background-position: center center;
    }
    .pakage .information[b-amk02btlmb] {
        width: 100%;
        height: auto;
        padding: 10px 0;
        background-image: url('../images/slider/image2.png');
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        overflow: hidden
    }


    .information .table[b-amk02btlmb] {
        background-color: unset !important;
        --bs-table-bg: unset;
    }


/*///////////////////////////////////////*/
.pakage .list-textbook[b-amk02btlmb] {
    width: 100%;
    height:auto;
    padding: 30px 0;
    position: relative;
}


    /*////////items*/
    .list-textbook .items[b-amk02btlmb] {
        width: 100%;
        min-height: 500px;
        padding: 30px 0;
    }

        .list-textbook .items .item[b-amk02btlmb] {
            width: 100%;
            min-height: 350px;
            padding: 30px;
            border: 2px solid var(--base-color-3);
            margin: 10px 0;
        }

            .list-textbook .items .item .image-pakage[b-amk02btlmb] {
                width: 100%;
                height: 300px;
                background-size: cover;
                background-position: center center;
            }

            .list-textbook .items .item .info[b-amk02btlmb] {
                width: 100%;
                max-height: 300px;
                background-size: contain;
                background-position: center center;
                background-repeat: no-repeat;
            }

                .list-textbook .items .item .info .caption-lesson[b-amk02btlmb] {
                    min-height:300px;
                    max-height:250px;
                    overflow:hidden;
                    margin-bottom:10px;
                }
/* /Components/Pages/ProductDetail.razor.rz.scp.css */
.product-detail[b-upgu7lmhea]{
    width:100%;
    height:auto;
}
    .product-detail .list-lessons[b-upgu7lmhea] {
        width: 100%;
        min-height: 300px;
        padding: 30px 0;
    }


        .product-detail .list-lessons .title img[b-upgu7lmhea] {
            max-width: 100px;
        }

        .product-detail .list-lessons .items .title h2[b-upgu7lmhea] {
            position: relative;
            transition: all .5s;
        }

            .product-detail .list-lessons .items .title h2[b-upgu7lmhea]::after {
                content: "";
                position: absolute;
                right: -100px;
                bottom: 22px;
                width: 90px;
                height: 5px;
                background-color: var(--base-color-3);
                border-radius: 5px;
            }


        .product-detail .list-lessons .items .video[b-upgu7lmhea],
        .product-detail .list-lessons .items .video video[b-upgu7lmhea] {
            width: 100%;
            padding:20px 0;
        }

        .product-detail .list-lessons .items .video-faq[b-upgu7lmhea] {
            width: 100%;
            min-height: 150px;
            padding: 10px 0;
        }

            .product-detail .list-lessons .items .video-faq textarea[b-upgu7lmhea] {
                max-height: 250px;
            }
    /*////////*/
        .product-detail .list-lessons .items .info-video[b-upgu7lmhea] {
            width: 100%;
            min-height: 40px;
            padding:5px 0;
            background-color: var(--base-color-2);
            margin-top: 10px;
        }

            .product-detail .list-lessons .items .info-video ul[b-upgu7lmhea] {
                display: flex;
                align-items: center;
                list-style: none;
                justify-content: space-around;
                padding-top: 5px;
            }

                .product-detail .list-lessons .items .info-video ul li i[b-upgu7lmhea] {
                    color: var(--base-color-3);
                }
/*///////////////info video end */
    .product-detail .accordion[b-upgu7lmhea] {
        --bs-accordion-border-width: 0;
    }

    .product-detail .list-lessons .accordion-item[b-upgu7lmhea] {
        padding: 20px 0;
    }

    .product-detail .accordion-body[b-upgu7lmhea] {
        border: 1px solid #f8f8f8;
    }

    .product-detail .list-lessons .accordion-header i[b-upgu7lmhea] {
        font-size: 20px;
        color: var(--base-color-0);
        margin-left: 10px;
    }

    .product-detail .list-lessons .accordion-button[b-upgu7lmhea] {
        width: 100%;
        min-height: 80px;
        background-color: var(--base-color-2);
        display: flex;
        justify-content: space-around !important;
        align-items: center;
        position: relative;
    }


        .product-detail .list-lessons .accordion-button .lock[b-upgu7lmhea]{
            position:absolute;
            left:50px;
        }
        .product-detail .list-lessons .accordion-button .icons[b-upgu7lmhea] {
            height: 80px;
            display: flex;
            justify-content: space-between !important;
            align-items: center;
        }
            .product-detail .list-lessons .accordion-button .icons span[b-upgu7lmhea]{
                min-width:100px;
            }

            .product-detail .list-lessons .accordion-button .icons i[b-upgu7lmhea] {
                font-size: 15px;
            }
/*///////*/
    .product-detail .list-lessons .summary[b-upgu7lmhea] {
        width: 100%;
        min-height: 100px;
        background-color: var(--base-color-2);
        padding: 10px;
        margin: 10px 0;
        border-radius: 5px;
    }

        .product-detail .list-lessons .summary ul[b-upgu7lmhea] {
            list-style: none;
            margin: 0;
            padding: 0;
        }

            .product-detail .list-lessons .summary ul li.student[b-upgu7lmhea] {
                border: 1px dashed var(--base-color-3);
                padding: 20px;
                text-align: center;
                margin: 10px 0;
            }

                .product-detail .list-lessons .summary ul li.student i[b-upgu7lmhea] {
                    font-size: 25px;
                    color: var(--base-color-3)
                }

    .product-detail .list-lessons .professor[b-upgu7lmhea] {
        width: 100%;
        height: 100px;
        background-color: var(--base-color-2);
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 10px 0;
        border-radius: 5px;
    }

        .product-detail .list-lessons .professor .image[b-upgu7lmhea] {
            width: 70px;
            height: 70px;
            border-radius: 100%;
            background-size: cover;
            background-position: center center;
        }

    .product-detail .list-lessons .comment[b-upgu7lmhea] {
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        height: 100px;
        background-color: var(--base-color-2);
        margin: 10px 0;
        border-radius: 5px;
    }

        .product-detail .list-lessons .comment i[b-upgu7lmhea] {
            color: var(--base-color-3)
        }
    /*/////////////////*/
    .product-detail .image-product[b-upgu7lmhea] {
        width: 100%;
        height: 400px;
        background-size: cover;
        background-position: center center;
        border: 2px solid var(--base-color-3);
        padding: 10px 0;
        margin: 0;
    }
/*//////////////////*/
.information[b-upgu7lmhea] {
    width: 100%;
    height: 300px;
    padding: 30px 0;
    background-image: url('../images/slider/image2.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

    .information .table[b-upgu7lmhea] {
        background-color: unset !important;
        --bs-table-bg: unset;
    }

    .information .titr[b-upgu7lmhea] {
        transition: all .4s;
        cursor: default;
    }

        .information .titr li:hover[b-upgu7lmhea] {
            transform: scale(1.01);
        }
/*/////////////////////////////price-style*/
.price-container[b-upgu7lmhea] {
    width:100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--base-color-8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.show-price[b-upgu7lmhea] {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.main-price[b-upgu7lmhea] {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.free-price h3[b-upgu7lmhea] {
    font-size: 20px;
    color: #28a745;
    margin: 0;
    padding: 10px;
}
.not-purchased[b-upgu7lmhea] {
    font-size: 16px;
    color: #dc3545; 
    font-weight: bold;
    margin: 10px 0;
    padding: 10px;
    border-left: 4px solid #dc3545;
    background-color: #f8d7da;
    border-radius: 4px;
}
.package-discount[b-upgu7lmhea] {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    margin: 10px 0;
    padding: 10px;
    border-left: 4px solid #dc3545;
    background-color: var(--base-color-1);
    border-radius: 4px;
}

.discount-end-date[b-upgu7lmhea] {
    font-size: 14px;
    color: #6c757d;
    margin: 5px 0;
    padding: 8px;
    background-color: #f8f9fa; 
    border-radius: 4px;
    border: 1px dashed #6c757d; 
}
/* /Components/Pages/QuestionList.razor.rz.scp.css */
.question-list[b-1o5liuv0no] {
    width: 100%;
    height: auto;
    padding-bottom:30px ;
}

    .question-list .question-box[b-1o5liuv0no] {
        width: 100%;
        min-height: 150px;
        padding: 20px;
        border: 1px solid var(--base-color-2);
        margin:10px 0;
    }

.user-info[b-1o5liuv0no] {
    width: 100%;
    padding:10px 0;
    background-color:var(--base-color-2);

    display: flex;
    justify-content: space-around;
    align-items: center;
}
.user-info i[b-1o5liuv0no]{
    font-size:15px;
    color:var(--base-color-3)
}
@media (max-width: 768px){

    .user-info[b-1o5liuv0no] {
        width: 100%;
        padding: 10px;
        background-color: var(--base-color-2);
        display: flex;
        flex-direction:column;
        align-items: flex-start;
    }
}
/* /Components/Pages/Team.razor.rz.scp.css */
.team[b-07th4mex9n] {
    width: 100%;
    min-height: 500px;
    padding-bottom: 30px;
}

    .team .main .item[b-07th4mex9n] {
        width: 100%;
        min-height: 300px;
        margin: 10px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .team .main .item .image[b-07th4mex9n] {
            width: 150px;
            height: 150px;
            border-radius: 100%;
            margin: 20px 0;
            padding: 10px;
            transition: all .2s;
        }
    .team .main .image:hover[b-07th4mex9n] {
        transform: scale(1.05);
        padding:0;
    }

            .team .main .item .image .person[b-07th4mex9n] {
                width: 150px;
                height: 150px;
                border-radius: 100%;
                background-size: cover;
                background-position: center center;
            }

        .team .main .item .name[b-07th4mex9n] {
            width: 100%;
            height: 50px;
            text-align:center;
        }

        .team .main .item .position[b-07th4mex9n] {
            width: 100%;
            height: 50px;
            text-align: center;
        }
