     /* -----------header------------ */
   
   .header_navbar {
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header_navbar a {
        float: left;
        font-size: 16px;
        color: white;
        text-align: center;
        padding: 14px 8px;
        text-decoration: none;
        position: relative;
    }
     /* .header_navbar a:hover, */
   .header_navbar .heade_dropdown .dropbtn .active1::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        left: 0;
        bottom: -14px;
        background-color: var(--active-color);
        transform: scale(1, 1);
    }

    .heade_dropdown {
        float: left;
        overflow: hidden;           
    }
    .header_title{
        text-transform: capitalize;
    }
    .heade_dropdown .dropbtn {
        font-size: 16px;
        border: none;
        outline: none;
        color: white;
        padding: 14px 8px;
        background-color: inherit;
        font: inherit;
        margin: 0;
    }

     .header_navbar .heade_dropdown .dropbtn a::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        left: 0;
        bottom: -14px;
        background-color: var(--active-color);
        transform: scale(0, 1);
        transition: transform 0.6s ease;
    }

    .header_navbar .heade_dropdown .dropbtn a:hover::before {
        transform: scale(1, 1);
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        z-index: 99;
    }


    .heade_dropdown:hover .dropdown-content {
        display: block;
    }

    /* Create three equal columns that floats next to each other */
    .header_row{
         padding: 15px;
        background-color: #fff;
    }
   
    .column a {
        float: none;
        color: var(--default-color);
        padding:9px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }
        .column {  
            border-right: 1px solid rgb(201, 197, 197);
        }
    .column a:hover {
        background-color: #faf2f2;
    }

    /* Clear floats after the columns */
    .header_row:after {
        content: "";
        display: table;
        clear: both;
    }

    /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
    @media screen and (max-width: 600px) {
        .column {
            width: 100%;
            height: auto;
            border-right: 1px solid gray;
        }
    }
    ul li {
        list-style: none;
    }

    a {
        text-decoration: none;
    }
    .bar_container {
        display: inline-block;
        cursor: pointer;
      }

    .bar2 {
        width: 15px;
        height: 2px;
        background-color: #fff;
        margin: 7px 0;
        transition: 0.4s;
        border-radius: 5px;
    }

     .bar1{
        width: 25px;
        height: 2px;
        background-color: #fff;
        margin: 7px 0;
        transition: 0.4s;
        border-radius: 5px;
   }    
     .bar3 {
        width: 25px;
        height: 2px;
        background-color: #fff;
        transition: 0.4s;
        border-radius: 5px;
   }

    .acount_btn {
        width: 230px;
        background-color: #fff;
        display: none;
        position: absolute;
        right: 0;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        transition: 1s;
    }

    .account_menus:hover .acount_btn {
        display: block;
    }

    .account_menus {
        position: relative;
        display: block;       
    }

     .right_menu_color {
        color: #fff;
        cursor: pointer;
        font-size: 16px;
    }

     .menu_color {
        color: #fff;
    }
    .cart_wish a{
        color: var(--default-color);
        font-size: 14px;
    }
    .cart_wish a:hover{
        color: var(--active-color);
    }

    .d_header {
        background: var(--default-color);

        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    .modal .modal-content {
        border-radius: 0px;
        border-width: 0px;
    }

    .modal .search-dialog {
        width: 100%;
        max-width: none;
        height: 100%;
        margin: 0;
    }
    .count_color{
        color:#fff;
    }
    .mob-menu-color li a{
        color:var(--default-color);
    }

  /* -----------------------index page css start-------------------------- */
     /* -----------hero banner------------ */
       .carousel-indicators [data-bs-target] {
            height: 10px;            
            width: 20px;            
            background-color: var(--default-color);
            border-radius: 15px;
            border: 0;
        }     
        
   
        /* ------heading--------- */
        .heading_description h2{
        color: var(--default-color);
        }
        .heading_description p{
        color: var(--default-color);
        }
        /* ------hover rotate--------- */
        .img-hover img {
            -webkit-transition: all .7s ease;
            -moz-transition: all .7s ease;
            -o-transition: all .7s ease;
            -ms-transition: all .7s ease;
            transition: all .7s ease;
            position: relative;
        }

        .img-hover img:hover {
            transform: scale(1.2);
            transition: all .7s ease;
        }

        .hover_wrapper:hover .img-rotate {
            transform: rotate(5deg);
            transition: all .7s ease;
        }
        /* -----Hover scale------- */ 
    .layer {
            width: 100%;
            height: 0;
            background: linear-gradient(rgba(130, 176, 245, 0.6), rgb(233, 138, 225), rgba(231, 203, 203, 0.6));
            position: absolute;
            left: 0;
            bottom: 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            transition: 0.9s;
        }

        .spotlight-wrapper {
            overflow: hidden;
        }

        .spotlight-wrapper:hover .layer {
            height: auto;
        }

        .animate-wrapper {

            margin: 10 auto;
            position: relative;
            overflow: hidden;
        }

        .animate-wrapper:before,
        .animate-wrapper:after {
            content: '';
            width: 0;
            height: 0;
            position: absolute;
            opacity: 0;
            z-index: 1;
            transition: all 0.9s;
        }

        .animate-wrapper::before {
            bottom: 5%;
            left: 5%;
            border-bottom: 3px solid #fff;
            border-left: 3px solid #fff;
        }

        .animate-wrapper::after {
            top: 5%;
            right: 5%;
            border-top: 3px solid #fff;
            border-right: 3px solid #fff;
        }

        .animate-wrapper:hover:before,
        .animate-wrapper:hover:after {
            opacity: 1;
            width: 90%;
            height: 90%;
        }

        .box {
            position: relative;
            width: 150px;
            height: 150px;
            background-color: rgb(243, 189, 189);
            border-radius: 50%;
            overflow: hidden;
            margin: auto;
        }

        .box::before {
            content: '';
            position: absolute;
            inset: -10px 50px;
            background: linear-gradient(315deg, #00ccff, #d400d4);
            transition: 1.5s;
            animation: animate 4s linear infinite;
        }

        .box:hover::before {
            inset: -20px 0px;
        }

        @keyframes animate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .box::after {
            content: '';
            position: absolute;
            inset: 4px;
            background: #feebe4;
            border-radius: 50%;
            z-index: 1;
        }
            .text-xs{
                font-size: 12px;
                color:var(--default-color);
            }
            .text-xs:hover{
                color:var(--active-color);
            }

            .card_titals{
                color:var(--default-color);
                text-transform: capitalize;
            }
            .card_titals:hover{
                color:var(--active-color);
            }
        .box-content {
            position: absolute;
            inset: 10px;
            border: 3px solid rgb(185, 185, 225);
            z-index: 3;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }


        @media only screen and (max-width: 900px) and (min-width: 768px) {
            .box {
                width: 110px;
                height: 110px;
            }

            .box-content {
                inset: 7px;
            }

            .box-content a {
                margin-top: 6px !important;
            }

            .box::before {
                inset: -7px 37px;
            }
        }

        @media only screen and (max-width: 767px) and (min-width: 280px) {
            .animat-menu {
                display: flex;
                justify-content: flex-start;
                overflow: auto;
            }

            .animat-menu::-webkit-scrollbar {
                width: 0;
            }

            .box {
                min-width: 110px;
                height: 110px;
                margin: 0 10px;
            }

            .box-content {
                inset: 7px;
            }

            .box-content a {
                margin-top: 6px !important;
            }

            .box::before {
                inset: -10px 34px;
            }
        }

        .box-content img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
            pointer-events: none;
            z-index: 3;
        }

        .box:hover .box-content img {
            opacity: 0;
        }

        .box-content h6 {
            position: relative;
            text-align: center;
            color: var(--default-color);
        }

        .box-content a {
            margin-top: 12px;
            position: relative;
            padding: 3px 10px;
            background-color: #feebe4;
            border-radius: 25px;
            box-shadow: 10px 10px 10px -1px rgba(253, 4, 25, 0.15), -10px -10px 10px -1px rgba(250, 115, 126, 0.20);
        }

        .box-content a:hover {
            background-color: #fff;
        }

        .swiper-shadow:hover {
            box-shadow: 10px 10px 10px -1px rgba(252, 129, 140, 0.1), -10px -10px 10px -1px rgba(250, 115, 126, 0.10);
        }



        @media only screen and (max-width: 767px) and (min-width: 280px) {
            .row1 {
                overflow-x: auto;
                flex-wrap: nowrap;

            }

            .row1::-webkit-scrollbar {
                width: 100px;
                height: 6px;
                border-radius: 10px;
                background-color: #feebe4;
            }

            .row1::-webkit-scrollbar-thumb {
                background: var(--active-color);
                border-radius: 10px;
            }



            .row1::-webkit-scrollbar-thumb:hover {
                background: var(--active-color);
            }

        }

        @media only screen and (max-width: 750px) {
            .bottom-banner-1 {
                display: none;
            }
        }

        @media only screen and (min-width: 751px) {
            .bottom-banner-2 {
                display: none;
            }
        }


        /*.gallery*/
        .gallery {
            width: 100%;
            display: block;
            padding: 10px 0;
        }

        .gallery .gallery-filter {
            padding: 0 15px;
            width: 100%;
            text-align: center;
            margin-bottom: 20px;
        }

        @media only screen and (max-width: 766px) and (min-width: 280px) {
            .gallery .gallery-filter {
                display: flex;
                justify-content: flex-start;
                overflow-x: auto;
            }

            .gallery .gallery-filter::-webkit-scrollbar {
                width: 0;
            }
        }


        .gallery .gallery-filter .filter-item {
            font-size: 16px;
            text-transform: uppercase;
            display: inline-block;
            margin: 8px 25px;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            line-height: 1.2;
            transition: all 0.3s ease;
            color: var(--default-color);
        }

        .gallery .gallery-filter .filter-item.active {
            color: var(--active-color);
            border-color: var(--active-color);
        }

        .gallery .gallery-item {
            width: calc(100% / 4);
            padding: 5px;
        }

        .gallery .gallery-item-inner img {
            width: 100%;
        }

        .gallery .gallery-item.show {
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        .gallery .gallery-item.hide {
            display: none;
        }

        /*responsive*/
        @media(max-width: 991px) {
            .gallery .gallery-item {
                width: 50%;
            }
        }

        @media(max-width: 767px) {
            .gallery .gallery-item {
                width: 100%;
            }

            .gallery .gallery-filter .filter-item {
                margin-bottom: 10px;
            }
        }


         /* -----------------------index page css end--------------------------- */

         /* -------------------------single page css start---------------------- */

          /* ------------review css------- */
        .rating {
            padding-bottom: 30px;
        }

        .rating label {
            float: right;
            position: relative;
            width: 40px;
            height: 40px;
            cursor: pointer;
        }

        .rating label:not(:first-of-type) {
            padding-right: 2px;
        }

        .rating label:before {
            content: "\2605";
            font-size: 42px;
            color: #ccc;
            line-height: 1;
        }

        .rating input {
            display: none;
        }

        .rating input:checked~label:before,
        .rating:not(:checked)>label:hover:before,
        .rating:not(:checked)>label:hover~label:before {
            color: var(--default-color);
        }

        .fa-share{
           color: var(--default-color); 
        }
        .single-wishlist{
            cursor:pointer;
            left:2px;
            top:2px;
            font-size:28px;
            z-index:9;
            color:var(--default-color);
        }
         #exzoom {
            width: auto;
        }

        .product_list_ul {
            position: relative;
        }

        .product_list_ul .bvideo-wrap {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            transform: translate3d(0px, 0px, 0px);
            width: 100%;
            height: 100%;
        }

        .product_list_ul:hover .bvideo-wrap {
            display: block;
        }
/* ----------------accrdian css------------- */
        .accordion-title:before {
            float: right !important;
            font-family: FontAwesome;
            content: "\f068";
            padding-right: 5px;
        }

        .accordion-title.collapsed:before {
            float: right !important;
            content: "\f067";
        }

        .card-header {
            background-color: #fff;
            border-bottom: 1px solid #d6c3c3;
        }

        .card {
            border: none;
        }

        .collapseborder {
            border-bottom: 1px solid #d6c3c3;
        }

        .form-check-input:checked {
            background-color: var(--default-color);
            border-color: var(--default-color);
        }

        .form-check label,
        .form-check-input {
            cursor: pointer;
        }

       .modal .modal-sort-filter {
            position: fixed;
            bottom: 0;
            left: 0%;
            right: 0%;
            transform: translate(-50%, -50%);
        }
    
         /* -----------------------------single page css css end------------------------------ */
         /* ----------------------------Footer page css start------------------------------ */
         .container-1 {
        width: 90%;
        margin: auto;
    }
    .footer_head h5{
    border-bottom: 1px solid;
    color:var(--default-color);
    padding:8px 0;
    }
    .social_media{
            color:var(--default-color);
    }
    .social_media a{
            color:var(--default-color);
    }
    .social_media a:hover{
            color:var(--active-color);
    }

    .line-footer li {
        list-style: none;
    }

    .line-footer li a {
        position: relative;
        text-decoration: none;
       color:var(--default-color);

    }
     .line-footer li a:hover{
         color:var(--active-color);
     }

    .line-footer li a::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0;
        bottom: -5px;
        background-color:var(--active-color);

        transform: scale(0, 1);
        transition: transform 0.7s ease;
    }

    .line-footer li a:hover::after {
        transform: scale(1, 1);
    }


    .line-footer {
        padding-left: 0;
    }
       /* ----------------------------Footer page css end---------------------------- */

       /* -----------------------------Product page css Start---------------------------- */
         .remove-btn {
            font-size: 12px;
            color: var(--default-color);
            text-transform: capitalize;
        }

        .remove-btn span {
            font-size: 12px;
            padding-left: 4px;
            color: red;
        }
        .product_wrapper{
            border-radius: 10px;
        }

       .product_wrapper .product_image{
         border-radius: 10px 10px 0 0;
        }
        .product_title{
          color: var(--default-color);
            font-size: 15px; 
        }
         .product_title:hover {
            color: var(--active-color);
        }  
        .wishlist {
            font-size: 22px;
            transition: 0.3s;
            cursor: pointer;
            color: var(--default-color);
        }

        .wishlist:hover {
            color: var(--active-color);
        }  
         .scrollmenus::-webkit-scrollbar-thumb {
            background: #E7E5E5;
            border-radius: 5px;
        }

        .scrollmenus::-webkit-scrollbar {
            width: 5px;
        }

        .ft-toolbar {
            position: fixed;
            width: 100%;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 9;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            padding: 5px;
            background-color: #fff;
            box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.2), 0 10px 20px 0 rgba(0, 0, 0, 0.19);
        }

        /* ----------------accrdian css------------- */
        .accordion-title:before {
            float: right !important;
            font-family: FontAwesome;
            content: "\f068";
            padding-right: 5px;
        }

        .accordion-title.collapsed:before {
            float: right !important;
            content: "\f067";
        }

        .card-header {
            background-color: #fff;
            border-bottom: 1px solid #d6c3c3;
        }

        .card {
            border: none;
        }

        .collapseborder {
            border-bottom: 1px solid #d6c3c3;
        }

        .bottom-model .modal-sort-filter {
            position: fixed;
            bottom: 0;
            left: 0%;
            right: 0%;
            transform: translate(-50%, -50%);
        }
        
        
       /* -----------------Product page css end------------------ */
       /* -----------------wishlist and cart page css start------------------ */
        
          .cart_wish_table tr {
            text-align: center;
        }

        .cart_wish_table th {
            padding: 15px 0;
            border-bottom: 1px solid rgb(212, 212, 212);
            color: var(--default-color);
        }

        .cart_wish_table td {
            vertical-align: center;
            border-bottom: 1px solid rgb(253, 236, 236);
            color: var(--default-color);
        }

        .empty_wishlist h2 {
            color: var(--default-color);
        }

        .empty_wishlist p {
            color: var(--default-color);
        }
       /* -----------------wishlist and cart page css end------------------ */