@import url("https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap");



* {

    box-sizing: border-box;



    margin: 0px;



    padding: 0px;



    font-family: "Reddit Sans", serif;

}



:root {

    --blue-color: #c02222;



    --green-color: #46b586;



    --black-color: #1b2124;



    --white-color: #ffffff;



    --gray-color: #8d9091;



    --border-color: #e5e7eb;



    --transition: 0.3s;

}



.topbar .splide__arrows {

    display: none;

}



a {

    color: var(--black-color);



    text-decoration: none;



    transition: var(--transition);

}



a:hover {

    color: var(--blue-color);

}



.button {

    background: var(--blue-color);



    color: var(--white-color);



    padding: 10px 20px;



    font-size: 14px;



    border-radius: 4px;



    border: none;



    display: inline-block;

    text-align: center;

}

.button.googlebutton{

    background: var(--gray-color);

}

.button:hover {

    color: var(--white-color);



    background: var(--blue-color);

}

.button.googlebutton:hover{

    background: var(--gray-color);

}



li {

    list-style: none;

}





/* scroll--------------------------------------------------------------

----------------------------------------------------------------------- */

/* width */

::-webkit-scrollbar {

    width: 5px;

  }

  

  /* Track */

  ::-webkit-scrollbar-track {

    background: var(--border-color); 

  }

   

  /* Handle */

  ::-webkit-scrollbar-thumb {

    background: var(--blue-color); 

    border-radius: 20px;

  }

  

  /* Handle on hover */

  ::-webkit-scrollbar-thumb:hover {

    background: var(--blue-color); 

  }



/* topbar-------------------------------------------------------------



---------------------------------------------------------------------- */



.a-section {

    background: var(--blue-color);



    padding: 16px 0px;

}



/* .a-section {

    background: var(--blue-color);

    padding: 10px 0px 0px 0px;

} */

.a-section-marquee-box {

    display: flex;



    align-items: center;



    overflow: hidden;



    /* border: 1px solid #181818;  */

}



.a-section-marquee-box h2 {

    font-size: 14px;



    font-weight: 500;



    color: var(--white-color);



    /* padding: 16px 0px; */



    /* background: var(--blue-color); */



    transform: translateX(0);



    animation: b-text-scroll 20s linear infinite;

}



@keyframes b-text-scroll {

    0% {

        transform: translate3d(0, 0, 0);

    }



    100% {

        transform: translate3d(-100%, 0, 0);

    }

}



/* header-------------------------------------------------------------



---------------------------------------------------------------------- */



header .logo img{

    height: 60px;

}



header {
    border-bottom: 1px solid var(--border-color);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 30px 30px,rgba(0, 0, 0, 0.03) 0px 0px 8px, rgba(0, 0, 0, 0.05) 0px 1px 0px;
    background: var(--white-color);
}

.header-sticky{
    position: sticky;
    top: 0;
    z-index: 99999;
    width: 100%;
}
header .search_section input {

    outline: none;



    border: 1px solid var(--blue-color);



    color: var(--black-color);



    padding: 10px 50px 10px 20px;



    font-size: 14px;



    min-width: 300px;



    width: 500px;



    border-radius: 4px;

}



header .search_section .search {

    position: relative;

}



header .search_section input::placeholder {

    color: var(--gray-color);

}



header .search_section .search a.search_button {

    position: absolute;



    top: 0px;



    right: 0px;



    padding: 10px;



    height: 100%;



    display: flex;



    align-items: center;



    justify-content: center;



    transition: var(--transition);



    background: var(--blue-color);



    border-radius: 0px 4px 4px 0px;



    color: var(--white-color);

}



header .search_section .search a.search_button svg {

    height: 24px;



    width: 24px;

}





header .search_section{

    position: relative;

}

header .search_section .autocomplete{

    position: absolute;

    width: 100%;

    padding: 0px;

    margin-bottom: 0px;

    background: var(--white-color);

    top: 100%;

    left: 0px;

    overflow: hidden scroll;

    height: 300px;

}

header .search_section .autocomplete li a{

    padding: 5px 20px;

    border-bottom: 1px solid var(--border-color);

    display: block;

}

header .search_section .autocomplete li:last-child a{

    border-bottom: none;

}



header .right_content .content .content_name {

    margin-top: 4px;

}



/* navbar--------------------------------------------------------------------



----------------------------------------------------------------------------- */



.navbar {
    background-color: #EEEEEE;
    border-bottom: 1px solid var(--border-color);

}



.navbar ul li a {

    padding: 10px;



    display: inline-block;



    transition: 0s;



    border-bottom: 1px solid transparent;



    font-size: 16px;



    font-weight: 600;

}


        .navbar ul li a {
               padding: 4px 10px 0px 10px;
            color: #bf2222 !important;
        }

.navbar ul li p{

    display: none;

}

.navbar ul li{

    position: relative;

}

.navbar ul li a p{

    display: block;

}

.navbar ul li:hover a p{

    position: static;

}

.navbar ul li:hover p{

    display: block;

    position: absolute;

    top: 100%;

    left: 0px;

    white-space: nowrap;

    z-index: 111;

}



.navbar ul li:hover a {

    color: var(--black-color);



    border-bottom: 1px solid var(--blue-color);



    background: #c022221a;

}



.navbar ul li a .icon svg {

    transition: var(--transition);

}



.navbar ul li:hover a .icon svg {

    transform: rotate(-180deg);

}



.navbar ul li {

    position: relative;

}



.navbar ul li .dropdown {

    top: 100%;



    left: 0px;



    background: var(--white-color);



    display: none;

}



.navbar ul li:hover .dropdown {

    display: flex;



    z-index: 1;

}



.navbar ul li .dropdown ul {

    border-right: 1px solid var(--border-color);

}



.navbar ul li .dropdown ul li a {

    background: transparent;



    border: none;



    font-size: 14px;



    font-weight: 500;

}



.navbar ul li .dropdown ul li a b {

    font-size: 16px;



    font-weight: 700;

}



.navbar ul li .dropdown ul li:hover a {

    text-decoration: underline;

}



.navbar ul li .dropdown ul:last-child {

    border-right: none;

}



.navbar ul li .dropdown ul li a b svg {

    margin-left: 10px;

}



/* hero slide--------------------------------------------------------------



--------------------------------------------------------------------------- */



.hero-slide {

    margin-top: 10px;

}



.hero-slide .slick-arrow.slick-prev {

    height: 100%;



    border-radius: 0px;



    left: -300px;



    width: 60px;



    background: transparent;



    z-index: 1;



    outline: none;



    border: none;



    transition: var(--transition);



    /* background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(120,153,66,0.6194852941176471) 100%); */

}



.hero-slide .slick-arrow.slick-next {

    height: 100%;



    border-radius: 0px;



    right: -300px;



    width: 60px;



    background: transparent;



    outline: none;



    border: none;



    transition: var(--transition);



    /* background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(120,153,66,0.6194852941176471) 100%); */

}



.hero-slide .splide__arrow svg {

    fill: var(--white-color);

}



.hero-slide {

    overflow: hidden;

}



.hero-slide:hover .slick-arrow.slick-prev {

    left: 0px;

}



.hero-slide:hover .slick-arrow.slick-next {

    right: 0px;

}



.hero-slide .is-active {

    background: var(--black-color);

}



/* product content--------------------------------------------------------------



-------------------------------------------------------------------------------- */



.product-content h2 {

    font-size: 24px;



    color: var(--black-color);



    font-weight: 700;

}



.product-content {

    margin-top: 24px;



    margin-bottom: 60px;

}



.product-content .title {

    margin-bottom: 10px;

}



.product-content .contant {

    display: grid;



    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;



    gap: 18px;

}



.product-content .contant .box a:hover {

    color: var(--black-color);

}

/* a.addtocart-button:hover ,.smaple-button:hover {

    color: var(--white-color);

} */



.product-content .contant .box .product-title {

    margin: 8px 0px;



    color: var(--black-color);



    font-size: 14px;



    height: 40px;



    -webkit-line-clamp: 2;



    overflow: hidden;



    display: -webkit-box;



    -webkit-box-orient: vertical;



    font-weight: 600;

}



.product-content .contant .box span {

    color: var(--blue-color);



    background: rgb(241 239 255);



    padding: 2px 8px;



    font-size: 14px;



    border-radius: 4px;



    display: inline-block;



    margin-bottom: 8px;



    font-weight: 600;

}



.product-content .contant .box .prize {

    font-size: 18px;



    color: var(--black-color);



    font-weight: 700;



    line-height: 1;

}



.product-content .contant .box .prize span {

    background: transparent;



    border-radius: 0px;



    color: var(--green-color);



    padding: 0px;



    font-size: 14px;



    font-weight: 700;



    margin-bottom: 0px;

}



