html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: auto;
    background: #fff;
    height: 1955px;
}

.container-header {
    max-width: 1600px;
    margin: auto;
    /* background: #fff; */
    height: auto;
}

header {
    background-color: #fef9ff;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 998;
    overflow: visible;
    transition: height 0.3s ease;
    /* border-bottom: 1px solid #D0D0D0; */
    height: 211px;
    /* max-width: 1600px; */
}


/* ارتفاع اولیه header برابر جمع ارتفاع بخش‌ها */
header.expanded {
    height: 211px;
    /* 60 + 70 + 40 */
}

header.expanded-scroll-top {
    height: 151px;
}

header.collapsed {
    height: 91px;
    /* فقط mid-header + down-header */
}

/*سربرگ بالایی(پوستر بالا)*/
.top-header {
    width: 100%;
    height: 60px;
    transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    overflow: hidden;
}

/* top-header وقتی مخفی میشه */
.top-header.hidden {
    height: 0;
    opacity: 0;
    transform: (-100%);
}

.top-header a img {
    display: block;
    width: 100%;
    height: 60px;
    object-fit: cover;
    object-position: center;
}

/*بخش وسطی(وسط سربرگ)*/
.mid-header {
    /* width: 100%; */
    height: 90px;
    position: relative;
    transition: top 0.3s ease;
}

/* وقتی بخش وسطی جای بخش بالایی میره */
.mid-header.fixed {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fef9ff;
    /* border-bottom: 1px solid #D0D0D0; */
}

.mid-header .ch-mid-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    height: 90px;
    align-items: center;
    gap: 50px;
}


/*بخش سمت راست وسط سربرگ(لوگو-باکس سرچ)*/
.mid-header .ch-mid-header .m-h-right {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.mid-header .ch-mid-header .m-h-right .logo {
    width: 200px;
    height: 34px;
    position: relative;
    background-color: #fceffe;
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: center;
    border-radius: 4px;
}

.mid-header .ch-mid-header .m-h-right .logo h1 {
    display: block;
    color: #8c3ca5;
}

.mid-header .ch-mid-header .m-h-right .logo a {
    display: flex;
    z-index: 1000;
    width: 100%;
    justify-content: center;
}

.logo::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    border-bottom: 3px double #8c3ca5;
    border-right: 3px double #8c3ca5;
    bottom: 4px;
    right: 4px;
    transition: all 0.2s ease-in-out;
}

.logo::before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    border-top: 3px double #8c3ca5;
    border-left: 3px double #8c3ca5;
    top: 4px;
    left: 4px;
    transition: all 0.2s ease-in-out;
}

.logo:hover::after,
.logo:hover::before {
    width: 94%;
    height: 67%;
    transition: all 0.5s ease-in-out;
}

.mid-header .ch-mid-header .m-h-right .logo:hover {
    background-color: #fceffe;
    box-shadow: 0 0 20px #8c3ca5;
    transition: all 0.5s ease;
}




/* بخش وسط قسمت وسط سربرگ */
.mid-header .ch-mid-header .m-h-center {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #b25bcd;
    border-radius: 4px;
    width: 260px;
    height: 70px;
    padding: 0 10px;
}

.mid-header .ch-mid-header .m-h-center a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mid-header .ch-mid-header .m-h-center i {
    font-size: 35px;
    color: #8c3ca5;
}

.mid-header .ch-mid-header .m-h-center span {
    color: #b25bcd;
}

.mid-header .ch-mid-header .m-h-center a:hover {
    scale: 1.3;
    transition: all 0.3s ease;
}

/*بخش چپ منوی وسطی(لوکیشن)*/
.mid-header .ch-mid-header .m-h-left {
    display: flex;
    align-items: center;
}

.mid-header .ch-mid-header .m-h-left .location-box {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 34px;
    border: none;
    background-color: #fceffe;
    border-radius: 4px;
    margin-bottom: 5px;
    cursor: pointer;
}

.location-box::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    border-top: 3px double #b25bcd;
    border-right: 3px double #b25bcd;
    top: 4px;
    right: 4px;
    transition: all 0.2s ease-in-out;
}

.location-box::before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    border-bottom: 3px double #b25bcd;
    border-left: 3px double #b25bcd;
    bottom: 4px;
    left: 4px;
    transition: all 0.2s ease-in-out;
}

.location-box:hover::after,
.location-box:hover::before {
    width: 94%;
    height: 67%;
    transition: all 0.5s ease-in-out;
}

