:root {
    /* theme color */
    --main-color-one: #a4133c;
    --main-color-meisam: #df3b57;
    --main-color-one-shadow: #3a3b9c31;
    --main-color-one-hover: #ff758f;
    --main-color-two: #FFD100;
    --main-color-two-shadow: #FFD10031;
    --main-color-two-hover: #d8b103;
    --main-color-three: #45147e;
    --main-color-three-shadow: #45147e31;
    --main-color-three-hover: #320a60;
    --main-color-green: #189D0E;
    --bg-site: #f4f5f9;
    /* typography */
    --font-size: 14px;
    --color-site: #333333;
    /* shadow */
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-box: rgb(0 0 0 / 10%) 0px 0px 10px 0px !important;
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-inner: inset 0 2px 12px 4px rgb(0 0 0 / 5%);
    /* text */
    --text-muted: #565757;
    --text-muted-two: #929292;
    /* border */
    --border-muted: #ced4da;
}

/* mega-menu */

.mega-menu-parent {
    z-index: 100;
}

.mega-nav > li a.active {
    background-color: var(--main-color-one);
    color: #fff !important;
    border-radius: 25px;
    padding: 7px 20px !important;
    font-weight: bold;
    box-shadow: 0 5px 5px var(--main-color-one-shadow) !important;
}

.mega-nav > li a.active i {
    color: #fff;
}
.mega-menu {
    background: #fff;
    box-shadow: rgb(0 0 0 / 10%) 0 8px 10px 0;
    margin-top: -20px;
    margin-bottom: 10px;
    position: sticky;
    top: 0;
    /* required */
    z-index: 800;
}
.header-top-menu {
    background-color: white;
    padding: 15px 15px 8px 15px;
    /*border-radius: 0 50px 50px 50px;*/
    /*margin-top: 30px;*/
    position: relative;
    box-shadow: var(--shadow-md);
}


.header-top-menu-link {
    display: flex;
    justify-content: space-between;
}

.header-top-menu-left .header-top-menu-link a {
    color: #fff;
    display: inline-block;
}


.header-top-menu-left .header-top-menu-link a i {
    color: #fff;
    margin-right: 10px;
    font-size: 14px;
}