.product-content .contant .box del {

    font-size: 14px;



    font-weight: 500;



    color: var(--gray-color);

}



.product-content .contant .box .bottom {

    padding: 0px 8px 8px 8px;

}



.product-content .contant .box {
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



.product-content .contant .box:hover {

    border: 1px solid transparent;



    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.09);

}



.product-content .contant .box .show-top {

    position: absolute;



    top: -12px;



    left: -6px;

}



.product-content .contant .box .ratting {

    position: absolute;



    right: 0px;



    bottom: 0px;



    padding: 0px 6px 0px 4px;



    border-radius: 4px 0px 0px 4px;



    background: var(--green-color);



    color: var(--white-color);



    font-size: 14px;



    font-weight: 600;



    display: flex;



    align-items: center;



    justify-content: center;

}



.product-content .contant .box .ratting svg {

    margin-right: 2px;

}



.product-content .title a {

    font-size: 18px;



    color: var(--blue-color);

}



.product-content .product-button {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 8px;

    gap: 10px;

    flex-wrap: wrap;

}

.product-content .product-button a{

    width: 47%;

    padding: 10px !important;

}

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

    .product-content .product-button a{

        width: 100%;

    }

}

.product-content .product-button a:first-child{

    width: 100%;

    padding: 0px !important;

}

.product-content .product-button .sample-button{

    width: 100%;

}

.product-content .product-button a:hover{

    color: var(--white-color) !important;

}



.product-content .contant .box .icon svg {

    height: 20px;

    width: 20px;

    fill: crimson;

}

.product-content .contant .box .icon {

    position: absolute;

    top: 10px;

    right: 10px;

    background: white;

    padding: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0px 0px 55px #00000020;

    border-radius: 50px;

    cursor: pointer;

    z-index: 1;

}



/* top to bottom-------------------------------------------------------------



----------------------------------------------------------------------------- */



.top_button a {
    background: var(--blue-color);
    color: var(--white-color);
    padding: 16px 0px;
}



/* footer-----------------------------------------------------------------------



--------------------------------------------------------------------------------*/



footer {

    /* background: linear-gradient(rgba(241, 239, 255, 0) 0%, rgb(241, 239, 255) 100%); */

    background: #ffdddd;

    border-top: 1px solid var(--border-color);

}



footer .content .logo {

    margin-bottom: 20px;

}



footer .content p {

    font-size: 16px;



    font-weight: 400;

}



footer .content h4 {

    font-size: 18px;



    margin-bottom: 16px;



    font-weight: 700;

}



footer .content h3 a {

    color: var(--black-color);

}



footer .content ul li {

    margin-top: 12px;

}



footer .content ul li:first-child {

    margin-top: 0px;

}



footer .content ul li a {

    font-size: 14px;



    font-weight: 600;



    color: var(--black-color);

}



footer .follow_us .text {

    font-size: 14px;



    font-weight: 700;

}



footer .follow_us a {

    margin-right: 5px;

}



footer .follow_us a:last-child {

    margin-right: 0px;

}



footer hr {

    color: var(--black-color);



    margin: 0px 0px 20px 0px;

}



footer .copyright h4 {

    font-size: 20px;

    margin-bottom: 0px;

    font-weight: 600;

}



footer .copyright h5 {

    font-size: 16px;



    font-weight: 600;

}



.categories {

    background: url(../images/categories_bg.png);



    background-repeat: no-repeat;



    background-size: cover;



    padding: 20px 0px;



    overflow-y: scroll;



    display: none;

}



/* .categories .main-box{



    overflow-y: scroll;



} */



.categories .main-box .box {

    margin-right: 20px;

}



.categories .main-box .box:last-child {

    margin-right: 0px;

}



.categories .main-box .box:last-child img {

    margin-right: 20px;

}



.categories .main-box img {

    width: 100px;



    height: 100px;

}



.mobile_menu {

    display: none;

}



.navbar .close_icon {

    display: none;

}



@media (max-width: 1262px) {

    .mobile_menu {

        display: block;



        cursor: pointer;

    }



    /* .navbar .container-fluid{



        position: relative;



        left: -100%;



        transition: 10s;



    }



    .navbar.show .container-fluid{



        left: 0%;



    } */



    .navbar {

        display: none;



        position: fixed;



        top: 0px;



        left: 100%;



        background: #1b212477;



        width: 100%;



        z-index: 99999;



        height: 100vh;



        transition: var(--transition);

    }



    .navbar.show {

        display: block;



        left: 0%;

    }



    .navbar .container-fluid {

        height: 100%;



        padding: 0px !important;



        width: 448px;



        background: var(--white-color);



        margin-left: 0px;



        display: block;

    }



    .navbar nav ul {

        display: block !important;

    }



    .product-content .contant {

        grid-template-columns: 1fr 1fr 1fr 1fr;

    }



    .navbar ul li:hover .dropdown {

        display: block;



        width: 100%;



        position: static !important;

    }

.navbar ul li a {
    padding: 10px;
    color: #bf2222 !important;
    border-bottom: 1px solid #dee2e6;
}
.navbar ul li:last-child a {
    border-bottom: none;
}

    /* .navbar ul li .dropdown.show{



        display: block;



    } */



    .navbar ul li:hover .dropdown a {

        background: transparent;



        border: none;

    }



    .navbar nav {

        height: 100%;



        overflow-y: scroll;



        padding-top: 40px;



        position: relative;

    }



    .navbar ul li a .icon svg,

    .navbar ul li:hover a .icon svg {

        transform: rotate(270deg);

    }



    .navbar ul li a {

        justify-content: space-between;

    }



    .navbar .close_icon {

        display: block;



        position: absolute;



        top: 10px;



        right: 10px;



        cursor: pointer;

    }

}



@media (max-width: 991px) {

    .search_section {

        order: 2;



        width: 100%;



        margin-top: 0px;

    }



    header .search_section label,

    header .search_section input {

        width: 100%;

        min-width: 100%;

    }

}



@media (max-width: 767px) {

    .product-content .contant{

        grid-template-columns: 1fr 1fr 1fr;

    }

    .product-content.new .contant {

        grid-template-columns: 1fr 1fr 1fr !important;

    }



    /* .slick-slide img {

        display: block;



        height: 300px;



        object-fit: cover;

    } */

}



@media (max-width: 639px) {

    .product-content .contant{

        grid-template-columns: 1fr 1fr;

    }

    .product-content.new .contant {

        grid-template-columns: 1fr 1fr !important;

    }



    .mobile_menu {

        /* display: none; */

        margin-right: 2px !important;

    }



    .categories {

        display: block;

    }

    .hero-slide .slick-arrow.slick-next{

        right: 0px;

    }

    .hero-slide .slick-arrow.slick-prev{

        left: 0px;

    }

}



@media (max-width: 575px) {

    .product-content h2 {

        font-size: 16px;

    }



    .product-content .title a {

        font-size: 14px;

    }



    .product-content h2 {

        font-size: 16px;

    }



    /* header .right_content .content svg{



        height: 16px;



        width: 16px;



    } */



    header .right_content .content .content_name {

        font-size: 12px;

    }



    header .right_content .content {

        margin-right: 16px !important;

    }



    header .right_content .content:last-child {

        margin-right: 0px !important;

    }

    

}

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

    .navbar .container-fluid{

        width: 80%;

    }

}











/* product categories------------------------------------------------------------------

--------------------------------------------------------------------------------------- */

.navigation ul li a{

    color: var(--black-color);

}

.navigation {

    margin-top: 8px;

    margin-bottom: 8px;

}

.navigation ul{

    white-space: nowrap;

    -webkit-line-clamp: 1;



    overflow: hidden;



    display: -webkit-box;



    -webkit-box-orient: vertical;

}

.navigation ul li {

    color: var(--blue-color);

    font-size: 12px;

    display: flex;

    align-items: center;

}

.navigation .share a{

    font-size: 14px;

    font-weight: 600;

    color: var(--black-color);

}

.navigation .items_count{

    margin-top: 4px;

    font-size: 16px;

    font-weight: 600;

    color: var(--black-color);

    display: flex;

    align-items: center;

}

.navigation .items_count span{

    font-size: 12px;

    margin-left: 8px;

    color: var(--gray-color);

}

.navigation .shrted_by{

    font-size: 16px;

    font-weight: 600;

    color: var(--gray-color);

}

.navigation .shrted_by select{

    border: 1px solid var(--border-color);

    border-radius: 4px;

    outline: none;

    font-weight: 600;

    padding: 6px 8px;

    cursor: pointer;

}







.product_categories_section .tab-content{

	display: none;

}



.product_categories_section .tab-content.current{

	display: inherit;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

}   

