body {
    align-items: center;
    background-color: #f4f4f4;
    margin: 0;
}

/*html,
body {
    font-family: 'YekanBakh-Regular', sans-serif;
    overflow-x: hidden !important;
}*/

header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 25px 2%;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    position: relative;
}

.leftButtons {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.User {
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #333;
    gap: 10px;
    font-size: 14px;
    padding: 0 10px;
    min-width: 150px;
    border-radius: 10px;
    cursor: pointer;
}

.UserYellowImg {
    width: 100%;
    height: auto;
}

.UserYellowImg img {
    width: 30px;
    border-radius: 7px;
}

/* Button */
.button2 {
    background-color: #02544c72;
    color: #02544c;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 7px;
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    /* Important for absolute positioning inside */
    cursor: pointer;
    padding: 0;
}

/* Cart Badge (Small Circle) */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #02544c;
    color: white;
    width: 18px;
    height: 18px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease-in-out;
}

/* Tooltip Wrapper */
.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

/* Tooltip */
.tooltip-container {
    position: absolute;
    top: 115%;
    left: 350%;
    transform: translateX(-50%);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.tooltip-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 400px;
    max-height: 220px;
    overflow-y: auto;
    font-size: 14px;
    background-color: white;
    border-top: 3px solid #02544c;
    color: black;
    text-align: center;
    padding: 8px 4px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 5px 10px 10px 5px #3333331d;
}

/* Keep tooltip visible when hovering */
@media (min-width: 1024px) {
    .tooltip-wrapper:hover .tooltip-container {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(-5px);
        pointer-events: auto;
    }
}

.button2:hover {
    background-color: #02544c;
    color: white;
}

.Buy {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
}

.BtnBuy {
    background-color: #02544c;
    color: white;
    padding: 1px 10px;
    border-radius: 15px;
    padding-top: 5px;
    cursor: pointer;
    text-decoration: none;
}

.BtnBuy:hover {
    color: white;
}

.RemainingCount {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    background-color: rgba(203, 203, 207, 0.107);
    width: 80px;
    padding: 3px 10px;
    border-radius: 20px;
}

.NoProductImg {
    width: 100%;
    height: auto;
}

.NoProductImg img {
    width: 150px;
    height: auto;
}

.SearchSectionBody {
    width: 100%;
    height: 80px;
    background-color: white;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    justify-content: center;
}


.search-box-article {
    text-align: right;
}

.search-box-article input {
    padding: 13px 10px;
    border: none;
    border-radius: 10px;
    text-align: right;
    font-size: 14px;
    background-color: rgba(180, 179, 176, 0.107);
}

.search-box-article span {
    padding: 8px 10px;
    border: none;
    border-radius: 10px;
    text-align: center;
    background-color: rgba(180, 179, 176, 0.107);
    color: #9b9a9a;
}

.search-box-article input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #ccc !important;
    background-color: rgba(180, 179, 176, 0.107);
}

/* غیرفعال کردن کلیک روی آیکون */
.search-box-article .input-group-text {
    pointer-events: none;
}

.navbar {
    display: flex;
    position: absolute;
    right: 18%;
    top: 30%;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
    padding-right: 20px;
    padding-left: 20px;
}

.sidebar a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

.navbar a:hover {
    text-decoration: none;
    background-color: #02e8210d;
    color: #009229;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 10px;
    transition: 0.3s all ease;
}

.logo {
    width: 10em;
    height: auto;
}

.right-section a {
    cursor: pointer;
}

.hamburger {
    display: none;
    cursor: pointer;
    border: none;
    background: none;
    padding: 10px;
    text-align: center;
}


.sidebar {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    top: 0;
    right: -300px;
    width: 290px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    padding: 20px;
    z-index: 1000;
}

.sidebar.open {
    right: 0;
}

.sidebar .close-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    font-size: 30px;
    width: 50px;
    height: 50px;
    text-align: center;
    padding-top: 5px;
}

.sidebar .SearchSectionBody {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: -5px;
    top: 750px;
}

.sidebar1 {
    flex-direction: row-reverse;
}


