     /* -----------header------------ */

    .header-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .v-center {
        align-items: center;
    }

    ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    a {
        text-decoration: none;
    }

    /* header */
    .header {
        display: block;
        width: 100%;
        position: relative;
        background-color: #fff;
        /* box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3); */
    }

    /* .header .item-left {
        flex: 0 0 10%;
    } */


    /* .header .item-center {
        flex: 0 0 80%;
    } */

    /* .header .item-right {
        flex: 0 0 10%;
        display: flex;
        justify-content: flex-end;
    } */
 .header .menu>ul>li>a::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0;
        bottom: 8px;
        background-color: var(--active-color);
        transform: scale(0, 1);
        transition: transform 0.6s ease;
    }

    .header .menu>ul>li>a:hover::before {
        transform: scale(1, 1);
    }

    .header .item-right a {
        text-decoration: none;
        font-size: 16px;
        color: var(--default-color);
        display: inline-block;
        margin-left: 10px;
        transition: color 0.3s ease;
        text-transform:capitalize;
    }

    .header .menu>ul>li {
        display: inline-block;
        line-height: 44px;
        margin-left: 28px;
    }
    .header .menu>ul>li>a {
        font-size: 15px;
        font-weight: 400;
        color: var(--default-color);
        position: relative;
        padding: 22px 0;
        text-transform: capitalize;
        transition: color 0.3s ease;
    }
    .header .menu>ul>li>a.active{
       color: var(--active-color) !important; 
    }
     .header .menu>ul>li>a.active::before {
        transform: scale(1, 1);
    }
 
    .header .menu>ul>li .sub-menu {
        position: absolute;
        z-index: 500;
        background-color: #ffffff;
        box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
        padding: 20px 30px;
        transition: all 0.5s ease;
        margin-top: 25px;
        opacity: 0;
        visibility: hidden;
    }

    @media (min-width: 992px) {
        .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
            margin-top: 0;
            visibility: visible;
            opacity: 1;
        }
    }

    .header .menu>ul>li .sub-menu>ul>li {
        line-height: 1;
    }

    .header .menu>ul>li .sub-menu>ul>li>a.active{
        color: var(--active-color); 
    }
    .header .menu>ul>li .sub-menu>ul>li>a {
        display: inline-block;
        padding: 10px 0;
        font-size: 15px;
        color: var(--default-color);
        transition: color 0.3s ease;
        text-decoration: none;
        text-transform: capitalize;
    }

    .header .menu>ul>li .single-column-menu {
        min-width: 280px;
        max-width: 350px;
    }

    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
        line-height: 1;
        display: block;
    }


    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
        padding: 10px 0;
        display: inline-block;
        font-size: 15px;
        color: var(--default-color);
        transition: color 0.3s ease;
        text-transform:capitalize;
    }

    .header .menu>ul>li .sub-menu.mega-menu {
        left: 50%;
        transform: translateX(-50%);
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4 {
        max-width: 1100px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        padding: 20px 15px;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
        flex: 0 0 25%;
        padding: 0 15px;
    }

     .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title a{
        font-size: 16px;
        color: var(--active-color);
        font-weight: 400;
        text-transform:capitalize;
     }
     .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title a h4{
        font-size: 16px;
        color: var(--active-color);
        font-weight: 400;
        padding: 10px 0;
        text-transform:capitalize;
     }

     .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a.active{
        color: var(--active-color); 
    }
    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title a{
        text-align: center;
         text-transform:capitalize;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
        max-width: 100%;
        width: 100%;
        vertical-align: middle;
        /* margin-top: 10px; */
        /* height: 300px; */
        object-fit: cover;
        border: 1px solid rgb(226, 219, 219);
    }

    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
    .header .menu>ul>li .sub-menu>ul>li>a:hover,
    .header .item-right a:hover,
    .header .menu>ul>li:hover>a {
        color: var(--active-color);
    }

 

    .mobile-menu-head,
    .mobile-menu-trigger {
        display: none;
    }

    /*responsive*/
    @media (max-width: 991px) {
        /* .header .item-center {
            order: 3;
            flex: 0 0 100%;
        } */

        .header .item-left,
        .header .item-right {
            flex: 0 0 auto;
        }

        .v-center {
            justify-content: space-between;
        }

        .header .mobile-menu-trigger {
            display: flex;
            height: 30px;
            width: 30px;
            /* margin-left: 15px; */
            cursor: pointer;
            align-items: center;
            justify-content: center;
        }

        .header .mobile-menu-trigger span {
            display: block;
            height: 2px;
            background-color: var(--default-color);
            width: 24px;
            position: relative;
        }

        .header .mobile-menu-trigger span:before,
        .header .mobile-menu-trigger span:after {
            content: "";
            position: absolute;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--default-color);
        }

        .header .mobile-menu-trigger span:before {
            top: -6px;
        }

        .header .mobile-menu-trigger span:after {
            top: 6px;
        }

        .header .item-right {
            align-items: center;
        }

        .header .menu {
            position: fixed;
            width: 320px;
            background-color: #ffffff;
            left: 0;
            top: 0;
            height: 100%;
            overflow: hidden;
            transform: translate(-100%);
            transition: all 0.5s ease;
            z-index: 1099;
        }

        .header .menu .mobile-menu-head {
            display: flex;
            height: 50px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 501;
            position: sticky;
            background-color: #ffffff;
            top: 0;
        }
  
    }
  /* ---------sleder- end-------------- */

        
    /* 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: var(--default-color);
        margin: 7px 0;
        transition: 0.4s;
        border-radius: 5px;
    }

     .bar1{
        width: 25px;
        height: 2px;
        background-color: var(--default-color);
        transition: 0.4s;
        border-radius: 5px;
   }    
     .bar3 {
        width: 25px;
        height: 2px;
        background-color: var(--default-color);
        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: var(--default-color);
        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:var(--active-color);
        font-size: 9px;
        position:absolute;
        top:-2px;
        right: 0px;
        background-color: gainsboro;
        width: 15px;
        height: 15px;
        line-height: 15px;
        text-align: center;
        border-radius: 50%;
    }
    .mob-menu-color li a{
        color:var(--default-color);
    }
    .mob-menu-color li a.active{
        color:var(--active-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;
            }
        }
 .video-wrapper video,
    .image-wrapper img {
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .d-flex::-webkit-scrollbar {
        height: 8px;
    }

    .d-flex::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }

         /* -----------------------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: 95%;
        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------------------ */

             /* -----------------checkout page css ------------------ */
        .addressInput {
            padding: 10px;
            margin: 15px 0;
            box-sizing: border-box;
            width: 100%;
            border: 1px solid #bcc4d4;
            color: var(--default-color);
        }

        .demo input[type=text] {
            display: inline-block;
            padding: 10px;
            margin: 5px 0;
            width: 49.6%;
            box-sizing: border-box;
            border: 1px solid var(--default-color);
        }

        .demo input[type=password] {
            display: inline-block;
            padding: 10px;
            margin: 5px 0;
            width: 49.6%;
            box-sizing: border-box;
            border: 1px solid var(--default-color);
        }


        .button1 {
            background-color: var(--default-color);
            border: none;
            color: white;
            margin-top: 5px;
            padding: 10px 30px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
        }

        .paycent {
            width: 100%;
            height: auto;
            overflow: hidden;
            text-align: center;
            border: 1px solid var(--default-color);
            padding: 20px;
        }

        .paypalimg {
            width: 80px;
        }

        .paydiv {
            background-color: var(--default-color);
            color: #fff;
            padding: 5px;
            text-align: center;
            width: 100%;
        }

        .table td {
            padding: 3px 5px;
            font-size: 14px;
        }

         /* Style the tab */
        .payment_tab {
            /* float: left; */
            border: 1px solid var(--default-color);
            background-color: #fff;
            /* width: 30%; */
            height: 180px;
        }

        /* Style the buttons inside the payment_tab */
        .payment_tab button {
            display: block;
            background-color: inherit;
            color: black;
            padding: 15px 10px;
            /* width: 100%; */
            border: none;
            outline: none;
            text-align: left;
            cursor: pointer;
            transition: 0.3s;
            font-size: 17px;
        }

        /* Change background color of buttons on hover */
        .payment_tab button:hover {
            background-color: var(--default-color);
        }

        /* Create an active/current "payment_tab button" class */
        .payment_tab button.pay_active {
            background-color: var(--default-color);
            border-right: 5px solid var(--active-color);
        }

        /* Style the tab content */
        .tabcontent {
            /* float: left; */
            padding: 10px 12px;
            border: 1px solid var(--default-color);
            width: 70%;
            border-left: none;
            height: 180px;
        }
        .tabcontent p{
            font-size: 14px;
        }

        @media (max-width: 991px) {
            .tabcontent {
                border: 1px solid #ccc;
            }
            .payment_tab {
            height: 120px;
        }
        }