.product_categories_section .tab-content.current img{

    height: 100%;

    padding: 20px;

    object-fit: contain;
}

.image img {

    padding: 26px;

}

.product_categories_section .static_section .tabs li{

    cursor: pointer;

    background: var(--white-color);

    padding: 8px;

    border: 1px solid transparent;

}
.product_categories_section .static_section .tab-content {
    height: 540px;
}
.product_categories_section .static_section .tabs li img{
    height: 85px;
    object-fit: contain;
}
.product_categories_section .static_section .tabs li.current{

    border: 1px solid var(--blue-color);

}

.product_categories_section .static_section .tab-content{

    background: var(--border-color);

}

/* .product_categories_section .static_section{

    position: sticky;

    top: 0px;

    width: 100%;

} */

.product_categories_section .static_section .button_inner{

    margin-top: 20px;

}

.product_categories_section .static_section .button_inner .button{

    border: 1px solid var(--blue-color);

    background: var(--border-color);

    color: var(--black-color);

    display: block;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    font-size: 16px;

    font-weight: 500;

}

.product_categories_section .static_section .button_inner .button svg{

    margin-right: 5px;

}

.product_categories_section .static_section .button_inner .button.green{

    color: var(--white-color);

    background: var(--blue-color);

}







.product_categories_section .button-content{

	display: none;

}



.product_categories_section .button-content.current{

	display: inherit;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

}   

.product_categories_section .deatils-content h2{

    font-size: 20px;

    font-weight: 600;

    color: var(--black-color);

    margin-bottom: 8px;

    text-align: justify;

}

.product_categories_section .deatils-content .by{

    font-size: 16px;

    font-weight: 500;

    color: var(--gray-color);

    margin-bottom: 12px;

}

.product_categories_section .deatils-content .ratting{

    margin-bottom: 20px;

}

.product_categories_section .deatils-content .ratting a{

    font-size: 14px;

    font-weight: 600;

    color: var(--gray-color);

}

.product_categories_section .deatils-content .ratting a span{

    background: var(--blue-color);

    color: var(--white-color);

    padding: 2px 8px;

    margin-right: 5px;

    border-radius: 4px;

}

.product_categories_section .deatils-content .ratting a span svg{

    margin-right: 5px;

}

.product_categories_section .deatils-content .prize{

    font-size: 28px;

    font-weight: 700;

    color: var(--black-color);

    display: flex;

    align-items: center;

}

.product_categories_section .deatils-content .prize del{

    margin-left: 5px;

    font-size: 16px;

    color: var(--gray-color);

    font-weight: 500;

}

.product_categories_section .deatils-content .prize span{

    margin-left: 5px;

    font-size: 18px;

    font-weight: 700;

    color: var(--blue-color);

}

.product_categories_section .deatils-content .stoke{

    color: var(--blue-color);

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 10px;

}

.product_categories_section .deatils-content .quantity{

    font-size: 16px;

    font-weight: 600;

    color: var(--gray-color);

    margin-bottom: 10px;

}

.product_categories_section .deatils-content .quantity select{

    cursor: pointer;

    font-size: 16px;

    font-weight: 600;

    margin-left: 10px;

    outline: none;

    border: 1px solid var(--border-color);

    padding: 5px 10px;

    border-radius: 4px;

}

.product_categories_section .deatils-content .language{

    font-size: 16px;

    font-weight: 500;

    color: var(--gray-color);

    margin-bottom: 10px;

}

.product_categories_section .deatils-content .language span{

    margin-left: 10px;

    color: var(--black-color);

}

.product_categories_section .deatils-content .language_button button{

    border: 1px solid var(--black-color);

    color: var(--black-color);

    background: transparent;

    font-size: 14px;

    font-weight: 600;

    margin-right: 10px;

    padding: 8px 12px;

    border-radius: 4px;

    text-transform: uppercase;

}

.product_categories_section .deatils-content .language_button{

    margin-bottom: 20px;

}

.product_categories_section .deatils-content .language_button .current button{

    border: 1px solid var(--blue-color);

    color: var(--blue-color);

    background: var(--border-color);

}

.product_categories_section .deatils-content .live_class_video img{

    height: 130px;

    border-radius: 10px;

}

.product_categories_section .deatils-content .live_class_video{

    box-shadow: 0px 3px 10px rgba(0,0,0,.09);

    border-radius: 10px;

    white-space: nowrap;

    width: 80%;

}

.product_categories_section .deatils-content .live_class_video a{

    padding: 0px 20px 0px 0px;

}

.product_categories_section .deatils-content .live_class_video svg{

    stroke: var(--blue-color);

}

.product_categories_section .deatils-content .live_class_video .text{

    font-size: 24px;

    font-weight: 700;

    color: var(--blue-color);

}

.product_categories_section .deatils-content .delivery_check{

    font-size: 16px;

    color: var(--gray-color);

    font-weight: 600;

    margin-top: 20px;

}

.product_categories_section .deatils-content .pin_check_delivery input::-webkit-outer-spin-button,

.product_categories_section .deatils-content .pin_check_delivery input::-webkit-inner-spin-button {

  -webkit-appearance: none;

  margin: 0;

}



/* Firefox */

.product_categories_section .deatils-content .pin_check_delivery input[type=number] {

  -moz-appearance: textfield;

}

.product_categories_section .deatils-content .pin_check_delivery{

    /* padding: 5px; */

    box-shadow: 0px 3px 10px rgba(0,0,0,.09);

    display: inline-block;

    border-radius: 6px;

    overflow: hidden;

    margin-top: 10px;

}

.product_categories_section .deatils-content .pin_check_delivery input{

    border: none;

    padding: 10px;

    outline: none;

    color: var(--black-color);

}

.product_categories_section .deatils-content .pin_check_delivery .icon{

    padding: 10px 0px 10px 10px;

}

.product_categories_section .deatils-content .pin_check_delivery input::placeholder{

    color: var(--gray-color);

}

.product_categories_section .deatils-content .pin_check_delivery button{

    border: none;

    background: transparent;

    color: var(--blue-color);

    padding: 10px;

}



.product_categories_section .details_preview .details-content{

	display: none;

}



.product_categories_section .details_preview .details-content.current{

	display: inherit;

}

.product_categories_section .details_preview{

    border: 1px solid var(--blue-color);

    border-radius: 10px;

    overflow: hidden;

    margin-top: 10px;

}

.product_categories_section .details_preview .details_preview_tabs{

    background: #f8f8f8;

}

.product_categories_section .details_preview .details_preview_tabs li{

    width: 100%;

}

.product_categories_section .details_preview .details_preview_tabs button{

    width: 100%;

    display: block;

    border: none;

    padding: 12px 10px;

    border: none;

    background: transparent;

    font-size: 12px;

    font-weight: 500;

}

.product_categories_section .details_preview .details_preview_tabs .tab-link.current button{

    border-bottom: 1px solid var(--blue-color);

    color: var(--blue-color);

    font-size: 12px;

    font-weight: 700;

}

.product_categories_section .details_preview .preview {

    padding: 20px;

    /* max-height: 14em;

    overflow-y: auto; */

}



.product_categories_section .details_preview .preview ul li{

    margin-bottom: 5px;

}

.product_categories_section .details_preview .preview ul li:last-child{

    margin-bottom: 0px;

}

.product_categories_section .details_preview .preview .list li{

    list-style: disc;

}

.product_categories_section .product_details{

    margin-top: 20px;

}

.product_categories_section .product_details h3{

    font-size: 17px;

    font-weight: 700;

}

.product_categories_section .delivery_type{

    margin-top: 40px;

    margin-bottom: 40px;

}

.product_categories_section .delivery_type .content{

    padding: 0px 10px;

    border-right: 1px solid var(--border-color);

    height: 100%;

    font-size: 14px;

    font-weight: 600;

}

.product_categories_section .delivery_type .col-4:last-child .content{

    border-right: none;

}

.product_categories_section .delivery_type .content img{

    margin-bottom: 10px;

}

.product_categories_section .all_review_section{

    border: 1px solid var(--border-color);

    border-radius: 10px;

    overflow: hidden;

}

.product_categories_section .all_review_section h2{

    margin-bottom: 20px;

    font-size: 22px;

    font-weight: 700;

}

.product_categories_section .all_review_section .review_top{

    padding: 24px 32px;

}

.product_categories_section .all_review_section .review_top .total_review .main{

    font-size: 32px;

    font-weight: 700;

}

.product_categories_section .all_review_section .review_top .total_review p{

    font-size: 16p;

    font-weight: 500;

    color: var(--gray-color);

}

.product_categories_section .all_review_section .review_top .col-5{

    border-right: 1px solid var(--border-color);

}