.header-top-menu-socail {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


.header-top-menu-socail a {
    margin-left: 20px;
}


.header-top-menu-socail a i {
    color: #343a40;
    font-size: 25px;
}
.header-top-menu-link-a {
    color: #343a40;
}

.header-top-menu-link-a:hover {
    color: #343a40;
}


.header-top-menu-link-a i {
    color: #fff;
}
.top-menu-menu ul {
    display: flex;
    flex-direction: row;
    align-items: baseline;;
    flex-wrap: wrap;
}

.top-menu-menu ul li {
    margin-left: 10px;
    border-radius: 15px;
    padding: 0 10px;
}

.top-menu-menu ul li:hover {
    background-color: var(--main-color-one-hover);
    padding: 0 10px;
}

.top-menu-menu > ul > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.top-menu-menu ul > li > a {
    font-size: 16px;
    transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    -moz-transition: 0.2s all ease-in-out;
    -ms-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
}

.top-menu-menu ul > li > a.nav-active {
    border-radius: 25px;
    font-weight: normal !important;
    font-size: 16px;
}
.top-menu-menu ul > li > a.nav-active i {
    color: #343a40 !important;
}

.top-menu-menu ul li a i {
    margin-right: 7px;
    font-size: 20px;
    transition: 0.3s all ease-in;
}

.top-menu-menu ul li a i.bi-chevron-down::before {
    transition: 0.3s all ease-in;
}

.top-menu-menu ul li a:hover .bi-chevron-down::before {
    transform: rotate(180deg);
}


.top-menu-menu ul > li > ul {
    position: absolute;
    align-items: flex-start;
    top: 98%;
    right: 0;
    left: 0;
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    height: 300px;
    padding: 20px 50px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    -moz-transition: 0.2s all ease-in-out;
    -ms-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
}


.back-menu {
    background-position: bottom left !important;
    background-size: 300px !important;
}

.top-menu-menu ul > li > ul.back-menu-laptop {
    background: #fff url("/assets/img/labtop.png") no-repeat bottom left;
    background-size: 200px;
}

.top-menu-menu ul > li > ul > li {
    display: inline;
    margin-bottom: 7px;
    margin-left: 6%;
}

.top-menu-menu ul > li > ul > li > a {
    display: block;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
}

.top-menu-menu ul > li > ul > li > a.title {
    color: #333;
    font-weight: bold;
    position: relative;
}

.top-menu-menu ul > li > ul > li > a.title i {
    color: #333;
    font-size: 10px;
    font-weight: bold;
}

.top-menu-menu ul > li > ul > li > a.title::before {
    content: '';
    position: absolute;
    right: -10px;
    width: 3px;
    height: 100%;
    background: var(--main-color-one);
}

.top-menu-menu ul > li > ul > li > a:hover {
    color: var(--main-color-one);
    transform: translateX(-5px);
}

.top-menu-menu ul > li > ul > li > a.title:hover {
    color: var(--main-color-one);
    transform: none;
}

/* ///////////main menu /////////// */

.top-menu-menu ul.main-menu {
    background: #fff;
    display: none;
    box-shadow: var(--shadow-md);
    height: auto;
    min-width: 200px;
    min-height: 400px;
    position: absolute;
    top: 62px;
    left: 20px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    transition: 0.4s all ease-in-out;
    border-radius: 0;
}

.top-menu-menu ul.main-menu.active {
    display: flex;
    left: 0;
    right: 0;
}

.main-menu-head {
    color: var(--main-color-one) !important;
}

.top-menu-menu ul.main-menu li {
    width: 200px;
    margin: 0;
    padding: 15px 0;
    border-radius: 10px;
}

.top-menu-menu ul.main-menu > li {
    background-color: #f4f4f4;
    border-radius: 0;
    border-bottom: 1px dashed #d2d2d2d9;
}

/* .top-menu-menu ul.main-menu > li:nth-child(1){
    border-top-color: transparent;
} */

.top-menu-menu ul.main-menu li a {
    display: flex;
    padding: 0 10px;
    align-items: center;
}

.top-menu-menu ul.main-menu li a i {
    vertical-align: baseline;
    color: #333;
    margin-left: 5px;
    float: none;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

.top-menu-menu ul.main-menu li:hover {
    background: #f3f3f3;
}

.top-menu-menu ul.main-menu li:hover i {
    color: var(--main-color-one);
    font-weight: bolder;
}

.top-menu-menu ul.main-menu > li > ul.main-menu-sub {
    min-height: 400px;
    max-height: 400px;
    overflow-y: scroll;
    min-width: 200px;
    background: #fff;
    position: absolute;
    top: 0;
    right: 200px;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
    transition: 0.4s all ease-in-out;
    border-radius: 10px;
}

.top-menu-menu ul.main-menu > li > ul.main-menu-sub li {
    max-width: 150px;
    margin-top: 4px;
    padding: 5px 0;
}

.top-menu-menu ul.main-menu > li {
    background-color: #eee;
    border-radius: 0;
}

.main-menu-sub-active-li {
    background: #fff;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
}

.top-menu-menu ul.main-menu > li:hover {
    box-shadow: var(--shadow-inner);
    background: var(--main-color-one-hover);
}

.top-menu-menu ul.main-menu > li:hover a {
    color: #333;
}

.top-menu-menu ul.main-menu > li a i {
    float: none;
}

.top-menu-menu ul.main-menu > li > ul.main-menu-sub li > a {
    font-size: 13px !important;
    color: var(--text-muted-two);
}


.top-menu-menu ul.main-menu > li > ul.main-menu-sub li > a:hover {
    color: var(--main-color-one);
}

.top-menu-menu ul.main-menu > li > ul.main-menu-sub li > a.title {
    color: #333333;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.top-menu-menu ul.main-menu > li > ul.main-menu-sub li > a.title i {
    font-weight: bolder;
    font-size: 14px;

}


.top-menu-menu ul.main-menu > li > ul.main-menu-sub li > a.title::before {
    content: '';
    position: absolute;
    right: 0;
    width: 3px;
    height: 100%;
    background: var(--main-color-one);
}

.top-menu-menu ul.main-menu > li > ul.main-menu-sub li:hover {
    background: none;
}

.top-menu-menu li:hover ul.main-menu {
    opacity: 1;
    visibility: visible;
}

.top-menu-menu li:hover ul.main-menu:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: #eee;
    z-index: -1;
}


.main-menu-sub-active {
    opacity: 1 !important;
    visibility: visible !important;
}

.main-menu-sub-active-li > a {
    color: #333 !important;
}

/* /////////// end main menu /////////// */

.top-menu-menu ul.level-one {
    align-items: unset;
    background-color: #fff;
    box-shadow: var(--shadow-md);
    height: auto;
    min-width: 200px;
    position: absolute;
    top: 98%;
    left: auto;
    right: auto;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    transition: 0.4s all ease-in-out;
    border-radius: 10px;
}

.top-menu-menu ul.level-one li {
    width: 100%;
    margin: 0;
    padding: 15px 0;
    border-radius: 10px;
}

.top-menu-menu ul.level-one li a {
    display: block;
    padding: 0 10px;
}

.top-menu-menu ul.level-one li a i {
    font-size: 14px;
    vertical-align: middle;
    color: #333;
    float: left;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

.top-menu-menu ul.level-one li:hover {
    background: var(--main-color-one);
}

.top-menu-menu ul.level-one li:hover i {
    color: #fff !important;
    font-weight: bolder;
}

.top-menu-menu ul.level-one li:hover a {
    color: #fff !important;
}

.top-menu-menu ul.level-one > li > ul.level-two {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    height: auto;
    min-width: 200px;
    background: #fff;
    position: absolute;
    top: 0;
    right: 100%;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    transition: 0.4s all ease-in-out;
    border-radius: 10px;
}

.top-menu-menu li:hover ul.level-one {
    opacity: 1;
    visibility: visible;
}

.top-menu-menu li ul li:hover ul.level-two {
    opacity: 1;
    visibility: visible;
}

.top-menu-menu li ul li:hover ul.level-two li a {
    color: #333333 !important;
}

.top-menu-menu li ul li:hover ul.level-two li:hover a {
    color: #fff !important;
}


.top-menu-menu .nav-row {
    min-width: 550px !important;
    max-height: 520px !important;
}

.top-menu-menu .nav-row > li {
    width: auto !important;
}

.top-menu-menu .nav-row > li:hover {
    background: transparent;
}
@media only screen and (min-width: 1470px) {

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1470px;
    }

    .mega-container {
        max-width: 1470px;
    }
}


.top-menu-menu ul.main-menu > li > ul.main-menu-sub {
    min-height: 400px;
    max-height: 400px;
    overflow-y: scroll;
    min-width: 200px;
    background: #fff;
    position: absolute;
    top: 0;
    right: 200px;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
    transition: 0.4s all ease-in-out;
    border-radius: 10px;
}

.top-menu-menu ul.main-menu > li > ul.main-menu-sub li {
    max-width: 150px;
    margin-top: 4px;
    padding: 5px 0;
}
.main-menu-sub-active-li {
    background: #fff;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
}
.top-menu-menu ul.main-menu > li > ul.main-menu-sub li > a {
    font-size: 13px !important;
    color: var(--text-muted-two);
}


.top-menu-menu ul.main-menu > li > ul.main-menu-sub li > a:hover {
    color: var(--main-color-one);
}

.top-menu-menu ul.main-menu > li > ul.main-menu-sub li > a.title {
    color: #333333;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.top-menu-menu ul.main-menu > li > ul.main-menu-sub li > a.title i {
    font-weight: bolder;
    font-size: 14px;

}


.top-menu-menu ul.main-menu > li > ul.main-menu-sub li > a.title::before {
    content: '';
    position: absolute;
    right: 0;
    width: 3px;
    height: 100%;
    background: var(--main-color-one);
}

.top-menu-menu ul.main-menu > li > ul.main-menu-sub li:hover {
    background: none;
}
.header-form {
    position: relative;
}

.header-form .input-search {
    background-color: rgba(235, 237, 240, 0.48);
    padding: 8px 10px;
    border-radius: 15px;
}

.header-form .input-search::placeholder {
    font-size: 12px;
}

.header-form .input-btn-search {
    position: absolute;
    top: 4px;
    left: 5px;
}

.header-form .input-btn-search i {
    font-size: 16px;
}
.header {
    padding: 10px 0 0 0;
}
.header-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-btn-login {
    margin: 0 25px;
}


.header-btn .header-cart a {
    padding: 5px 20px;
    border-radius: 25px 25px 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-btn .header-cart a span {
    margin: 0 10px;
}


.header-btn .header-cart a span, .header-btn .header-cart a i {
    color: #fff;
}

.header-btn .header-cart a i {
    font-size: 18px;
}


.header-btn .header-cart a .cart-counter {
    background-color: #fff;
    color: var(--color-site);
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    display: inline-block;
    margin: 0;
}

.header-btn-login a {
    box-shadow: var(--shadow-lg);
    border: 1px solid #ccc;
    padding: 5px 20px;
    transition: 0.5s;
}

.header-btn-login a:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.header-btn-login a:hover i {
    color: #fff;
}


.header-btn-login a i {
    margin-left: 5px;
    vertical-align: middle;
    color: var(--main-color-one);
}

.header-btn-favorite a {
    background-color: #FF8A6635;
    width: 46px;
    height: 46px;
    text-align: center;
    line-height: 46px;
    border-radius: 15px;
    padding: 0;
}

.header-btn-favorite a:hover {
    background-color: #FF8A665E;
}

.header-btn-favorite i {
    color: #f54b12;
}
.main-color-one-bg {
    background-color: var(--main-color-one) !important;
    color: #fff !important;
    box-shadow: 0 5px 5px var(--main-color-one-shadow) !important;
}

.main-color-one-bg:hover {
    background-color: var(--main-color-one) !important;
    color: #fff !important;
}
/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */
    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

@media only screen and (max-width: 1200px) {
    .header {
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        padding: 10px 0;
        position: sticky;
        top: 0;
        z-index: 100;
        background: #fff;
    }
}

@media only screen and (max-width: 992px) {


    .header-form .input-btn-search {
        /*background-color: #3a3b9c;*/
        color: #fff;
        top: 2px;
        left: 0;
    }

    .header-form .input-search:focus {
        border-color: #ccc;
    }

    .main-slider .swiper-slide img {
        height: 250px;
    }

    .category-brand .item {
        width: 130px;
    }

    .site-categories .col-lg-2 {
        margin-top: 13px !important;
    }

    .site-category-items:hover {
        transform: translateY(0);
    }

    .feature-item:hover {
        transform: translateY(0);
    }

    .slider-title-link {
        text-align: right;
        display: block;
        margin-top: 20px;
    }

    .offer-item {
        padding: 30px 10px;
    }

    .site-slider .swiper-button-prev {
        right: 45.5% !important;
    }

    .site-slider .swiper-button-next {
        right: 51.5% !important;
    }

    div#btncollapzion {
        left: 3px !important;
        bottom: 70px !important;
    }

    .product-gallery img {
        max-width: 40%;
    }

    .product-gallery .swiper-slide {
        margin-bottom: 15px;
    }

    .product-gallery-thumb img {
        max-width: 50%;
    }

    .btn-filter-float {
        bottom: 70px !important;
        margin-bottom: 34px;
    }

    .footer-contact {
        min-height: 200px;
    }

    .footer-social {
        height: 150px;
    }

    .main-table tr td, .main-table tr th {
        min-width: 100px;
    }

    button.btn.btn-filter-float.border-0.main-color-two-bg.shadow-box.px-4.rounded-3.position-fixed {
        background: var(--main-color-one) !important;
    }

    .list-inline-item {
        display: block;
    }

}

@media only screen and (max-width: 768px) {
    .site-slider .swiper-button-prev {
        right: 44.5% !important;
    }

    .site-slider .swiper-button-next {
        right: 53.5% !important;
    }

    .offer-img {
        border-left: none;
    }

    .product-gallery .swiper-slide {
        margin-bottom: 5px;
    }

    .cart-items .image img{
        width: 200px;
        display: block;
        margin: auto;
    }

    .payment_navigtions .checkout-headers ul li.active p {
        font-size: 16px;
    }

    .payment_navigtions .checkout-headers ul li.active i {
        font-size: 18px;
    }

    .payment_navigtions .checkout-headers ul li::after {
        width: 24px;
    }

    .payment_navigtions .checkout-headers ul {
        padding-right: 0;
    }

    .panel-profile h6{
        font-size: 18px;
    }

    .header-logo .image::before {
        background-color: transparent;
    }

    .accordion-style .btn-link {
        padding: 15px 40px 15px 55px;
    }

}

@media only screen and (max-width: 576px) {

    .feature-item {
        background-color: #fff;
        padding: 10px;
        border-radius: 10px;
        box-shadow: rgb(0 0 0 / 10%) 0 0 10px 0 !important;
        justify-content: flex-start;
    }

    .Dottedsquare {
        bottom: -4.5rem;
        right: 1.5rem;
    }

    .site-slider .swiper-button-prev {
        right: 42.5% !important;
    }

    .blog-slider-item-stand-image img,.blog-slider-item-row-image img{
        height: auto;
    }

    .product-meta-add-to-cart-btn{
        padding: 20px;
        width: 100%;
    }

    .pro-gallery-parent {
        height: 55%;
    }

    .product-gallery .swiper-slide {
        margin-bottom: 20px;
    }

    .product-gallery img {
        max-width: 60%;
    }

    .product-gallery .swiper-slide {
        padding-bottom: 20px;
    }

    .mobile-footer .parent {
        padding: 5px 28px 5px;
    }

    .product-desc-tab-content {
        padding-right: 0;
    }

    .product-desc-tab-content::before,.product-desc-tab-content::after {
        display: none;
    }

    .blog-main-content-menu nav ul::after{
        right: 36px;
    }
    .blog-main-content-menu nav ul a::after{
        right: 34px;
    }

    .blog-main-content-menu nav ul a {
        text-align: center;
    }

    .btn-comment {
        padding: 15px 10px;
        width: 100%;
    }

    .payment_navigtions .checkout-headers ul li::after {
        display: none;
    }

    .payment_navigtions .checkout-headers ul li a {
        margin-left: 20px;
    }

    .panel-alert .panel-meta-item-icon{
        margin-bottom: 15px;
    }

    .product-meta-action .counter .input-group {
        justify-content: center;
    }

    .comment.active {
        padding-left: 0;
        padding-right: 0;
    }

    .comment.active .comment-author-ava {
        left: unset;
        right: 0;
        top: -40px;
    }

    .comment.active .comment-body::after, .comment.active .comment-body::before {
        left: 100%;
        right: 0;
        top: -19px;
        transform: rotate(272deg);
    }

    .comment {
        padding-left: 0;
        padding-right: 0;
    }

    .comment .comment-author-ava {
        top: -40px;
    }

    .comment .comment-body::before {
        margin-top: -1px;
        border-width: 10px;
        border-color: transparent;
        display: none;
    }

    .comment .comment-body::after, .comment .comment-body::before {
        position: absolute;
        top: -19px;
        right: 95%;
        transform: rotate(-90deg);
        border-left-color: #e1e7ec;
        display: none;
    }

    .accordion-style .btn-link {
        padding: 15px 20px 15px 55px;
    }
}

@media only screen and (max-width: 400px) {
    .site-slider .swiper-button-prev {
        right: 40% !important;
    }

    .blog-main-content-menu nav ul::after,.blog-main-content-menu nav ul a::after{
        display: none;
    }

    .blog-main-content-menu nav ul a{
        text-align: right;
    }

    .w-100-in-400{
        width: 100% !important;
    }

    .w-100-in-400 .counter .input-group{
        justify-content: center;
    }

    .w-100-in-400 .font-16.new-price.main-color-one-color{
        text-align: center;
    }

    .w-100-in-400 p.old-price {
        border-left: 0;
        padding-left: 0;
    }

    .cart-item-feature .item {
        margin-left: 10px;
    }

    #otp-input input {
        height: 30px;
        width: 30px;
    }
}

@media only screen and (min-width: 1470px) {

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1470px;
    }

    .mega-container {
        max-width: 1470px;
    }
}
.cart-canvas-parent li:not(:last-child) {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.cart-canvas-delete a {
    background-color: #FF001122;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-radius: 15px;
    padding: 0;
}

.cart-canvas-delete a i {
    color: #f54b12;
}

.cart-canvas-delete a:hover {
    background-color: #FF00111F;
}


.cart-canvas-foots {
    border-top: 1px solid #ddd;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
}