.sidebar-content ul {
    display: flex;
    flex-direction: column;
    text-align: right;
    padding-top: 20px;
    font-size: 18px;
    color: #33333381;
}

.sidebar-content li a:hover {
    color: #02544c;
}

.sidebar-content li a {
    color: #33333381;
    font-size: 18px;
}

.sidebar-content li {
    height: 80px;
    padding: 30px 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.sidebar2 {
    flex-direction: row-reverse;
}

.Sidebar2-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.basket span {
    cursor: pointer;
}

.sidebar1,
.sidebar2 a {
    cursor: pointer;
}

.left-buttons,
.right-items {
    display: flex;
    align-items: center;
}

.button,
.menu-item {
    margin: 0 10px;
    cursor: pointer;
}

.right-items {
    display: flex;
}

.btn-dark {
    background-color: #02544c;
    color: white;
    border-radius: 5px;
}

.btn-lighter {
    background-color: #02544c72;
    color: #02544c;
    border-radius: 5px;
}

.btn-lighter:hover {
    background-color: #02544c;
    color: white;
    border-radius: 5px;
}

.transition-3 {
    transition: 0.3s all ease;
}

.zoom-image {
    width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

.zoom-image:hover {
    transform: scale(1.03);
}

.green-box {
    width: 100%;
    height: 300px;
    background-color: #02544c;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

.tooltip-profile {
    position: absolute;
    background-color: #fff;
    border-top: 3px solid #02544c;
    color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    width: 200px;
    top: 80%;
    left: 8%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    margin-top: 30px;
    z-index: 1000;
    box-shadow: 0px 0px 15px 0px #8081816b;
    height: 210px;
}

.tooltip-profile.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.TooltipProfileContent {
    display: flex;
    flex-direction: row;
    justify-content: right;
}

.TooltipProfileContent h5 {
    padding-top: 5px;
    font-size: 16px;
    margin-right: 5px;
    color: #333;
}

.TooltipProfileContent:hover {
    background-color: #02544c44;
    transition: 0.3s ease;
    border-radius: 10px;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999;
    display: none;
    transition: opacity 0.3s ease;
}

#overlay.active {
    display: block;
    opacity: 1;
}



@media (max-width: 1024px) {

    .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hamburger {
        display: block;
    }

    .logo {
        width: 8em;
    }

    .button2 {
        display: none;
    }

    .header-container {
        position: relative;
        display: flex;
        justify-content: space-between;
    }

    .MainLogo {
        position: absolute;
        left: 0px;
    }

    .User {
        display: none;
    }
}


.custom-container {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center;
}

.image-container {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    height: auto;
}



.BasketInTooltip {
    background-color: rgb(245, 244, 244);
    height: 130px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 10px;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
}

.BasketInTooltip img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    cursor: pointer;
}

.BasketInTooltip span {
    background-color: rgb(136, 2, 2);
    color: white;
    width: 20px;
    height: 20px;
    padding-top: 3px;
    border-radius: 5px;
    cursor: pointer;
}

.tooltip-content h5 {
    align-items: right;
    justify-content: right;
    padding-top: 10px;
    margin-bottom: 20px;
}

.TotalInBasket {
    background-color: #02544c;
    border-radius: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin: 5px;
}

.ProductName {
    text-decoration: none;
    color: #333;
}

.ProductName:hover {
    color: #333;
}

.TooltipAll {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.PayAllBtn {
    background-color: #02544c;
    color: white;
    border: 2px solid white;
    border-radius: 10px;
    padding: 5px;
    transition: 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.PayAllBtn:hover {
    background-color: white;
    color: #02544c;
}

.Main-section {
    display: flex;
    flex-direction: row;
}

.left-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 0;
}

.right-side {
    background-color: white;
    width: 25%;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 1px 5px 10px #3333332a;
}

.MainButtons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
}

.Sign-up {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: #02544c72;
    color: #02544c;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    width: 90px;
    height: 60px;
    margin-top: 5px;
    line-height: 0.3;
    cursor: pointer;
}

.Sign-up2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: #02544c;
    border-radius: 8px;
    color: white;
    width: 100px;
    height: 70px;
    line-height: 0.3;
    cursor: pointer;
}