.product_categories_section .all_review_section .review_top .progress_review .progress_inner span {

    width: 30px;

    margin-right: 8px;

    font-size: 14px;

    font-weight: 600;

    justify-content: space-around;

    color: var(--blue-color);

}

.product_categories_section .all_review_section .review_top .progress_review .progress_inner span svg{

    height: 14px;

    width: 14px;

    margin-left: 5px;

    fill: var(--black-color);

}



.product_categories_section .all_review_section .review_top .progress_review input{

    display: block;

    height: 20px;

    width: 20px;

    margin-right: 10px;

}

.product_categories_section .all_review_section .review_top .progress_review .progress_inner .progress{

    height: 4px;

    border-radius: 20px;

}

.product_categories_section .all_review_section .review_top .progress_review .progress_inner .progress .progress-bar{

    border-radius: 20px;

    background: var(--blue-color);

}

.product_categories_section .all_review_section .review_top .progress_review .progress_inner .progress .progress-bar.yellow{

    background: rgb(245 158 11);

}

.product_categories_section .all_review_section .review_top .progress_review .progress_inner .total{

    margin-left: 10px;

    color: var(--black-color);

    font-size: 16px;

    font-weight: 700;

}

.product_categories_section .all_review_section .bottom_review .content{

    border-top: 1px solid var(--border-color);

    padding: 16px;

    cursor: pointer;

}

.product_categories_section .all_review_section .bottom_review .content .ratting{

    margin-bottom: 0px;

    font-size: 14px;

    font-weight: 700;

}

.product_categories_section .all_review_section .bottom_review .content .ratting span{

    background: var(--blue-color);

    padding: 2px 8px;

    border-radius: 4px;

    color: var(--white-color);

    margin-right: 10px;

    font-size: 14px;

    font-weight: 600;

}

.product_categories_section .all_review_section .bottom_review .content p{

    font-size: 14px;

    font-weight: 500;

    margin-top: 10px;

}

.product_categories_section .all_review_section .bottom_review .content .name{

    font-size: 12px;

    font-weight: 600;

}

.product_categories_section .all_review_section .bottom_review .content .date_time{

    font-size: 10px;

}

.product_categories_section .all_review_section .bottom_review .content a{

    color: var(--blue-color);

    font-size: 16px;

    font-weight: 600;

}



/* .product_categories_section .accordion{

    margin-top: 40px;

    margin-bottom: 40px;

}

.product_categories_section .accordion h3{

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 20px;

}



.product_categories_section .accordion .accordion-item{

    border: none;

}

.product_categories_section .accordion .accordion-item .accordion-button{

    background: #7899422c;

    color: var(--black-color);

    border-radius: 10px !important; 

    font-size: 18px;

    font-weight: 600;

    padding: 24px;

}

.accordion-button:focus{

    box-shadow: none;

}

.product_categories_section .accordion .accordion-item .accordion_listing li{

    list-style: disc;

    margin-bottom: 10px;

}

.product_categories_section .accordion .accordion-item .accordion_listing li:last-child{

    margin-bottom: 0px;

}

.product_categories_section .accordion .accordion-item .accordion_listing li a{

    color: var(--blue-color);

} */







.product-content.new .contant {

    display: grid;

    grid-template-columns: 1fr 1fr 1fr 1fr;

    gap: 18px;

}



.caegories_content .filter_section{

    box-shadow: 0px 3px 10px rgba(0,0,0,.09);

    border-radius: 10px;

}

.caegories_content .filter_section .inner{

    padding: 12px 16px;

}

.caegories_content .filter_section .title{

    font-size: 17px;

    font-weight: 600;

    margin-bottom: 10px ;

}

.caegories_content .filter_section .inner .text{

    font-size: 14px;

    font-weight: 600;

}

.caegories_content .filter_section .inner li a{

    font-size: 14px;

    font-weight: 600;

    display: flex;

    align-items: center;

    color: var(--gray-color);

}

.caegories_content .inner_main{

    border-top: 1px solid var(--border-color);

    padding: 12px 16px;

}

.caegories_content .inner_main .checkbox_content .check_box{

    margin-bottom: 10px;

}

.caegories_content .inner_main .checkbox_content .check_box:last-child{

    margin-bottom: 0px;

}

input[type=checkbox] {

    accent-color: var(--blue-color);

  }

.caegories_content .inner_main .checkbox_content input{

    height: 20px;

    width: 20px;

    border-radius: 4px;

    margin-right: 10px;

}



.filter_section .accordion-item{

    border: none;

    border-radius: 0px;

}

.filter_section .accordion-button{

    background: transparent;

    padding: 0px;

    font-size: 14px;

    font-weight: 600;

    color: var(--black-color);

    display: flex;

    align-items: center;

    margin-top: 10px;

}

.filter_section .accordion-button::after{

    display: none;

}







.categories_text_bottom h2{

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 20px;

    color: var(--black-color);

}

.categories_text_bottom b{

    color: var(--black-color);

}

.categories_text_bottom p{

    font-size: 18px;

    margin-bottom: 18px;

}

.categories_text_bottom p a{

    color: var(--blue-color);

    font-weight: 600;

}

.categories_text_bottom .list{

    margin-bottom: 18px;

}

.categories_text_bottom .list li{

    list-style: disc;

    font-size: 16px;

}

.categories_text_bottom .list li a{

    color: var(--blue-color);

    font-weight: 600;

}

.categories_text_bottom .dropper{

    font-size: 16px;

    font-weight: 600;

    font-style: italic;

    border-left: 2px solid var(--gray-color);

    background: var(--border-color);

    padding: 8px 0 8px 10px;

    display: block;

    margin-bottom: 18px;

    color: var(--blue-color);

}













/* news blog */

.news_blog_section .main_hedding h1{

    font-size: 48px;

    font-weight: 700;

    color: var(--black-color);

}

.news_blog_section .main_hedding h2{

    font-size: 20px;

    font-weight: 600;

    color: var(--black-color);

}

.news_blog_section .main_hedding .title{

    position: relative;

}

.news_blog_section .main_hedding .title h6{

    font-size: 20px;

    font-weight: 600;

    color: var(--black-color);

}

.news_blog_section .main_hedding .title .design{

    position: absolute;

    top: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

}

.news_blog_section .main_hedding .categories_tab{

    row-gap: 14px;

    column-gap: 14px;

}

.news_blog_section .main_hedding .categories_tab .content a{

    padding: 9px 20px;

    border: 1px solid var(--border-color);

    color: var(--black-color);

    border-radius: 40px;

    display: inline-block;

    font-size: 14px;

    font-weight: 500;

    cursor: pointer;

}

.news_blog_section .main_hedding .categories_tab .content a:hover,

.news_blog_section .main_hedding .categories_tab .content a.current{

    background: var(--border-color);

    color: var(--blue-color);

}

.news_blog_section .content img{

    border-radius: 4px;

}

.news_blog_section .content .title{

    font-size: 16px;

    font-weight: 600;

    color: var(--black-color);

    margin-top: 10px;

}

.news_blog_section .content .date{

    color: var(--gray-color);

    font-size: 14px;

    font-weight: 600;

    margin-top: 5px;

}

.news_blog_section h3{

    font-size: 28px;

    font-weight: 700;

    color: var(--black-color);

}

.news_blog_section .content .blog_tab{

    margin-top: 10px;

}

.news_blog_section .content .blog_tab div{

    background: var(--border-color);

    border-radius: 4px;

    padding: 2px 8px;

    color: var(--blue-color);

    font-weight: 600;

    font-size: 14px;

    display: inline-block;

    margin-right: 5px;

    margin-bottom: 5px;

}







/* news blog details */

.blog_details_section .content h2{

    font-size: 32px;

    font-weight: 700;

    color: var(--black-color);

}

.blog_details_section .content .inner{

    margin-top: 16px;

}

.blog_details_section .content .inner p{

    font-size: 18px;

    font-weight: 600;

    color: var(--gray-color);

}

.blog_details_section .content .inner a{

    color: var(--black-color);

    font-size: 14px;

    font-weight: 600;

}

.blog_details_section .content .image{

    margin-top: 40px;

    margin-bottom: 40px;

}

.blog_details_section .content p{

    font-size: 18px;

    color: var(--black-color);

    margin-bottom: 18px;

}

.blog_details_section .content p a{

    color: var(--blue-color);

    font-weight: 600;

}

.blog_details_section .content b{

    color: var(--black-color);

}

.blog_details_section .content h3{

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 20px;

}

.blog_details_section .content ul{

    margin-bottom: 18px;

}

.blog_details_section .content ul li{

    list-style: disc;

}

.blog_details_section .content h4{

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 18px;

}

.blog_details_section .content .number-list li{

    list-style: auto;

}

