@font-face {
    font-family: 'IRANSansWeb';
    src: url('../../fonts/persian/IRANSansWeb(FaNum).woff') format('woff2'), url('../fonts/persian/IRANSansWeb(FaNum).woff2') format('woff2'), url('../fonts/persian/IRANSansWeb(FaNum).eot') format('eot');
    font-style: normal;
}

@font-face {
    font-family: 'IRANSansWeb';
    src: url('../../fonts/persian/IRANSansWeb(FaNum)_Bold.woff2') format('woff2');
    font-weight: bold;
}

/*@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialicons/v48/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format('woff2');
}

@font-face {
    font-family: 'Material Icons Outlined';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialiconsoutlined/v14/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUcel5euIg.woff2) format('woff2');
}

@font-face {
    font-family: 'Material Icons Round';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialiconsround/v14/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flwmPq_HTTw.woff2) format('woff2');
}

@font-face {
    font-family: 'Material Icons Sharp';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialiconssharp/v15/oPWQ_lt5nv4pWNJpghLP75WiFR4kLh3kvmvRImcycg.woff2) format('woff2');
}

@font-face {
    font-family: 'Material Icons Two Tone';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialiconstwotone/v13/hESh6WRmNCxEqUmNyh3JDeGxjVVyMg4tHGctNCu0NjbrHg.woff2) format('woff2');
}*/

:root {
    --main-bg-color: #fff;
    --second-bg-color: rgb(0, 113, 186);
    --third-bg-color: #e3e3e3;
    --grey: #4b4b4b;
    --black: #000;
    --red: #c0392b;
    --top-header-size: 30px;
    --mid-header-size: 80px;
    --bottom-header-size: 45px;
    --btn-bg: #000;
    --btn-border-color: #000;
    --btn-color: #fff;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    direction: rtl;
}

body {
    font-family: "IRANSansWeb", "Segoe UI", "Poppins", sans-serif;
    overflow-x: hidden;
    position: relative;
    background-color: var(--main-bg-color);
    overflow-x: hidden;
    text-align: right;
}

button {
    cursor: pointer;
}

a {
    display: inline-block;
    text-decoration: none;
    color: unset;
    cursor: pointer;
}

    a:hover {
        text-decoration: none;
        color: unset;
    }

li {
    list-style-type: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1366px;
    margin: auto;
    padding: 0 20px;
    position: relative;
}

.bg-second {
    background-color: var(--second-bg-color);
}

.bg-main {
    margin-bottom: 60px;
    background-color: var(--main-bg-color);
}

.text-red {
    color: var(--red);
}

.mobile-menu {
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    display: none;
}

.mb-menu-close {
    display: none;
}

.top-header {
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .top-header ul {
        display: flex;
    }

    .top-header a {
        font-size: 13px;
    }

ul.devided > li {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid;
}

    ul.devided > li:last-child {
        border-right: none;
    }

/* dropdown */
.dropdown {
    position: relative;
}

    .dropdown:hover .dropdown-content {
        display: flex;
        top: 100%;
        opacity: 1;
        visibility: visible;
    }

.dropdown-content {
    /* display: flex; */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 10px);
    background-color: #fff;
    flex-direction: column;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2;
}

    .dropdown-content > li > a {
        padding: 10px;
    }

    .dropdown-content > li:hover {
        color: var(--red);
    }
/* end dropdown */

.mid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    background-color: var(--main-bg-color);
}

.logo {
    font-size: 40px;
    font-weight: 700;
}

.mb-logo {
    font-size: 25px;
    font-weight: 700;
}

.search {
    width: 600px;
    height: 40px;
    position: relative;
}

    .search input {
        height: 100%;
        width: 100%;
        font-size: 16px;
        outline: 0;
        padding: 0 20px;
        border-radius: 10px;
        border: 0;
        background-color: var(--second-bg-color);
    }

    .search i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
        cursor: pointer;
        font-size: 25px;
    }

.user-menu {
    margin-top: 70px;
    display: flex;
}

.user-menu-icons {
    font-size: 30px;
}

.bottom-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu {
    display: flex;
    height: var(--bottom-header-size);
}

    .main-menu > li > a {
        display: flex;
        align-items: center;
        margin: 0 20px;
        font-weight: 600;
        height: 100%;
        text-transform: uppercase;
    }

    .main-menu > li {
        border-bottom: 2px solid transparent;
        border-top: 2px solid transparent;
    }

        .main-menu > li:hover {
            border-bottom: 2px solid var(--red);
        }