.mid-header .ch-mid-header .m-h-left .location-box:hover {
    background-color: #fceffe;
    box-shadow: 0 0 20px #b25bcd;
    transition: all 0.5s ease;
}

.mid-header .ch-mid-header .m-h-left .location-box a {
    align-items: center;
    display: flex;
    padding: 0 15px;
    margin-right: -11px;
    z-index: 1000;
}

.mid-header .ch-mid-header .m-h-left .location-box a i {
    padding: 0px 7px;
    font-size: 16px;
    color: #b25bcd;
}

.mid-header .ch-mid-header .m-h-left .location-box a span {
    color: #b25bcd;
    font: 16px;
}

/*پایین سربرگ*/
.down-header {
    width: 100%;
    height: 61PX;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 98;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.down-header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.down-header.fixed {
    position: fixed;
    top: 90px;
    right: 0;
    left: 0;
    z-index: 999;
    background: #fef9ff;
    /* border-bottom: 1px solid #D0D0D0; */
}

.down-header .ch-down-header {
    display: flex;
    /* justify-content: space-between; */
    padding: 10px;
    height: 65PX;
    align-items: center;
    gap: 25px;
    width: 100%;
    height: 100%;
}

/*بخش سمت راست پایین سربرگ*/
.down-header .ch-down-header .d-h-right {
    display: flex;
    align-items: center;
    width: 24%;
    gap: 10px;
}

.down-header .ch-down-header .d-h-right .mega-menu-header {
    display: flex;
    align-items: center;
    width: 66px;
}

/*مگامنو*/
.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu {
    cursor: pointer;
}

.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu i {
    font-size: 18px;
}

.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu span {
    font-weight: 600;
    font-size: 18px;
}

/*زیر منو های مگا منو*/
.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-text {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 37px;
}

.mega-menu::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 64.47px;
    height: 23px;
    cursor: pointer;

}

.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items {
    position: relative;
}

/*زیر منو اولی*/
.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items>ul {
    position: absolute;
    border: 1px solid #dddddd;
    width: 180px;
    top: 11px;
    right: 0;
    background-color: #f5f5f5;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    z-index: 1000;
    box-shadow: -1px 2px 2px rgba(0, 0, 0, 0.1);
}