.blog_details_section .content h5{

    font-size: 18px;

    font-weight: bolder;

    color: var(--black-color);

}

.blog_details_section .recommended_section h3{

    font-size: 18px;

    font-weight: 600;

    color: var(--black-color);

}

.blog_details_section .recommended_section a{

    color: var(--blue-color);

}

.blog_details_section .recommended_section .content a{

    color: var(--black-color);

}

.blog_details_section .recommended_section .content{

    margin-bottom: 10px;

}

.blog_details_section .recommended_section .content .image{

    overflow: hidden;

    border: 1px solid var(--border-color);

    border-radius: 10px;

    padding: 10px;

    margin: 0px;

}

.blog_details_section .recommended_section .content h4{

    font-size: 16px;

    font-weight: 600;

    overflow: hidden;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;

    margin-bottom: 0px;

}

.blog_details_section .recommended_section .content .prize{

    font-size: 18px;

    font-weight: 700;

    color: var(--black-color);

}

.blog_details_section .recommended_section .content .prize span{

    color: var(--blue-color);

    font-weight: 700;

    font-size: 14px;

}

.blog_details_section .recommended_section .content del{

    font-size: 14px;

    font-weight: 500;

    color: var(--gray-color);

}



.blog_details_section .recommended_section .add{

    border-radius: 10px;

    overflow: hidden;

    margin: 20px 50px;

}

.blog_details_section .recommended_section .discover ul{

    gap: 10px;

}

.blog_details_section .recommended_section .discover a{

    padding: 6px 16px;

    background: var(--border-color);

    color: var(--black-color);

    font-size: 14px;

    font-weight: 600;

    display: inline-block;

    border-radius: 40px;

}

.blog_details_section .recommended_section .discover a:hover{

    background: var(--gray-color);

}



.related_product .title{

    margin-bottom: 20px;

}

.related_product .title .text{

    font-size: 28px;

    font-weight: 700;

}

.related_product .slide_arrow{

    width: 120px;

}

.related_product .slide_arrow button{

    background: var(--blue-color);

    border-radius: 50px;

    border: none;

    height: 40px;

    width: 40px;

}

.related_product .slide_arrow button::after{

    font-size: 12px;

    color: var(--white-color);

}

.related_product .back_blog{

    padding: 6px 14px;

    font-size: 20px;

    font-weight: 600;

    background: var(--border-color);

    display: inline-block;

    border-radius: 50px;

    color: var(--black-color);

}

.related_product .back_blog svg{

    transform: rotate(180deg);

}









/* login */



.login_form{

    height: 100vh;

}

.login_form .image img{

    height: 100%;

    object-fit: cover;

}

.login_form .login .logo{

    margin-bottom: 20px;

}

.login_form .login .logo img{

    height: 100px;

}

.login_form .login h4{

    font-size: 24px;

    font-weight: normal;

    color: var(--black-color);

}

.login_form .login h2{

    font-size: 34px;

    font-weight: 700;

    color: var(--black-color);

}

.login_form .login p{

    font-size: 16px;

    font-weight: normal;

    color: var(--black-color);

}

.login_form .login span,

.login_form .login input{

    outline: none;

    padding: 12px 20px;

    border: none;

    font-size: 16px;

    font-weight: 700;

    color: var(--black-color);



}

.login_form .login span {

    /* -webkit-appearance: none;

    -moz-appearance: none;

    text-indent: 1px;

    text-overflow: ''; */

    padding-right: 0px;

  }

  .login_form .login .input_section{

    box-shadow: 0px 3px 10px rgba(0,0,0,.09);

    border-radius: 4px;

    display: inline-block;

  }

  .login_form .login button{

    border: none;

    outline: none;

    background: var(--blue-color);

    border-radius: 10px;

    display: inline-block;

    margin-top: 20px;

    padding: 12px 80px;

    text-align: center;

    color: var(--white-color);

  }

  .googlebutton{

    border: none;

    outline: none;

    background: var(--blue-color);

    border-radius: 10px;

    display: inline-block;

    margin-top: 20px;

    padding: 12px 48px;

    text-align: center;

    color: var(--white-color);

  }









  /* blank page */

  .blank_section h3{

    margin-bottom: 10px;

    font-size: 17px;

    font-weight: 600;

    color: var(--blue-color);

  }

  .blank_section p{

    font-size: 17px;

    font-weight: 500;

    color: var(--gray-color);

  }

  .blank_section a{border: none;

    outline: none;

    background: var(--blue-color);

    border-radius: 10px;

    display: inline-block;

    padding: 12px 80px;

    text-align: center;

    color: var(--white-color);

  }









  /* blag tags */



  .news_blog_section .new-details-content{

	display: none !important;

}



.news_blog_section .new-details-content.current{

	display: flex !important;

}   









/* cart */



.cart_section .content{

    padding: 15px;

    border-radius: 10px;

    box-shadow: 0px 3px 10px rgba(0,0,0,.09);

    background: var(--white-color);

}

.cart_section .content .image{

    /* padding: 15px; */

    border-radius: 10px;

    background: var(--border-color);

}

.cart_section .content h2 a{

    color: var(--black-color);

    font-size: 20px;

    font-weight: 600;

    overflow: hidden;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;

}

.cart_section .content .prize{

    font-size: 16px;

    font-weight: 700;

    color: var(--black-color);

}
.cart_section .content .prize del{
    color: var(--gray-color);
    font-weight: 500;
}

.cart_section .content .quantity span{

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 10px;

}

.cart_section .content .quantity .number span{

    font-size: 16px;

    padding: 4px 10px;

    background: var(--blue-color);

    border-radius: 4px;

    cursor: pointer;

}

.cart_section .content .quantity .number input{

    text-align: center;

    outline: none;

    border: none;

    color: var(--blue-color);

    border-radius: 4px;
    font-size: 16px;
    max-width: 40px;
}

.cart_section .content .quantity .number input::-webkit-outer-spin-button,

.cart_section .content .quantity .number input::-webkit-inner-spin-button {

  -webkit-appearance: none;

  margin: 0;

}

.cart_section .content .quantity .delete_item a{

    color: var(--white-color);

    background: var(--blue-color);

    padding: 4px 8px;

    border-radius: 4px;

}

.cart_section .popular_content h3{

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 20px;

}

.cart_section .popular_content .box_cart h4{

    font-weight: 600;

    font-size: 14px;

    overflow: hidden;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;

    color: var(--black-color);

    margin-top: 6px;

    margin-bottom: 0px;

}

.cart_section .popular_content .box_cart .prize{

    font-size: 16px;

    font-weight: 700;

    color: var(--black-color);

    margin-bottom: 6px;

}

.cart_section .popular_content .box_cart .prize del{

    font-size: 12px;

    font-weight: 500;

    color: var(--gray-color);

}

.cart_section .popular_content .box_cart .off{

    font-size: 14px;

    color: var(--blue-color);

    font-weight: 700;

    display: inline-block;

}

/* .cart_section .popular_content .box_cart{

    border: 1px solid var(--border-color);

    border-radius: 10px;

    overflow: hidden;

} */

/* .cart_section .popular_content .box_cart .image{

    border-radius: 0px;

} */

.cart_section .popular_content .box_cart a.button{

    font-size: 13px;

    display: block;

    color: var(--blue-color);

    background: transparent;

    padding: 4px;

    border: 1px solid var(--blue-color);

    margin-top: 6px;

}

.cart_section .popular_content .cart_slide .swiper-button-prev,

.cart_section .popular_content .cart_slide .swiper-button-next{

    height: 40px;

    width: 40px;

    background: var(--blue-color);

    border-radius: 60px;

}

.cart_section .popular_content .cart_slide .swiper-button-prev::after,

.cart_section .popular_content .cart_slide .swiper-button-next::after{

    font-size: 16px;

    color: var(--white-color);

}





.cart_section .order_details .content h2{

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 10px;

    color: var(--black-color);

}

.cart_section .order_details .content .inener_side{

    border-top: 1px solid var(--border-color);

    padding: 10px 0px;

}

.cart_section .order_details .content .inener_side h4{

    font-size: 14px;

    font-weight: 500;

    color: var(--black-color);

}

.cart_section .order_details .content .inener_side .prize{

    font-size: 14px;

    font-weight: 600;

    color: var(--black-color);

}

.cart_section .order_details .content .inener_side span{

    color: var(--blue-color);

    font-size: 18px;

    font-weight: 600;

}

.cart_section .order_details .content .inener_side h3{

    font-size: 16px;

    font-weight: 500;

    color: var(--black-color);

}

.cart_section .order_details .content .inener_side .total{

    font-size: 16px;

    font-weight: 700;

    color: var(--black-color);

}