.signup-style {
    background-color: #02544c;
    /* Light beige */
    color: white;
    border-radius: 8px;
    width: 100px;
    height: 70px;
}

.Login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: #02544c;
    border-radius: 8px;
    color: white;
    width: 100px;
    height: 70px;
    line-height: 0.3;
    cursor: pointer;
}

.Login2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: #02544c72;
    color: #02544c;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    width: 90px;
    height: 60px;
    margin-top: 5px;
    line-height: 0.3;
    cursor: pointer;
}

.Login p {
    padding-top: 6px;
}

.Sign-up p {
    padding-top: 6px;
}



.Signup-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    height: auto;
    margin-top: 25px;
    margin-bottom: 200px;
    box-shadow: 5px 5px 25px 5px rgba(128, 128, 128, 0.374);
}


.Email {
    width: 100%;
    height: auto;
    text-align: right;
}

.Email [for="Email"] {
    color: #333333dc;
}

.Email input {
    width: 100%;
    padding: 13px 10px;
    border: 1px solid #33333313;
    border-radius: 5px;
    text-align: right;
    font-size: 14px;
    background-color: rgba(143, 143, 173, 0.107);
}


.Email input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #ccc !important;
}

.Password {
    width: 100%;
    height: auto;
    text-align: right;
    margin-top: 25px;
}

.Password [for="Password"] {
    color: #333333dc;
}

.Password input {
    width: 100%;
    padding: 13px 10px;
    border: 1px solid #33333313;
    border-radius: 5px;
    text-align: right;
    font-size: 14px;
    background-color: rgba(143, 143, 173, 0.107);
}

.password-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.password-container input {
    width: 100%;
    padding: 13px 40px 13px 10px;
    /* Space for the icon */
    border: 1px solid #33333313;
    border-radius: 5px;
    text-align: right;
    font-size: 14px;
    background-color: rgba(143, 143, 173, 0.107);
}

.toggle-password {
    position: absolute;
    left: 10px;
    /* Adjust to position the icon */
    cursor: pointer;
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: center;
}

.Password input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #ccc !important;
}

.LoginBtn {
    margin-top: 30px;
    background-color: #02544c;
    color: white;
    padding-top: 23px;
    border-radius: 8px;
    width: 185px;
    height: 70px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 5px 20px 0px #02544c;
    text-decoration: none;

}

.LoginBtn:hover {
    background-color: #002b27;
    box-shadow: none;
    transform: translateY(2px);
    color: white;
}


.SignupBtn {
    margin-top: 30px;
    background-color: #02544c;
    color: white;
    padding-top: 20px;
    border-radius: 8px;
    width: 100px;
    height: 60px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 5px 20px 0px #02544c;
    text-decoration: none;

}

.SignupBtn:hover {
    background-color: #002b27;
    box-shadow: none;
    transform: translateY(2px);
    color: white;
}

.LostPassword {
    text-decoration: none;
    color: #333333dc;
    margin-top: 35px;
}

.LostPassword:hover {
    color: #333333dc;
}

.right-side ul {
    display: flex;
    flex-direction: column;
    text-align: right;
    padding-top: 20px;
    font-size: 18px;
    color: #33333381;
}

.right-side li a:hover {
    color: #02544c;
}