/*شناور زیر منو اولی*/
.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu:hover .mega-menu-items>ul {
    visibility: visible;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items>ul>li {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items>ul>li:hover {
    background-color: #FFFFFF;
    color: #d48aeb;
    transition: all 0.2s ease-in-out;

}

.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items>ul>li>a {
    padding: 15px 0;
    width: 100%;
    padding-right: 10px;
}

.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items>ul>li>a:hover {
    color: #d48aeb;
}

.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items>ul>li>i {
    font-size: 13px;
}

.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items>ul>li>i#icon-mega-menu {
    font-size: 15px;
}

/*زیر منو دومی*/
.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items>ul>li>ul {
    position: absolute;
    top: -1px;
    right: 100%;
    width: 950px;
    border: 1px solid #dddddd;
    display: flex;
    padding: 10px;
    min-height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    box-shadow: -1px 2px 4px rgba(0, 0, 0, 0.1);
}

/*شناور زیر منو دومی*/
.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items>ul>li:hover>ul {
    visibility: visible;
    opacity: 1;
    transition: all 0.2s ease-in-out;

}

.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items>ul>li>ul>li {
    width: 25%;
    list-style: none;
    font-size: 13px;
    font-weight: 600;
}

.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items>ul>li>ul>li>a {
    border-right: 2px solid #d48aeb;
    padding: 0 5px;
}

.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items>ul>li>ul>li>i {
    position: absolute;
    top: 15px;
}

/*زیر منو های-زیر منوی دومی*/
.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items>ul>li>ul>li>ul {
    padding: 21px 0;
}

.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items>ul>li>ul>li>ul>li {
    padding: 8px 0;
    list-style: none;
}

.down-header .ch-down-header .d-h-right .mega-menu-header .mega-menu .mega-menu-items>ul>li>ul>li>ul>li>a {
    font-size: 15px;
    font-weight: 300;
    color: #8a8b8f;
}

.down-header .ch-down-header .d-h-right .search {
    flex-grow: 1;
    /* position: relative; */
    width: 100%;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.down-header .ch-down-header .d-h-right .search form {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}


.down-header .ch-down-header .d-h-right .search form input[type="search"] {
    width: 100%;
    height: 40px;
    padding: 15px 50px 15px 15px;
    font-family: 'sans';
    border: none;
    border-radius: 4px;
    background-color: #F0F0F1;
}

.down-header .ch-down-header .d-h-right .search form button {
    position: absolute;
    top: 11px;
    right: 24px;
    font-size: 18px;
    color: #A1A3A8;
    background: transparent;
    border: none;
}


/* .down-header .ch-down-header .d-h-right .search form button i{

} */


/* بخش وسط سربرگ پایین(سرچ باکس) */
.down-header .ch-down-header .d-h-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 765px;
}


/* بخش سمت چپ سربرگ پایین(منو های سریرگ) */

.down-header .ch-down-header .d-h-center .main-menu-header {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

/*منوی وسطی بخش پایینی سربرگ*/
.down-header .ch-down-header .d-h-center .main-menu-header .menu-header {
    display: flex;
    align-items: center;
    /* width: 100%; */
}

.down-header .ch-down-header .d-h-center .main-menu-header .menu-header>ul {
    border-right: 1px solid #8c3ca5;
    border-left: 1px solid #8c3ca5;
}

/* زیر منوهای وسطی بخش پایین سربرگ*/
.down-header .ch-down-header .d-h-center .main-menu-header .menu-header>ul>li {
    display: inline-block;
    margin: 0 16.3px;
    position: relative;
    height: 25px;
    transition: 0.2s;
}

.down-header .ch-down-header .d-h-center .main-menu-header .menu-header>ul>li>a {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 350;
    font-size: 15px;
    color: #8a8b8f;
    height: 99%;
}



.down-header .ch-down-header .d-h-center .main-menu-header .menu-header>ul>li>a>i {
    width: 18px;
    height: 18px;
    color: #aaaaaa;
    margin-left: 7px;
}

.down-header .ch-down-header .d-h-center .main-menu-header .menu-header>ul>li:hover {
    transform: translateY(10px);
    transition: all 0.2s ease;
    color: #fceffe;
}

.down-header .ch-down-header .d-h-center .main-menu-header .menu-header>ul>li>a:hover {
    color: #b25bcd;
}

/*زیر دامنه منو های وسطی بخش پایینی سربرگ*/
.down-header .ch-down-header .d-h-center .main-menu-header .menu-header>ul>li>ul.sub-menu {
    position: absolute;
    background: #fff;
    width: 200px;
    border: 1px solid #E0E0E2;
    /* border-radius: 4px; */
    padding: 10px;
    top: 60px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.down-header .ch-down-header .d-h-center .main-menu-header .menu-header>ul>li:hover ul.sub-menu {
    visibility: visible;
    opacity: 1;
    transition: all 0.2s ease-in-out;
    top: 33px;
}

.menu-header>ul>li::before {
    content: "";
    position: absolute;
    top: 19px;
    width: 76.16px;
    height: 23px;
    cursor: pointer;
}

.menu-header>ul>li::after {
    content: "";
    position: absolute;
    bottom: 19px;
    width: 76.16px;
    height: 23px;
    cursor: pointer;
}

.down-header .ch-down-header .d-h-center .main-menu-header .menu-header>ul>li>ul.sub-menu>li {
    list-style: none;
    display: block;
}

.down-header .ch-down-header .d-h-center .main-menu-header .menu-header>ul>li>ul.sub-menu>li:hover {
    border-bottom: 2px solid #fceffe;
    transition: ease;
}

.down-header .ch-down-header .d-h-center .main-menu-header .menu-header>ul>li>ul.sub-menu>li>a {
    display: block;
    padding: 5px 0;
    font-weight: 350;
    font-size: 13px;
}

/*منوی سمت چپ بخش پایین سربرگ*/

.down-header .ch-down-header .d-h-left {
    width: 18%;
}

.down-header .ch-down-header .d-h-left .left-main-menu-header .l-menu-header {
    display: flex;
    align-items: center;
}

.down-header .ch-down-header .d-h-left .left-main-menu-header .l-menu-header>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 27px;
    width: 100%;
}

.down-header .ch-down-header .d-h-left .left-main-menu-header .l-menu-header>ul>li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 33.33%;
    height: 100%;
}

.down-header .ch-down-header .d-h-left .left-main-menu-header .l-menu-header>ul>li>a {
    padding: 10px 0;
    font-weight: 600;
    font-size: 18px;
    color: #62666D;

}

/*زیر دامنه منو سمت چپ*/
.down-header .ch-down-header .d-h-left .left-main-menu-header .l-menu-header>ul>li>ul.sub-menu {
    position: absolute;
    background: #fff;
    width: 200px;
    border: 1px solid #E0E0E2;
    padding: 10px;
    /* border-radius: 4px; */
    top: 60px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.down-header .ch-down-header .d-h-left .left-main-menu-header .l-menu-header>ul>li:hover ul.sub-menu {
    visibility: visible;
    opacity: 1;
    transition: all 0.2s ease-in-out;
    top: 43px;
}

.down-header .ch-down-header .d-h-left .left-main-menu-header .l-menu-header>ul>li>ul.sub-menu>li {
    list-style: none;
    /* display: block; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* position: relative; */
}

.down-header .ch-down-header .d-h-left .left-main-menu-header .l-menu-header>ul>li>ul.sub-menu>li:hover {
    background-color: #fceffe;
    transition: all 0.2s ease-in-out;
}

.down-header .ch-down-header .d-h-left .left-main-menu-header .l-menu-header>ul>li>ul.sub-menu>li>a {
    display: block;
    padding: 5px 0;
    font-weight: 350;
    font-size: 13px;
}

.down-header .ch-down-header .d-h-left .left-main-menu-header .l-menu-header>ul>li>ul.sub-menu>li>ul.sub-menu-2 {
    position: absolute;
    top: 0px;
    right: 100%;
    list-style: none;
    background: #fff;
    border: 1px solid #E0E0E2;
    /* border-radius: 4px; */
    padding: 10px;
    width: 130px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.down-header .ch-down-header .d-h-left .left-main-menu-header .l-menu-header>ul>li>ul.sub-menu>li:hover>ul.sub-menu-2 {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.down-header .ch-down-header .d-h-left .left-main-menu-header .l-menu-header>ul>li>ul.sub-menu>li>ul.sub-menu-2>li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.down-header .ch-down-header .d-h-left .left-main-menu-header .l-menu-header>ul>li>ul.sub-menu>li>ul.sub-menu-2>li>a {
    display: block;
    padding: 5px 7px;
    font-weight: 350;
    font-size: 15px;
    position: relative;
    width: 100%;
}

.down-header .ch-down-header .d-h-left .left-main-menu-header .l-menu-header>ul>li>ul.sub-menu>li>ul.sub-menu-2>li>i {
    font-size: 15px;
    color: #A7AAAD;
}


/* بخش هدر موبایل */

.container-mobile {
    display: none;
    width: 100%;
    margin: auto;
    background: #fef9ff;
    font-size: 12px;
}

.mid-header .ch-mid-mobile-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
    gap: 10px;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 90%;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile {
    /* padding-left: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-icon {
    width: 100%;
    height: 100%;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-icon i {
    font-size: 20px;
    color: #b25bcd;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item {
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item .top-mega-m-mo-item {
    display: flex;
    align-items: center;
    padding: 16px 10px;
    border-bottom: 1px solid #F0F0F1;
    gap: 7px;
}


.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item .top-mega-m-mo-item i {
    font-size: 20px;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item .top-mega-m-mo-item span {
    font-size: 20px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 99;
}

/* وقتی منو فعال است */
.mega-menu-mobile-item.show {
    right: 0 !important;
}

/* وقتی لایه تاریک فعال است */
.overlay.show {
    opacity: 1;
    visibility: visible;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item>ul>li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 1px solid #F0F0F1;
    padding: 20px 0;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item>ul>li>.icon-text-ul-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}


.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item>ul>li>.icon-text-ul-mobile>i {
    font-size: 15px;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item>ul>li>.icon-text-ul-mobile>span {
    width: 100%;
    padding: 0 8px;
    font-size: 15px;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item>ul>li>ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item>ul>li.open>ul {
    max-height: 500px;
}


.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item>ul>li>ul>li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    border: transparent;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item>ul>li>ul>li>a {
    color: #8F9297;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item>ul>li>ul>li>span {
    color: #8F9297;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item>ul>li>ul>li>i {
    color: #8F9297;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item>ul>li>ul>li>ul {
    position: fixed;
    right: 100%;
    top: 0;
    right: -50%;
    height: 100%;
    /* transition: right 0.3s ease; */
    background: #f5f5f5;
    list-style: none;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item>ul>li>ul>li>ul.show {
    right: 50% !important;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item>ul>li>ul>li>ul>li {
    padding: 20px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .mega-menu-mobile .mega-menu-mobile-item>ul>li>ul>li.active {
    background: #f5f5f5;
    transition: all 0.2s ease-in-out;
    border-bottom: 1px solid #F0F0F1;
    border-top: 1px solid #F0F0F1;
}


.mid-header .ch-mid-mobile-header .m-h-mo-right .logo-seach {
    align-items: center;
    text-align: center;
    width: 97%;
    display: flex;
    justify-content: flex-start;
    height: 30px;
    position: relative;
    border-radius: 4px;
    background: #fceffe;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .logo-seach form {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .logo-seach form button {
    border: none;
    background: transparent;
    font-size: 20px;
    position: absolute;
    right: 16px;
}


.mid-header .ch-mid-mobile-header .m-h-mo-right .logo-seach form button i {
    font-weight: 900;
    color: #b25bcd;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .logo-seach form #input-mobile {
    border: none;
    background: transparent;
    color: #b25bcd;
    font-family: 'sans';
    padding: 8px 0;
    padding-right: 44px;
    font-size: 14px;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .logo-seach input:focus {
    outline: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}


.mid-header .ch-mid-mobile-header .m-h-mo-right .logo-seach form #form-span-mobile {
    position: absolute;
    right: 45px;
    color: #b25bcd;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .logo-seach form #form-img-mobile {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    right: 93px;
    z-index: 1;
}


/* .mid-header .ch-mid-mobile-header .m-h-mo-right .logo-seach form:focus-within span{
    display: none;
}

.mid-header .ch-mid-mobile-header .m-h-mo-right .logo-seach form:focus-within img{
    display: none;
} */




.mid-header .ch-mid-mobile-header .m-h-mo-left {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 80px;
}

.mid-header .ch-mid-mobile-header .m-h-mo-left .logo-location {
    background: #fceffe;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.mid-header .ch-mid-mobile-header .m-h-mo-left .logo-location i {
    color: #b25bcd;
}

.mid-header .ch-mid-mobile-header .m-h-mo-left .logo-location span {
    color: #b25bcd;
}


.mid-header .ch-mid-mobile-header .m-h-mo-left h1 {
    font-size: 20px;
}

.down-header .ch-down-mobile-header {
    position: relative;
    display: flex;
    align-items: center;
    overflow-x: auto;
    width: 96.5%;
    margin: 0 auto;
    justify-content: flex-start;
    /* scroll-snap-type: x mandatory; */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /*برای فایرفاکس*/
    -ms-overflow-style: none;
    /*IE,edgeقدیمی*/
}

.down-header .ch-down-mobile-header::-webkit-scrollbar {
    display: none;
    /*برای کروم-سافاری*/
}

.down-header .ch-down-mobile-header .menu-mobile-header {
    display: flex;
    align-items: center;
    margin-right: 1px;
}

.down-header .ch-down-mobile-header .menu-mobile-header>ul {
    display: flex;
    list-style: none;
    padding: 10px 0;
    white-space: nowrap;
    gap: 45px;
}

.down-header .ch-down-mobile-header .menu-mobile-header>ul>li {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    text-align: center;
    scroll-snap-align: start;
    white-space: nowrap;
}

.down-header .ch-down-mobile-header .menu-mobile-header>ul>li>a {
    color: #8a8b8f;
}

.down-header .scroll-bar {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 10%;
    height: 8%;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.scroll-bar {
    display: none;
}

.down-header .scroll-bar .scroll-thumb {
    height: 100%;
    background: #303030;
    border-radius: 4px;
    transform: translateX(0%);
    width: 0%;
    transition: width 0.1s ease;
}

/* شمارنده */
.timer-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 240px;
    height: 400px;
}

.timer-section h1 {
    color: #303030;
    padding-bottom: 50px;
    color: #8c3ca5;
    direction: rtl;
}

.timer-section #time {
    display: flex;
    gap: 30px;
    justify-content: center;
    direction: ltr;
}

.timer-section #time .widget {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timer-section #time .widget svg {
    position: relative;
    width: 150px;
    height: 150px;
    transform: rotate(270deg);
}

.timer-section #time .widget svg circle {
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke-width: 8px;
    stroke: #282828;
    transform: translate(5px, 5px);
}

.timer-section #time .widget svg circle:nth-child(2) {
    stroke: var(--clr);
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    stroke-linecap: round;
}

.timer-section #time .dots {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.timer-section #time .dots::before {
    content: '';
    position: absolute;
    top: -3px;
    width: 15px;
    height: 15px;
    background: var(--clr);
    border-radius: 50%;
    z-index: 10;
}

.timer-section #time div {
    position: absolute;
    color: #8c3ca5;
    font-size: 1.5em;
    text-align: center;
}

.timer-section #time div span {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 20px;
}


.newYear {
    display: none;
    font-size: 8em;
    color: #8c3ca5;
    text-align: center;
    line-height: 0.6em;
}

.newYear span {
    font-size: 0.5em;
    color: #8c3ca5;
}

.timer-section #time .day {
    /* display: none; */
}

.timer-section #time .betwin-widget {
    position: relative;
}

.timer-section #time .betwin-widget span {
    color: #fff;
}