.cart_section .order_details .content .inener_side a{

    font-size: 16px;

    padding: 20px;

    display: block;

    text-align: center;

    border-radius: 6px;

    background: var(--blue-color);

    color: var(--white-color);

    margin-top: 20px;

    line-height: 1;

    border-color: var(--blue-color);

}

.cart_section .order_details .inner_type p{

    font-size: 12px;

    font-weight: 600;

    margin-top: 10px;

    color: var(--black-color);

}











/* check out */

.checkout_section h1{

    font-size: 24px;

    font-weight: 700;

    color: var(--black-color);

    margin-bottom: 20px;

}

.checkout_section form{

    padding: 30px;

}

.checkout_section form label{

    display: block;

}

.checkout_section form .inputs{

    margin-bottom: 20px;    

}

.checkout_section form input,

.checkout_section form textarea,

.checkout_section form select{

    outline: none;

    border-radius: 4px;

    border: 1px solid var(--border-color);

    width: 100%;

    padding: 8px 16px;

    font-size: 14px;

    font-weight: 300;

    color: var(--black-color);

}

.checkout_section form input::placeholder,

.checkout_section form textarea::placeholder{

    color: var(--gray-color);

}

.checkout_section form select {

    -webkit-appearance: none;

    -moz-appearance: none;

    text-indent: 1px;

    text-overflow: '';

    cursor: pointer;

}

.checkout_section form button{

    font-size: 16px;

    padding: 20px;

    display: inline-block;

    text-align: center;

    border-radius: 6px;

    background: var(--blue-color);

    color: var(--white-color);

    margin-top: 20px;

    line-height: 1;

    border: none;

}

.checkout_section .order_details .inener_side .coupne_code{

    background: var(--border-color);

    padding: 10px;

    border-radius: 4px;

    margin-top: 10px;

}

.checkout_section .order_details .inener_side .coupne_code a{

    color: var(--blue-color);

    background: transparent;

    padding: 0px;

    margin-top: 0px;

    padding: 4px;

    color: var(--blue-color);

}

.checkout_section .order_details .inener_side .coupne_code input::placeholder{

    color: var(--black-color);

}

.checkout_section .order_details .inener_side .coupne_code input{

    width: 100%;

    outline: none;

    border: none;

    background: transparent;

    padding: 4px;

}

.checkout_section .order_details .inener_side .coupne_code .self_coupon{

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 20px;

}



.checkout_section .order_details .inener_side .veiw_summery a{

    padding: 10px;

    border-radius: 5px;

    border: 1px solid var(--border-color);

    color: var(--blue-color);

    background: transparent;

    margin-top: 0px;

}

.checkout_section .order_details .inener_side .veiw_summery a span{

    font-size: 14px;

}

.checkout_section .order_details .inener_side .veiw_summery a .image{

    background: transparent;

    padding: 0px;



}

.checkout_section .order_details .inener_side .veiw_summery a img{

    width: 50px;

}

.checkout_section .order_details .donate{

    border: 1px solid var(--border-color);

    border-bottom: 2px solid var(--blue-color);

    padding: 10px;

    border-radius: 10px;

    margin-bottom: 20px;

}

.checkout_section .order_details .donate h5{

    font-size: 14px;

    font-weight: 600;

    color: var(--black-color);

    margin-bottom: 0px;

}

.checkout_section .order_details .donate a{

    color: var(--blue-color);

    font-size: 12px;

    font-weight: 500;

}

.checkout_section .order_details .donate input{

    height: 20px;

    width: 20px;

}

.checkout_section .order_details .donate span{

    border: 1px solid var(--border-color);

    padding: 5px 10px;

    border-radius: 4px;

    display: inline-block;

    line-height: 1;

    font-size: 14px;

}

.process_design .inner {

    width: 320px;

    position: relative;

    margin: 0px auto;

}

.process_design .inner hr{

    width: 226px;

    margin: 0px;

    margin-top: 5px;

    position: absolute;

    left: 36px;

    border-color: var(--blue-color);

    top: 0px;

}



.process_design .inner .circle{

    font-size: 12px;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    color: var(--black-color);

}

.process_design .inner .circle span{

    height: 10px;

    width: 10px;

    background: var(--border-color);

    display: inline-block;

    border-radius: 10px;

    margin-bottom: 10px;

}

.process_design .inner .circle.active span{

    background: var(--blue-color);

}





/* content */

.content-section h2{

    font-size: 48px;

    font-weight: 600;

    color: var(--black-color);

    margin-bottom: 10px;

}

.content-section p{

    color: var(--black-color);

    font-size: 16px;

    font-weight: 500;

}

.content-section p a{

    color: var(--black-color);

}

.content-section ul li{

    list-style: disc;

    color: var(--black-color);

}

.content-section ul li a{

    color: var(--black-color);

}





/* track order */



.track-section h2{

    font-size: 18px;

    font-weight: 600;

    color: var(--black-color);

    margin-bottom: 20px;

}

.track-section h3{

    font-size: 16px;

    font-weight: 600;

    color: var(--black-color);

    margin-bottom: 20px;

}

.track-section input{

    border: 1px solid var(--border-color);

    padding: 10px 20px;

    border-radius: 4px;

    outline: none;

    color: var(--black-color);

    font-weight: 300;

    margin-bottom: 10px;

}

.track-section button{

    padding: 10px 20px;

    border-radius: 4px;

    border: none;

    background: var(--blue-color);

    color: var(--white-color);

}

.track-section tr td{

    font-size: 16px;

    color: var(--black-color);

    font-weight: 300;

}





/* dashboard */



.caegories_content .dashboard_menu ul li{

    padding: 10px 20px;

    font-size: 16px;

    display: inline-block;

    color: var(--blue-color);

    display: block;

    border: 1px solid var(--white-color);

    cursor: pointer;

}

.caegories_content .dashboard_menu ul li.current,

.caegories_content .dashboard_menu ul li:hover{

    background: var(--blue-color);

    color: var(--white-color);

}



.caegories_content .dashboard-content{

	display: none;

}

.caegories_content .dashboard-content.current{

	display: inherit;

}   









.section-small .address-checkout{

    border: 1px solid var(--border-color);

    padding: 10px;

    border-radius: 5px;

}

.section-small .address-checkout .change-address{

    color: var(--blue-color);

    font-weight: 700;

    font-size: 14px;

}

.section-small .address-checkout h6,

.section-small .accordion .card-header,

.section-small .cart-summary .cart-summary-header{

    font-weight: 700;

}

.section-small .address-checkout p,

.section-small .address-checkout .address-full{

    font-size: 14px;

    font-weight: 400;

}



.section-small .accordion .price-new{

    color: var(--blue-color);

}

.section-small .accordion img{

    width: 40px;

    margin-right: 10px;

}

.section-small .accordion ul li{

    font-size: 14px;

    font-weight: 400;

}

.section-small .apply-coupons-section input:focus{

    box-shadow: none;

    border: 1px solid var(--border-color);

}

.section-small .apply-coupons-section .coupon-pop{

    font-size: 14px;

    font-weight: 700;

    color: var(--blue-color);

}

.section-small .cart-summary .cart-summary-body span{

    color: var(--blue-color);

}



.ebooks .content {

    background: var(--white-color);

    border: 1px solid var(--border-color);

    border-radius: 4px;

    overflow: hidden;

}

.ebooks .content p {

    padding: 10px;

    font-size: 14px;

    color: var(--gray-color);

    text-align: justify;

    margin-bottom: 0px;

}

.ebooks .content a {

    margin: 0px 10px 10px 10px;

    display: inline-block;

    padding: 4px 10px;

    background: var(--blue-color);

    color: var(--white-color);

    font-size: 14px;

    border-radius: 4px;

}





.product-content .contant .box .icon svg {

    height: 20px;

    width: 20px;

    fill: crimson;

}

.product-content .contant .box .icon {

    position: absolute;

    top: 10px;

    right: 10px;

    background: white;

    padding: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0px 0px 55px #00000020;

    border-radius: 50px;

    cursor: pointer;

}















/* form */

.dashboard-content-items .dashboard-content{

    margin: 0px;

    border-radius: 8px;

    box-shadow: 0px 0px 50px #00000020;

}

.dashboard-content-items .dashboard-content h2{

    padding: 20px 20px;

    border-bottom: 1px solid var(--border-color);

    font-size: 24px;

}

.dashboard-content-items .dashboard-content label{

    display: block;

    font-size: 14px;

}

.dashboard-content-items .dashboard-content .content{

    padding: 20px 20px 0px 20px;

}

.dashboard-content-items .dashboard-content .content input{

    display: block;

    width: 100%;

    border-radius: 4px;

    border: 1px solid var(--border-color);

    outline: none;

    padding: 10px 20px;

    font-size: 14px;

}