.right-side li {
    height: 80px;
    padding: 27px 10px;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.right-side li a {
    text-decoration: none;
    color: #33333381;
    transition: 0.3s ease;
}

.Gradient-li {
    background: linear-gradient(to right, #02544c9a, #ffffff);
    color: #02544c;
}

.profileContent {
    margin-top: 30px;
}

.profileContent img {
    border-radius: 50%;
    width: 80px;
    margin-bottom: 15px;
}

.blurred-section {
    filter: blur(3px);
    /* Blur the entire section */
}


/*page responsivness */
@media (max-width: 768px) {

    .Main-section {
        display: flex;
        flex-direction: column;
    }

    .right-side {
        display: none;
    }

    .left-side {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

}

@media (max-width: 992px) {

    .LoginBtn,
    .SignupBtn {
        width: 100%;
    }
}


.course-ticket {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: right;
    gap: 15px;
}

.Dashboard {
    display: flex;
    flex-direction: row;
}


.ticketGradient {
    background: linear-gradient(to right, #a5009dc6, #d4004ec2);
    color: white;
    border-radius: 20px;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ticketGradient i {
    font-size: 42px;
    margin-left: 20px;
}

.ticketCount {
    line-height: 0.3;
    text-align: right;
    font-size: 14px;
}

.ticketGradient:hover {
    filter: brightness(1.2);
    color: white;
}



.courseGradient {
    background: linear-gradient(to right, #150185c2, #011fffc2);
    color: white;
    border-radius: 20px;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.courseGradient svg {
    margin-left: 15px;
    margin-bottom: 20px;
}

.courseCount {
    line-height: 0.3;
    text-align: right;
    font-size: 14px;
}

.courseGradient:hover {
    filter: brightness(1.2);
    color: white;
}

.announcement-social {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.MyBasket {
    background-color: #ff5e00a4;
    color: white;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    height: auto;
    margin-bottom: 20px;
}

.MyBasketBtn {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    height: 50px;
    text-align: center;
    background-color: white;
    color: #ff5e00c3;
    border-radius: 10px;
    padding-top: 15px;
    margin-top: 10px;
    margin-bottom: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.MyBasketBtn:hover {
    background-color: #ff5e00c3;
    color: white;
}



.announcement {
    background-color: #c8c7ca25;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    height: 245px;
}


.AnnouncementHeading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 10px;
    padding-left: 4%;
    padding-right: 5%;
}

.AnnouncementHeading a {
    background-color: #cac8c48d;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    width: 35px;
    height: 35px;
    padding-top: 10px;
    color: #333;
    transition: 0.3s ease;
}

.AnnouncementHeading a:hover {
    filter: brightness(1.1);
}

.AnnouncementHeading h5 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    color: #424242;
}


.line {
    height: 10px;
    width: 92%;
    background-color: #c8c7ca0c;
    border-bottom: 1px solid #c9c6bf98;
    border-radius: 5px;
    margin-left: 4%;
    margin-right: 4%;
    margin-bottom: 10px;
}

.announcement a {
    background-color: #cac8c48d;
    color: #424242;
    margin: 5px 4%;
    padding: 10px;
    border-radius: 15px;
    font-size: 14px;
    text-align: right;
    display: inline-block;
    max-width: 800px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease;
}


.announcement a:hover {
    background-color: #c8c7ca25;
}

.Instagram {
    background: linear-gradient(to right, #ff9500d8, #ff6200d1, #d10000cd, #e20075d1, #a900cfcf, #402077d3);
    color: white;
    border-radius: 20px;
    height: 75px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5px 15px;
    margin-top: 20px;
    text-decoration: none;
}

.Instagram:hover {
    color: white;
}

.InstagramContent {
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    text-align: right;
    padding-top: 15px;
    line-height: 0.4;
}

.InstagramContent h5 {
    font-size: 16px;
}


.Telegram {
    background: linear-gradient(to right, #00a6ffd6, #007bffd4, #2300cfd1);
    color: white;
    border-radius: 20px;
    height: 75px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5px 15px;
    margin-top: 20px;
    text-decoration: none;
}

.Telegram:hover {
    color: white;
}

.TelegramContent {
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    text-align: right;
    padding-top: 15px;
    line-height: 0.4;
}

.TelegramContent h5 {
    font-size: 16px;
}

.zoom-out {
    transition: transform 0.3s ease;
}

.Instagram:hover .zoom-out,
.Telegram:hover .zoom-out {

    transform: scale(0.8);
}

.Profile-info {
    background-color: #c8c7ca25;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    height: 265px;
    padding: 10px;
}

.ProfileHeading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5px 4%;
}

.LogoutBtn {
    background-color: #eacfcfb5;
    color: rgb(179, 0, 0);
    width: 100px;
    height: 50px;
    border-radius: 15px;
    align-items: center;
    font-size: 14px;
    padding-top: 15px;
    transition: 0.3s ease;
    cursor: pointer;
}

.LogoutBtn:hover {
    background-color: rgba(125, 0, 0, 0.807);
    color: white;
}

.Username-icon {
    display: flex;
    flex-direction: row;
}

.Username-icon img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.profileName {
    line-height: 0.3;
    text-align: right;
    margin-top: 10px;
    margin-right: 5px;
    font-size: 14px;
}

.Profile-info-content {
    display: flex;
    flex-direction: column;
    padding: 5px 4%;
}

.Profile-info-content a {
    background-color: rgba(65, 65, 72, 0.789);
    color: white;
    margin-top: 15px;
    height: 50px;
    border-radius: 15px;
    align-items: center;
    padding-top: 15px;
    font-size: 14px;
    transition: 0.3s ease;
    text-decoration: none;
}

.Profile-info-content a:hover {
    filter: brightness(1.8);
}

.PhoneNumber {
    text-align: right;
    font-weight: bold;
    font-size: 14px;
    color: #009229;
}

.favorites {
    margin-top: 20px;
    background-color: #c8c7ca25;
    color: #424242;
    display: flex;
    flex-direction: column;
    height: 245px;
    border-radius: 15px;
}

.Favoriteheading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 10px;
    padding-left: 4%;
    padding-right: 5%;
}

.Favoriteheading a {
    background-color: #cac8c48d;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    width: 35px;
    height: 35px;
    padding-top: 10px;
    color: #333;
    transition: 0.3s ease;
}

.Favoriteheading a:hover {
    filter: brightness(1.1);
}

.Favoriteheading h5 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    color: #424242;
}


.FavoriteContent {
    margin-top: 20px;
    font-size: 15px;
}

.SeeProducts {
    background-color: rgba(65, 65, 72, 0.789);
    color: white;
    border-radius: 10px;
    font-size: 14px;
    width: 120px;
    height: 40px;
    margin-top: -5px;
    padding-top: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.SeeProducts:hover {
    background-color: rgba(65, 65, 72, 0.885);
    color: white;
}

.favorite-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .Profile-info {
        margin-bottom: 100px;
    }

    .announcement-social {
        margin-top: 20px;
    }

    .course-ticket {
        display: flex;
        flex-direction: row;
        margin-top: -80px
    }
}

@media (max-width: 768px) {

    .course-ticket {
        display: flex;
        flex-direction: column;
        margin-bottom: 5px;
    }

    .course-ticket span {
        width: 100%;
    }

    .Dashboard {
        display: flex;
        flex-direction: column-reverse;
    }

    .custom-container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .Telegram {
        margin-bottom: 40px;
    }

}

/*roataing span*/

.rotating-span {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.rotated {
    transform: rotate(180deg);
}

@media (max-width:1024px) {
    .left-side {
        width: 100%;
    }
}










.RestorePass-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
    margin-bottom: 200px;
    box-shadow: 5px 5px 25px 5px rgba(128, 128, 128, 0.374);
}

.RestorePass-form p {
    width: 50%;
    text-align: right;
    font-size: 16px;
    color: #333333dc;
    margin-top: 20px;
    margin-bottom: 20px;
}



.RestorePassEmail {
    width: 50%;
    height: auto;
    text-align: right;
}

.RestorePassEmail [for="RestorePass"] {
    color: #333333dc;
}

.RestorePassEmail input {
    width: 100%;
    padding: 13px 10px;
    border: 1px solid #33333313;
    border-radius: 5px;
    text-align: right;
    font-size: 14px;
    background-color: rgba(143, 143, 173, 0.107);
}


.RestorePassEmail input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #ccc !important;
}

.RestorePassBtn {
    margin-top: 30px;
    background-color: #02544c;
    color: white;
    padding-top: 20px;
    border-radius: 8px;
    width: 50%;
    height: 60px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 5px 20px 0px #02544c;
    text-decoration: none;
}

.RestorePassBtn:hover {
    background-color: #002b27;
    box-shadow: none;
    transform: translateY(2px);
    color: white;
}


@media (max-width:768px) {
    .RestorePass-form {
        width: 100%;
    }

    .RestorePass-form p {
        width: 100%;
    }

    .RestorePassEmail {
        width: 100%;
    }

    .RestorePassBtn {
        width: 100%;
    }
}