/* منوهای پایین صفحه موبایل */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    border-top: 0.5px solid #F0F0F1;
    z-index: 997;
}

.mobile-bottom-nav .ch-mobile-bottom-nav .bottom-nav {
    width: 100%;
}

.mobile-bottom-nav .ch-mobile-bottom-nav .bottom-nav>ul {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-bottom-nav .ch-mobile-bottom-nav .bottom-nav>ul>li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    padding: 5px 0;
}

.mobile-bottom-nav .ch-mobile-bottom-nav .bottom-nav>ul>li>a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-bottom-nav .ch-mobile-bottom-nav .bottom-nav>ul>li>a>i {
    font-size: 20px;
    color: #A1A3A8;
}

.mobile-bottom-nav .ch-mobile-bottom-nav .bottom-nav>ul>li>a>span {
    color: #8F9297;
    font-size: 14px;
}

.mobile-bottom-nav .ch-mobile-bottom-nav .bottom-nav>ul>li>a>img {
    width: 21px;
    height: 21px;
    border-radius: 8px;
}

@media (max-width:1414px) {
    .down-header .ch-down-header .d-h-center{
        width: 635px;
    }

    .down-header .ch-down-header .d-h-center .main-menu-header .menu-header>ul>li>a{
        font-size: 13px;
    }

    .down-header .ch-down-header .d-h-center .main-menu-header .menu-header>ul>li{
        margin: 0 10.3px;
    }
}