.dashboard-content-items .dashboard-content .form-button{

    margin-top: 20px;

    padding: 20px;

    border-top: 1px solid var(--border-color);

}







/* accordions */



.faq-drawer {

    margin-top: 10px;

}

  

  .faq-drawer__content-wrapper {

    max-height: 0px;

    overflow: hidden;

    transition: 0.25s ease-in-out;

  }

  

  .faq-drawer__title a{

    color: var(--black-color);

  }

  .faq-drawer__title {

    cursor: pointer;

    display: block;

    font-size: 14px;

    font-weight: 600;

    position: relative;

    margin-bottom: 0;

    transition: all 0.25s ease-out;

  }

  

  .faq-drawer__title.categories-none::after{

    display: none;

  }

  .faq-drawer__title::after {

    border-style: solid;

    border-width: 1px 1px 0 0;

    content: " ";

    display: inline-block;

    float: right;

    height: 10px;

    position: relative;

    right: 10px;

    top: 2px;

    transform: rotate(135deg);

    transition: 0.35s ease-in-out;

    vertical-align: top;

    width: 10px;

  }



  .faq-drawer__trigger:checked

    + .faq-drawer__title

    + .faq-drawer__content-wrapper {

    max-height: 350px;

  }

  

  .faq-drawer__trigger:checked + .faq-drawer__title::after {

    transform: rotate(-45deg);

    transition: 0.25s ease-in-out;

  }

  


  

  /* @media only screen and (max-width: 600px) {

    .container {

      padding: 80px;

    }

  } */

  



  .product-button {

    display: flex;

    align-items: center;

}

.product-button .smaple-button {

    width: 100%;

    display: flex;

    align-items: center;

    background: var(--gray-color);

    color: #fff;

    justify-content: center;

    height: 40px;

    border-radius: 5px;

    font-size: 12px;

    cursor: pointer;

}

.product-button .addtocart-button {

    width: 100%;

    display: flex;

    align-items: center;

    background: var(--blue-color);

    color: #fff;

    justify-content: center;

    height: 40px;

    border-radius: 5px;

    font-size: 14px;

}



.save-address-checkout {

    cursor: pointer;

    background: var(--white-color);

    border: 3px solid var(--blue-color);

    padding: 10px;

    border-radius: 10px;

}







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

    .checkout_section form{

        padding: 0px;

    }

}

/* @media screen and (max-width: 575px) {

    .product-content .contant .box .ratting {

        bottom: 0px;

    }

} */

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

    header .d-flex.align-items-center{

        width: 100%;

        margin-bottom: 5px;

        justify-content: space-between;

    }

}





.review-page .bottom_review-new{

    border-top: 1px solid var(--border-color);

    padding: 24px 32px;

}

.review-page .content h3{

    font-size: 20px;

    font-weight: 700;

}



.review-page .result-review{

    padding: 24px 32px;

    border-top: 1px solid var(--border-color);

    cursor: pointer;

}

.review-page .result-review .top {

    font-size: 12px;

    font-weight: 700;

}

.review-page .result-review .top span{

    background: var(--blue-color);

    padding: 2px 8px;

    border-radius: 4px;

    color: var(--white-color);

    margin-right: 8px;

}

.review-page .result-review .top span svg{

    margin-right: 4px;

}

.review-page .result-review p{

    margin-bottom: 10px;

    margin-top: 5px;

    font-size: 16px;

}

.review-page .result-review .name{

    font-size: 12px;

    font-weight: 700;

}

.review-page .result-review .date{

    font-size: 10px;

    font-weight: 400;

}



@media (max-width: 575px) {

    .product_categories_section .all_review_section .review_top {

        padding: 12px 12px;

    }

    .review-page .result-review {

        padding: 12px 12px;

    }

    .review-page .bottom_review-new {

        padding: 12px 12px;

    }

}

.review-page .bottom_review-new ul{

    margin-bottom: 0px;

}

.review-page .bottom_review-new ul li.active .page-link{

    background-color: var(--blue-color);

    border-color: var(--blue-color);

}

.review-page .bottom_review-new ul li a{

    color: var(--blue-color);

}

.review-page .bottom_review-new ul li.disabled .page-link{

    color: var(--blue-color);

}





.review_add .item .item_image img{

    height: 100px;

    object-fit: contain;

}

.review_add .item h3{

    font-size: 16px;

    font-weight: 600;

}

.review_add .ratting .icon{

    display: flex;

    align-items: center;

}

.review_add .ratting .icon svg{

    margin-right: 10px;

    cursor: pointer;

}

.review_add .ratting .icon svg:hover path,

.review_add .ratting .icon svg.active path{

    fill: #FF5000;

}

.review_add form label{

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 8px;

}

.review_add form label span{

    font-weight: 500;

}

.review_add form input,

.review_add form textarea{

    outline: none;

    border: 1px solid #D9D9D9;

    padding: 10px;

    border-radius: 4px;

    margin-bottom: 20px;

    font-size: 14px;

}













.reding-pdf .controls {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: 20px;

}

.reding-pdf .controls .control-inner{

    gap: 10px;

}

.reding-pdf .controls .control-inner input {

    display: block;

    width: 100%;

    border-radius: 4px;

    border: 1px solid var(--border-color);

    outline: none;

    padding: 10px 20px;

    font-size: 14px;

}

.reding-pdf .controls button svg{

    height: 20px;

    width: 20px;

}

.reding-pdf .controls span{

    font-size: 14px;

    font-weight: 400;

}

.reding-pdf canvas{

    border: 1px solid var(--border-color);

    background-color: var(--white-color);

    box-shadow: 0px 0px 50px #00000014;

    /* border-radius: 10px; */

    width: 50%;

    margin: auto;

    margin-top: 20px;

}

.reding-pdf h3{

    font-size: 16px;

    font-weight: 600;

}

.reding-pdf .pdf-preview-box button,

.reding-pdf .controls button{

    padding: 10px;

    background-color: transparent;

    border: 1px solid var(--blue-color);

    color: var(--blue-color);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: 0.3s;

}

.reding-pdf .controls button svg path{

    fill: var(--blue-color);

}

.reding-pdf .pdf-preview-box button:hover{

    background-color: var(--blue-color);

    color: var(--white-color);

}

.reding-pdf .pdf-preview-box button:disabled:hover{

    background-color: transparent;

    color: var(--blue-color);

}

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

    .reding-pdf canvas{

        width: 100%;

    }

}



.reding-pdf .pdf-preview-box{

    position: relative;

}

.reding-pdf .pdf-preview-box button{

    position: absolute;

    top: 50%;

    transform: translate(0px, -14px);

}

.reding-pdf .pdf-preview-box button#next-btn{

    right: 0px;

}

.reding-pdf .pdf-preview-box button#prev-btn{

    left: 0px;

}



.book-pdf-preview{

    right: 20px;

    bottom: 20px;

    border-radius: 10px;

    box-shadow: 0px 0px 20px #00000014;

}

.book-pdf-preview a{

    padding: 10px;

    color: var(--black-color);

    border-radius: 10px;

    display: inline-block;

    background-color: var(--white-color);

    display: flex;

    align-items: center;

    gap: 10px;

}





footer .widget-body{

    padding-left: 0px;

    margin-bottom: 0px;

}







.product_categories_section .static_section{

    position: sticky;

    top: 0px;

    left: 0px;

    width: 100%;

}

.pdf_main{

    overflow: hidden;

}

.pdf_main .pdf_inner{

    overflow-y: scroll;

}


.cart-count {
    background: var(--blue-color)  !important;  
}
input.faq-drawer__trigger {
    display: none;
}
.product-content .contant .box .image img {
    height: 250px !important;
    object-fit: contain;
    transition: 0.3s;
}
.product-content .contant .box:hover .image {
    overflow: hidden;
}
.product-content .contant .box:hover .image img{
    transform: scale(1.1);
}
.product-content.catproduct .contant .box .image img,
.multiple-itemsa .image img {
    height: 130px !important;
    padding: 0px;
    object-fit: contain;
}
.multiple-itemsa .slick-slide{
    height: 100% !important;
}
.searchsection .search_section input,
.searchsection .search_section .search a.search_button{
    border: 1px solid var(--white-color) !important;
}