/* mega menu */

.mega-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    background-color: var(--main-bg-color);
    width: 100%;
    top: calc(100% + 100px);
    z-index: 2;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mega-dropdown:hover .mega-content {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.mega-content h3 {
    margin: 20px 0;
    padding-left: 20px;
}

.mega-content ul {
    display: flex;
    flex-direction: column;
}

    .mega-content ul > li > a {
        font-weight: normal;
        padding: 10px 0;
        border-bottom: 2px dashed #f5f5f5;
        transition: padding-left 0.2s ease-in-out;
        margin: 0 20px;
        text-transform: capitalize;
    }

        .mega-content ul > li > a:hover {
            padding-left: 10px;
        }

    .mega-content ul > li {
        border-bottom: 2px solid transparent;
    }

        .mega-content ul > li:hover {
            border-bottom: 2px solid var(--red);
        }

/* end mega menu */

.box {
    padding: 20px;
}

.hero {
    height: calc( 100vh - (
                var(--top-header-size) + var(--mid-header-size) +
                    var(--bottom-header-size)
            ) );
    padding: 0 20px;
}

.slider,
.slider .container {
    height: 100%;
    position: relative;
}

.slide {
    height: 0;
    position: absolute;
    display: flex;
    inset: 0;
    overflow: hidden;
    visibility: hidden;
}

    .slide.active {
        visibility: visible;
        height: 100%;
    }

    .slide .info {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

.info-content h2 {
    font-size: 50px;
    margin: 10px 0 35px;
}

.info-content button {
    margin-top: 30px;
}

.slide .img {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-flat {
    display: inline-block;
    border: 2px solid var(--btn-border-color);
    background-color: var(--btn-bg);
    color: var(--btn-color);
    padding: 15px 35px;
    font-size: 15px;
    outline: 0;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-hover {
    transition: all 0.3s ease-in-out;
}

    .btn-hover:hover {
        background-color: var(--btn-color);
        color: var(--btn-bg);
    }

.btn-flat:disabled {
    opacity: 0.5;
    cursor: no-drop;
}

.slide-controll {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    outline: 0;
    border: 0;
    border-radius: 50%;
    font-size: 25px;
    display: flex;
    align-items: center;
    padding: 10px;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

    .slide-controll:hover {
        background-color: var(--btn-bg);
        color: var(--btn-color);
    }

.slide-next {
    right: -80px;
}

.slide-prev {
    left: -80px;
}

.slider:hover .slide-next {
    right: 50px;
}

.slider:hover .slide-prev {
    left: 50px;
}

/* slide animation */
.top-down {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide.active .top-down {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.right-left {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide.active .right-left {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.left-right {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide.active .left-right {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
/* end slide animation */

.trans-delay-0-2 {
    transition-delay: 0.2s;
}

.trans-delay-0-4 {
    transition-delay: 0.4s;
}

.trans-delay-0-6 {
    transition-delay: 0.6s;
}

.trans-delay-0-8 {
    transition-delay: 0.8s;
}

.promotion {
    padding: 15px;
}

    .promotion [class*="col-"] {
        padding: 15px;
    }

.promotion-box {
    display: flex;
    background-color: var(--third-bg-color);
    position: relative;
}

    .promotion-box .text {
        flex-grow: 1;
        padding: 20px;
    }

        .promotion-box .text h3 {
            font-size: 25px;
        }

        .promotion-box .text button {
            margin-top: 30px;
        }

    .promotion-box img {
        width: 150px;
        transition: transform 0.3s ease-in-out;
    }

    .promotion-box:hover img {
        transform: scale(1.1);
    }

.section {
    padding: 60px 0;
}

.section-header,
.section-footer {
    text-align: center;
    margin: 80px 0 70px;
    text-transform: uppercase;
}

    .section-header h2 {
        font-size: 40px;
    }

.product-card {
    background-color: var(--main-bg-color);
    transition: all 0.3s ease-in-out;
}

    .product-card:hover {
        background-color: var(--second-bg-color);
    }

.product-card-img {
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-card-img img {
        max-height: 100%;
        transition: all 0.3s ease-in-out;
    }

        .product-card-img img:nth-child(2) {
            display: none;
        }

.product-card:hover .product-card-img img:nth-child(1) {
    display: none;
}

.product-card:hover .product-card-img img:nth-child(2) {
    display: block;
}

.product-card-info {
    padding: 20px;
    text-align: center;
    position: relative;
}

.product-card-name {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-card-price {
    font-size: 15px;
}

    .product-card-price .curr-price {
        margin-left: 5px;
        font-size: 20px;
        font-weight: 600;
        color: var(--red);
    }

    .product-card-price .no-price {
        margin-left: 5px;
        font-size: 20px;
        font-weight: 600;
        color: var(--grey);
    }

.product-btn {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

.product-card:hover .product-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-btn > * ~ * {
    margin-left: 5px;
}

.btn-shop-now,
.btn-cart-add {
    font-size: 15px;
    padding: 5px 10px;
    line-height: 17px;
}

.sp-item-name {
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 30px;
}

.sp-item-description {
    margin-bottom: 60px;
    text-align: justify;
}

.blog {
    display: flex;
    margin-bottom: 60px;
}

.blog-img,
.blog-info {
    width: 50%;
}

.blog-info {
    padding: 50px;
}

.blog-title {
    font-size: 30px;
    margin-bottom: 30px;
}

.blog-preview {
    text-align: justify;
    margin-bottom: 50px;
}

footer {
    padding: 100px 0;
}

.footer-head {
    margin-bottom: 20px;
    text-transform: uppercase;
    color:#ffffff;
}

footer ul li {
    margin-bottom: 10px;
}

.contact-header {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 38px;
}

.contact-socials {
    display: flex;
    justify-content: center;
    color:#ffffff;
}

    .contact-socials a {
        font-size: 30px;
        margin: 0 10px;
    }

        .contact-socials a:hover {
            color: var(--grey);
        }

.menu li a {
    text-transform: capitalize;
    transition: transform 0.3s ease-in-out;
}

    .menu li a:hover {
        color: var(--red);
        transform: translateX(10px);
    }

.subscribe {
    position: relative;
    margin-top: 20px;
}

    .subscribe input {
        width: 100%;
        height: 50px;
        outline: 0;
        border: 0;
        padding: 0 30px;
    }

    .subscribe button {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        outline: 0;
        border: 0;
        background-color: var(--red);
        color: var(--btn-color);
        padding: 10px;
        text-transform: uppercase;
    }

        .subscribe button:hover {
            background-color: var(--black);
        }

.mb-menu-toggle {
    font-size: 25px;
    color: #ffffff;
    text-shadow: #000000 0px 0px 8px;
}

.breadcumb {
    font-weight: 600;
    padding-left: 20px;
}

    .breadcumb a {
        text-transform: capitalize;
    }

        .breadcumb a:hover {
            color: var(--red);
        }

    .breadcumb span {
        margin: 0 15px;
    }

.filter-header {
    display: block;
    margin: 20px 0;
    font-weight: 600;
    text-transform: capitalize;
}

.filter-list > li {
    margin-bottom: 20px;
}

.filter-toggle-box {
    display: none;
}

.price-range {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .price-range span {
        flex-grow: 1;
        text-align: center;
        margin: 0 10px;
    }

    .price-range input {
        width: 40%;
        outline: none;
        padding: 5px;
    }

.group-checkbox {
    text-align: right;
}

    .group-checkbox input {
        opacity: 0;
        height: 0;
        width: 0;
        cursor: pointer;
    }

    .group-checkbox label {
        cursor: pointer;
        padding-right: 40px;
        position: relative;
    }

        .group-checkbox label::before {
            content: "";
            position: absolute;
            right: 0;
            top: -4px;
            width: 22px;
            height: 22px;
            background-color: var(--main-bg-color);
            border: 2px solid #7b7979;
        }

        .group-checkbox label > i {
            position: absolute;
            right: 2px;
            top: -2px;
            color: var(--black);
            transform: scale(0);
            font-size: 21px;
            transition: transform 0.1s ease-in-out;
        }

    .group-checkbox input:checked + label i {
        transform: scale(1);
    }

.rating i {
    color: #ffc107;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .pagination > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        margin-left: 5px;
        font-size: 20px;
    }

        .pagination > li > a.active {
            background-color: var(--black);
            color: var(--main-bg-color);
        }

        .pagination > li > a:hover {
            border: 2px solid var(--black);
        }

.product-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-img > img {
        max-width: 70%;
    }

.product-img-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-item {
    width: 90px;
    cursor: pointer;
    margin: 0 10px;
    border: 1px solid var(--third-bg-color);
}

    .product-img-item:hover {
        background-color: var(--second-bg-color);
    }

.product-row {
    padding: 45px 0;
}

.product-info > * ~ * {
    margin-top: 25px;
}

.product-info-detail-title {
    font-weight: 600;
    color: gray;
}

.product-description {
    font-size: 18px;
    text-align: justify;
}

.product-info-price {
    font-weight: 600;
    font-size: 30px;
    color: var(--red);
}

.product-quantity-wrapper {
    display: flex;
    align-items: center;
}

.product-quantity {
    margin: 0 10px;
    font-size: 25px;
}

.product-quantity-btn {
    height: 30px;
    width: 30px;
    background-color: gray;
    display: grid;
    place-items: center;
    border-radius: 50%;
    cursor: pointer;
}

    .product-quantity-btn i {
        font-size: 20px;
        color: var(--main-bg-color);
    }

.box-header {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.product-detail-description {
    position: relative;
    margin-bottom: 90px;
}

.product-detail-description-content {
    text-align: justify;
    line-height: 26px;
    font-size: 16px;
    height: 600px;
    overflow-y: hidden;
    position: relative;
}

    .product-detail-description-content.active {
        height: max-content;
    }

.btn-view-description {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.user-rate {
    margin-bottom: 40px;
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.user-avt {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.user-name {
    margin-left: 20px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
}

.name {
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.user-rate-content {
    line-height: 25px;
}

.festival-info {
    background-color: #ffc107;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    border: #8e8e8e solid 2px;
}

    .festival-info > div {
        margin: 10px;
    }

.comments-info {
    background-color: #ccc;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    border: #8e8e8e solid 2px;
    margin-top: 20px;
}

    .comments-info > div {
        margin: 10px;
    }

        .comments-info > div > p {
            font-size: 12px;
            margin-top: 3px;
        }


.badge {
    border-radius: 5px;
    font-size: 1.2rem;
    padding: 0.3rem 0.5rem;
}

.badge--sales {
    position: relative;
    display: inline-block;
    background-color: yellowgreen;
    width: auto;
    margin-left: 20px;
    height: 40px;
    line-height: 2.2rem;
    color: white;
}

    .badge--sales::before {
        position: absolute;
        left: -17px;
        top: 0px;
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-top: 20px solid transparent;
        border-right: 20px solid yellowgreen;
        border-bottom: 20px solid transparent;
    }

    .badge--sales::after {
        display: block;
        content: '';
        position: absolute;
        background: #fff;
        width: 10px;
        height: 10px;
        border-radius: 10px;
        left: -5px;
        top: calc(100% / 2 - 5px);
    }

.btn-badge {
    position: relative;
    top: 0px;
    right: -9px;
    transform: translateX(8px);
    background-color: #04ba13;
    font-size: 10px;
    line-height: 0;
    font-weight: 900;
    color: #fff;
    padding: 1px 6px;
    border-radius: 50%;
    height: 10px;
    width: 100%;
}

.color-item {
    border: 4px solid #bababa;
    border-radius: 50%;
    cursor: pointer;
    height: 36px;
    width: 36px;
    display: inline-block;
    margin: 0px 5px;
    cursor: pointer;
}

.vendor-item {
    border: 4px solid #bababa;
    border-radius: 8px;
    cursor: pointer;
    height: 46px;
    display: inline-block;
    margin: 0px 5px;
    cursor: pointer;
    background: #eee;
    padding: 5px;
}

.user-comment-summery {
    overflow: hidden;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.specification-data {
    position: relative;
    margin-bottom: 90px;
}

.specification-data-content {
    text-align: justify;
    line-height: 26px;
    font-size: 16px;
}

.specification-data-title {
    padding-left: 10px;
    font-weight: bolder;
    color: var(--grey);
    text-align: left;
}

.specification-data-value {
    text-align: right;
    padding-right: 10px;
    direction: ltr;
}

.btn-details {
    display: inline-block;
    border-bottom: 2px solid var(--btn-border-color);
    color: var(--btn-border-color);
    padding: 15px 35px;
    font-size: 15px;
    outline: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-details-hover {
    transition: all 0.3s ease-in-out;
}

    .btn-details-hover:hover {
        background-color: #3e3e3e;
        color: #fff;
    }

.user-menu > li > a {
    cursor: pointer;
}

.stuffbasket-color-item {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    right: -2px;
    top: 4px;
    border: 1px solid rgba(0,0,0,.3);
}

.stuffbasket-item-hr {
    width: 80%;
    margin: auto;
    border-bottom: 1px solid #999;
    margin-top: 10px;
    margin-bottom: 10px;
}

.product__name {
    text-align: right;
}

.main-logo {
    width: 140px;
}

.sum-item {
    padding: 10px;
    border: 1px solid #999;
    border-radius: 5px;
    background: #fff;
}

.sumprice-item {
    display: inline-block;
    float: left;
}

.empty-basket {
    background: url(../../images/basket.png)50% no-repeat;
    margin: 0 auto;
    width: 200px;
    height: 150px;
    background-size: contain;
}

.basket-box {
    margin: auto;
    text-align: center;
}

.empty_basket_title {
    font-size: 26px;
    font-weight: bold;
    color: #444;
}

.empty_basket_links > p {
    margin-top: 15px;
    font-size: 16px;
    color: #111;
}

.empty_basket_links > div > a {
    margin: 10px 15px;
    font-size: 16px;
    color: #559;
    border-bottom: 1px dotted #559;
    padding-bottom: 5px;
}

.purchase_success {
    background: url(../../images/Success.png)50% no-repeat;
    margin: 0 auto;
    width: 200px;
    height: 200px;
    background-size: contain;
}

.purchase_failure {
    background: url(../../images/cancel.png)50% no-repeat;
    margin: 0 auto;
    width: 200px;
    height: 200px;
    background-size: contain;
}

.purchase_title_success {
    font-size: 26px;
    font-weight: bold;
    color: #008f07;
}

.purchase_title_failure {
    font-size: 26px;
    font-weight: bold;
    color: #980000;
}

.small-text {
    font-size: 12px;
    color: #333;
    margin-top: 5px;
    text-align: justify;
}

.btn-basket {
    display: block;
    border: 2px solid #222;
    background-color: #555;
    color: #fff !important;
    padding: 15px 35px;
    font-size: 15px;
    outline: 0;
    font-weight: bold;
    text-align: center;
    margin: 8px;
    cursor: pointer;
}

.btn-basket-hover {
    transition: all 0.3s ease-in-out;
}

    .btn-basket-hover:hover {
        background-color: #fff;
        color: #555 !important;
    }

.btn-pay {
    display: block;
    border: 2px solid #000fb6;
    background-color: #015cd9;
    color: #fff !important;
    padding: 15px 35px;
    font-size: 15px;
    outline: 0;
    font-weight: bold;
    text-align: center;
    margin: 8px;
    cursor: pointer;
}

.btn-pay-hover {
    transition: all 0.3s ease-in-out;
}

    .btn-pay-hover:hover {
        background-color: #fff;
        color: #015cd9 !important;
    }

.SpecialAuctionsBaner {
    text-align: center;
    margin-top: -60px;
}

    .SpecialAuctionsBaner > img {
        width: 100%;
    }

.SpecialAuctionsBanerTitle {
    position: relative;
    /*top: 66px;*/
    color: black;
    background: rgba(255,255,255,0.3);
    text-shadow: 1px 1px 10px white;
    padding: 10px 0px;
    text-align: center;
}

.presell-count {
    margin-left: 5px;
    font-size: 16px;
    font-weight: bold;
    color: var(--grey);
}

.presell-price {
    margin-left: 5px;
    font-size: 20px;
    font-weight: bold;
    color: #1cba59;
}

.presell-expire-datetime {
    margin-left: 5px;
    font-size: 14px;
    color: #ba1c59;
}

.textcontent {
    padding: 50px 20px;
    text-align: justify;
}
    .textcontent p {
        font-size: large;
    }

    .textcontent ol {
        padding: 0px 20px;
    }

        .textcontent ol > li {
            list-style-type: decimal;
        }

    .textcontent ul > li {
        list-style-type: circle;
    }

/*.header-search-input {
    position: relative;
    padding: 15px 40px 15px 20px;
    width: 20px;
    color: #525252;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 100;
    letter-spacing: 2px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(to right, #FFFFFF 0%, #464747 #F9F9F9 100%);
    transition: width 0.4s ease;
    outline: none;
}

    .header-search-input:focus {
        width: 300px;
    }*/

#search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

#search-input {
    font-family: 'IRANSansWeb';
    height: 100%;
    width: 0px;
    font-size: 18px;
    font-weight: 400;
    background: none;
    color: #111;
    border: none;
    outline: 0;
    visibility: hidden;
    transition: 0.3s;
}

#search-container.active {
    width: 300px;
    border: solid 2px #000;
    border-radius: 50px;
}

#search-input.active {
    width: 210px;
    margin-left: 16px;
    visibility: visible;
}


/* responsive */
    @media only screen and (max-width: 1280px) {
    .mobile-menu {
        display: flex;
    }


    .header-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
        width: 100%;
        overflow-x: auto;
        position: fixed;
        top: 0;
        right: 100%;
        background-color: var(--main-bg-color);
        z-index: 99;
        transition: right 0.3s ease-in-out;
    }

        .header-wrapper.active {
            right: 0;
        }

    .logo {
        font-size: 50px;
    }

    .mb-menu-close {
        display: block;
        position: absolute;
        right: 43px;
        top: 18px;
        z-index: 99;
        font-size: 25px;
    }

    .top-header {
        display: none;
    }

    .mid-header {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
        height: unset;
    }

        .mid-header > * {
            margin-top: 15px;
        }

    .search {
        width: 100%;
    }

    .bottom-header {
        justify-content: flex-start;
    }

    .main-menu {
        flex-direction: column;
        height: unset;
    }

        .main-menu a {
            padding: 10px 0;
        }

    .mega-dropdown > a > i {
        display: none;
    }

    .mega-content {
        position: relative;
        opacity: 1;
        visibility: visible;
        box-shadow: unset;
        background-color: transparent;
        padding-left: 45px;
    }

        .mega-content h3 {
            font-size: 15px;
            padding: 5px 0;
            margin: unset;
        }

        .mega-content ul > li > a {
            padding: 5px 0;
        }

        .mega-content .img-row {
            display: none;
        }

    .hero {
        height: calc( 80vh - (
                    var(--top-header-size) + var(--mid-header-size) +
                        var(--bottom-header-size)
                ) );
        margin-bottom: 60px;
    }

    .slide {
        flex-direction: column-reverse;
    }

        .slide > .info,
        .slide > .img {
            width: 100%;
        }

            .slide > .img > img {
                max-width: 300px;
            }

    .info-content p {
        display: none;
    }

    .info-content button {
        margin-top: unset;
    }

    .slide-next,
    .slider:hover .slide-next {
        right: 40%;
    }

    .slide-prev,
    .slider:hover .slide-prev {
        left: 40%;
    }

    .slide-next,
    .slide-prev {
        bottom: -70px;
        transform: unset;
        top: unset;
    }

    .product-btn {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        position: relative;
        margin-bottom: 20px;
    }

    .sp-item-info {
        padding-right: 35px;
    }

    .blog {
        flex-wrap: wrap;
    }

    .blog-img,
    .blog-info {
        width: 100%;
    }

    .filter-toggle-box {
        display: block;
    }

    .filter-col {
        position: fixed;
        width: 100%;
        background-color: var(--main-bg-color);
        z-index: 98;
        left: 100%;
        height: 80vh;
        overflow-y: scroll;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        transition: left 0.2s ease-in-out;
    }

        .filter-col.active {
            left: 0;
        }

    .pagination {
        justify-content: center;
    }

    .vendor-item {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .product__name {
        padding-right: 50px;
    }
}

@media only screen and (max-width: 750px) {
    .main-logo {
        width: 70px;
    }

    .hero {
        height: calc( 70vh - (
                    var(--top-header-size) + var(--mid-header-size) +
                        var(--bottom-header-size)
                ) );
        margin-bottom: 60px;
    }

    .info-content h2 {
        margin: unset;
        font-size: 30px;
    }

    .info-content h3 {
        font-size: 20px;
    }

    .promotion {
        padding-top: 45px;
    }

    .promotion-box {
        height: unset;
    }

    .slide > .img > img {
        max-width: 200px;
    }

    .slide-next, .slider:hover .slide-next {
        right: 30%;
    }

    .slide-prev, .slider:hover .slide-prev {
        left: 30%;
    }

    .vendor-item {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .product__name {
        padding-right: 50px;
    }

    #search-input.active {
        width: 160px;
    }

    #search-container.active {
        width: 250px;
    }
}