@media (max-width:1218px){
    .down-header .ch-down-header .d-h-left .left-main-menu-header .l-menu-header>ul>li>a{
        font-size: 14px;
    }

    .down-header .ch-down-header .d-h-center .main-menu-header .menu-header>ul>li>a>i{
        margin-left: 0;
    }
}

@media (max-width:1080px) {

    .container-header {
        display: none;
    }

    .container-mobile {
        display: block;
    }

    header {
        height: 145px;
    }

    header.expanded {
        height: 145px;
    }

    header.expanded-scroll-top {
        height: 103px;
    }

    header.collapsed {
        height: 56px;
    }

    .top-header {
        height: 40px;
    }

    .top-header a img {
        height: 40px;
    }

    .mid-header {
        height: 55px;
    }

    .down-header {
        height: 50px;
    }

    .down-header.fixed {
        top: 56px;
    }
}

@media (max-width:750px) {
    .scroll-bar {
        display: block;
    }

    .timer-section {
        margin-top: 110px;
    }

    .timer-section #time {
        gap: 5px;
    }

    .timer-section #time .widget {
        width: 78px;
        height: 78px;
    }

    .timer-section #time .widget svg {
        width: 78px;
        height: 78px;
    }

    .timer-section #time .widget svg circle {
        cx: 35;
        cy: 35;
        r: 35;
        stroke-width: 4px;
    }

    .timer-section #time .widget svg circle:nth-child(2) {
        stroke-dasharray: 220;
        stroke-dashoffset: 220;
    }

    .timer-section #time .dots::before {
        top: 0px;
        width: 8px;
        height: 8px;
    }

    .timer-section #time div {
        font-size: 1em;
    }

    .timer-section #time div span {
        font-size: 15px;
    }
}


@media (max-width:360px) {

    .mobile-bottom-nav .ch-mobile-bottom-nav .bottom-nav>ul>li>a>span {
        font-size: 12px;
    }
}

@media (max-width:290px) {
    .mid-header .ch-mid-mobile-header .m-h-mo-left .logo-location span {
        font-size: 0.9em;
    }
}