ul#autocomplete {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    background: #FFF;
    z-index: 1;
    max-height: 400px;
    overflow-y: scroll;
    border-radius: 0px;
    margin-top: 1px;
    border: 1px solid var(--blue-color);
    margin: 0px;
    padding: 0px;
    border-radius: 4px;
}
ul#autocomplete li a{
    width: 100%;
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid #E5E5E5;
}
ul#autocomplete li:last-child a{
    border-bottom: none;
}
.product-content.new .contentwrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr !important;
    gap: 12px !important;
    /* overflow: scroll; */
}
.hero-slide .grid-column-2 .slider1 .slick-slide img,
    .hero-slide .grid-column-2 .slider2 .slick-slide img {
    display: block;
    height: 500px;
    object-fit: cover;
}

    .hero-slide .grid-column-2 {
        display: grid;
        gap: 10px;
        grid-template-columns: 1fr 1.5fr;
    }
    .hero-slide .grid-column-2 .slider1,
    .hero-slide .grid-column-2 .slider2{
        width: 100%;
        overflow: hidden;
    }
    .bcode .orderid-box h6 {
    font-size: 16px;
    font-weight: 700;
}
.bcode .orderid-box {
    margin-bottom: 10px;
}
.scanner-list .box{
    border: 1px solid #dee2e6;
    padding: 10px;
    border-radius: 6px;
    background-color: var(--white-color);
    box-shadow: 0px 0px 50px #0000000f;
}
.scanner-list .box span {
    text-align: center;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.section-small .cart-summary .cart-summary-body h5 {
    font-size: 16px;
    text-align: center;
    font-weight: 700;
}
.section-small .cart-summary .cart-summary-body .scanner-image {
    border: 1px solid #DEE2E6;
}
.section-small .cart-summary .cart-summary-body .upid {
    margin-top: 10px;
    text-align: center;
    color: var(--blue-color);
}
.section-small .cart-summary .form-control:focus {
    box-shadow: none;
}
.section-small .cart-summary #payment-preview-box{
    text-align: center;
}
.section-small .cart-summary #payment-preview-box img{
    box-shadow: 0px 0px 50px #0000000f;
}
.section-small .cart-summary .payment-screenshot{
    border: 1px solid #dee2e6;
    padding: 10px;
    border-radius: 6px;
    background-color: var(--white-color);
    box-shadow: 0px 0px 50px #0000000f;
}
.filter_section .faq-drawer__content ul li label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--blue-color) !important;
    font-weight: 400 !important;
}
.filter_section .faq-drawer__content ul li label input{
    border: 1px solid var(--blue-color);
}
.filter_section .faq-drawer__content ul li label a{
    font-weight: 400 !important;
    color: var(--blue-color) !important;
}
.filter_section .faq-drawer__content ul li label span.count {
    background: var(--blue-color);
    height: 18px;
    min-width: 18px;
    max-width: 40px;
    padding: 5px;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    border-radius: 50px;
}
.faq-drawer__trigger:checked + .faq-drawer__title + .faq-drawer__content-wrapper{
    overflow-y: scroll;
}
.ship-popup-title {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: .5px;
}
.ship-table th {
    background:#c02222;
    color:#fff;
    font-size: 14px;
}
.ship-table td {
    vertical-align: middle;
    font-size: 16px;
    font-weight: 500;
}
.ship-badge {
    padding:6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    display:inline-block;
}

.total-row {
    background:#f0f0f0;
    font-size:18px !important;
    font-weight:bold !important;
}

.modal-body {
    padding:25px;
}
.shipping-pop{
    color: var(--blue-color);
    cursor: pointer;
    font-weight: 700;
}
#shipping-popup .modal-content .modal-header button.close {
    border: none;
    color: var(--white-color);
    background: var(--blue-color);
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}



@media (max-width: 1140px) {
    .searchsection .search_section {
        width: 100%;
        order: 1;
    }
    .searchsection .search_section .search label {
        display: block;
        width: 100%;
    }
    .searchsection .search_section input {
        width: 100% !important;
    }
}
@media (max-width: 991px) {
    .product-content.new .contentwrap {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr!important;
    }
    .product-content.new .contentwrap {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr!important;
        gap: 12px !important;
        /* overflow: scroll; */
    }
    .right_content .content i {
        font-size: 18px !important;
    }
    .calltext {
        line-height: 1;
        font-size: 16px;
        justify-content: start !important;
        margin-bottom: -5px !important;
    }
    header .right_content .content .content_name {
        line-height: 1;
        height: 100%;
    }
}
@media (max-width: 767px) {
    .hero-slide .grid-column-2 .slider1 .slick-slide img, .hero-slide .grid-column-2 .slider2 .slick-slide img {
        height: 280px;
    }  
    header .right_content .content .content_name {
        display: none;
    } 
    .calltext {
        font-size: 0px;
    }
    .product-content .contant {
        grid-template-columns: 1fr 1fr;
    }
    .hero-slide .grid-column-2 {
        grid-template-columns: 1fr;
    }
    .categories-menu ul.categories-menu-dropdown-1 {
        margin-top: 2px !important;
        border-radius: 4px;
        position: absolute !important;
        max-height: 420px;
        overflow-y: scroll;
    }
    .categories-menu-dropdown-1,
    .categories-menu-dropdown-2,
    .categories-menu-dropdown-3 {
        display: none;
    }

    .categories-menu-dropdown-1.show,
    .categories-menu-dropdown-2.show,
    .categories-menu-dropdown-3.show {
        display: block;
    }
    .categories-menu ul.categories-menu-dropdown-1 li.categories-menu-dropdown-submenu {
        border-bottom: 1px solid #f1f1f1;
    }
    .categories-menu ul.categories-menu-dropdown-3 {
        box-shadow: none !important;
    }
    .product-content.new .contentwrap {
        grid-template-columns: 1fr 1fr 1fr !important;
    }
}

@media (max-width: 600px) {
    .btnwrap {
        font-size: 14px;
    }
}
@media (max-width: 575px) {
    .a-section {
        padding: 6px 0px;
    }
    header .logo img {
        height: 40px;
        margin-left: 10px;
    }
    section.a-section.searchsection .right_content .content_name {
        display: none;
    }
    .cart-count,
    .wish-count {
        top: -10px !important;
        right: -14px !important;
    }
    .product-content.new .contentwrap {
        grid-template-columns: 1fr 1fr !important;
    }
    header .d-flex.align-items-center {
        width: auto;
        margin: 0px;
    }
    .product-content .contant .box .prize {
        font-size: 14px;
    }
    .product-content .contant .box .prize span {
        font-size: 10px;
        margin-bottom: 0px;
    }
    .navigation .shrted_by {
        width: 100%;
        display: flex;
        align-items: center;
        white-space: nowrap;
        gap: 10px;
    }
    .navigation .shrted_by select {
        width: 100%;
    }
    .product_categories_section .static_section .tab-content {
        height: 380px;
    }
    .product_categories_section .static_section .tabs li img {
        height: 55px;
        object-fit: contain;
    }
    .deatils-content .product-logo {
        position: static !important;
        width: 100px !important;
    }
    .product_categories_section .deatils-content .prize {
        font-size: 18px;
    }
    .product_categories_section .deatils-content .prize del {
        font-size: 14px;
    }
    .product_categories_section .deatils-content .prize span {
        font-size: 14px;
    }
    .process_design .inner {
    width: 100%;
    position: relative;
    margin: 0px auto;
    height: 60px;
    flex-direction: column;
    align-items: start !important;
}
.process_design .inner .circle {
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: row;
    color: var(--black-color);
}
.process_design .inner .circle span {
    height: 10px;
    width: 10px;
    background: var(--border-color);
    display: inline-block;
    border-radius: 10px;
    margin-bottom: 0px;
}
.process_design .inner hr {
    width: 1px;
    height: 41px;
    border-left: 1px solid;
    margin: 0px;
    margin-top: 5px;
    position: absolute;
    left: 4.5px;
    border-color: var(--blue-color);
    top: 0px;
}
.mobile-content-wraap{
    flex-wrap: wrap;
}
.mobile-content-wraap .bcode {
    width: 100%;
    text-align: start !important;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
}
}
@media (max-width: 425px) {
    section.a-section.searchsection .right_content .content {
        margin: 0px !important;
        margin-left: 8px !important;
    }
    .searchsection .search_section .search a.search_button {
        right: -3px !important;
    }
    .hero-slide .grid-column-2 .slider1 .slick-slide img, .hero-slide .grid-column-2 .slider2 .slick-slide img {
        height: 200px;
    }
    .product-content .contant .box .image img {
        height: 150px !important;
    }
    .product-content .product-button {
        padding: 0px 8px 8px;
        margin: 0px !important;
        gap: 4px !important;
    }
    .follow_us.d-flex.my-5 {
        margin: 10px 0px !important;
    }
    footer .copyright h5 {
        font-size: 14px;
        font-weight: 600;
    }
    footer .content address {
        font-size: 14px;
    }
    footer .content p {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 5px;
    }
    .product_categories_section .static_section .tab-content {
        height: 300px;
        padding: 10px;
    }   
    .product_categories_section .static_section .tabs li {
        padding: 2px;
    }
}