:root{
    /* --mainColor:#004373; */
    --mainColor:#2dcea2;
    --headerColor:#ff9900;
    --hoverColor:#ff4800;
    --scrollbarBG: #ff9900;
    --thumbBG: #ffbc00;
    --mainGray:#ebedf0;
    --borderRadius:15px;
    --borderRadius1:25px;
    --boxShadow:0px 15px 25px 0px rgba(109, 109, 109, 0.0784313725490196);
}

#basket_content::-webkit-scrollbar {
  width: 15px;
  border-radius: 8px;
}
#basket_content {
  scrollbar-width: 15px;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
#basket_content::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}
#basket_content::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG) ;
  border-radius: 6px;
  border: 3px solid var(--scrollbarBG);
}

.menuClass1 img,
.menuClass1 .menuTooltipe{
  display: none;
}

.menuClass1 ul{
  display: none;
}

.menuClass1>a{
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.menuClass1:hover > ul{
  display: block;
}

.product_latest .img-part{
  position: relative;
}

/* Side Nav */

.sidenav {
    width: 0;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999999999;
    background-color: #000;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 19px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    left: 0px;
    font-size: 36px;
    margin-left: 0px;
  }
  
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }
  
  /* Side Nav (END) */



/* Slider */


.slider-inner {
    width: 100%;
    float: right;
    position: relative;
    overflow: hidden;
    border-radius: var(--borderRadius);
    /* margin-top: 85px; */
  }
  
  .slider-inner .owl-stage-outer {
    width: 100%;
    float: right;
    /* display: flex; */
    overflow: hidden;
  }
  
  .slider-inner .owl-stage-outer .owl-stage {
    height: auto;
    /* display: flex;
    align-items: stretch; */
  }
  .slider-inner .owl-nav {
  
  }
  
  .slider-inner .owl-nav .owl-prev,
  .slider-inner .owl-nav .owl-next {
  
    width: 20px;
    height: 15px;
    border-radius: 50%;

    background-color: transparent;
    color: #111;
    cursor: pointer;
  
    visibility: visible;
    -webkit-transition: all 0.2s cubic-bezier(0.83, 0.8, 0.11, 0.64) 0s;
    transition: all 0.2s cubic-bezier(0.83, 0.8, 0.11, 0.64) 0s;
    opacity: 1;
    position: absolute;
    top: 15px;
  }
  
  .slider-inner .owl-nav .owl-prev {
    right: 65px;
  }
  
  .slider-inner .owl-nav .owl-next {
    right: 85px;
  }

  .itemSlider {
    /* height: 600px; */

    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    
  }
  
  .sliderImage {
    /* width: 40%; */
    /* text-align: center; */
  }
  
  .itemSlider img {
    width: 100%;
    /* height: 100%;
    object-fit: cover; */

  }

.boxOnSlide{
    width: 350px;
    background-color: rgba(0, 0, 0, .9);
    border-radius: 10px;
    position: absolute;
    color: #fff;
    opacity: 0;
    transition: all .5s ease;
    padding: 15px;
    margin-left: 15%;
}

.BOS-title{
    text-align: center;
    font-size: 25px;
    margin-bottom: 15px;
}

.BOS-abstract{
    width: 100%;
    text-align: justify;
    font-size: 14px;
    font-weight: 100;
    line-height: 1.5;
    margin-bottom: 15px;
}

.BOS-btn{
    width: 120px;
    border-radius: 7px;
    background-color: #004373;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    margin:10px auto;
}

.itemSlider:hover .boxOnSlide{
    opacity: 1;
}

#slider .slider_nav{
  position: absolute;
  z-index: 9;
  width: 150px;
  height: 70px;
  right: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider_nav-next,
.slider_nav-prev{
  width: 35px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background-color: #ccc;
  color: #111;
  cursor: pointer;
  margin: 0 4px;
}


/* Slider (END) */




/* Header */

.top_headerBox1{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.topNavMenuHelp{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 0;
}


.menu ul li ul li ul li:hover > a > span {
    background-color: var(--headerColor) !important;
}

.headerHomeLogo{
    color: #fff;
}

.headerHomeLogo:hover{
    color: var(--headerColor);
}

.userLogoInHeader{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: #000;
    cursor: pointer;
    font-size: 20px;
    border: 1px solid #000;
    border-radius: 7px;
    /* margin-left: 10px; */
}

.userLogoInHeader div{
    font-size: 14px;
}

.uesrBoxInHeader{
    width: 300px;
    color: #000;
    background-color: var(--mainColor);
    border-radius: 15px;
    position: absolute;
    top: 60px;
    left: 20px;
    z-index: 9999;
    text-align: right;
    font-size: 19px;
    display: none;
    padding: 10px;
}

.loginMainBoxHeader{
    color: #000;
}

.uesrBoxInHeader a{
    color: #fff !important;
    display: flex !important;
    align-items: center !important;  
    transition: all .5s ease;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}

.uesrBoxInHeader a:first-child{
    margin-top: 10px;
}

.uesrBoxInHeader a span{
    margin-left: 15px;
}

.uesrBoxInHeader a:hover{
    background-color: #cafbe8;
    color: #000 !important;
}

.nameOfUser{
  font-size: 17px;
  color: #fff;
  line-height: 1.5;
  margin: 10px 0;
}

.headerAddress{
  float: right;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
    margin-left: 10px;
}

.headerTel{
    font-size: 15px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    margin-top: 3px;
}

.headerTel a{
    color: #fff !important;
    margin-right: 5px;
}

.headerTel i{
  color: #ffca6e;
  font-size: 23px;
  margin-right: 8px;
}


@keyframes menuAnimation {
    from{
      transform: translateY(-100%);
    }to{
      transform: translateY(0);
    }
  }

  .resMenuBTN{
    display: none;
    font-size: 30px;
    color: #000;
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px;
    padding-bottom: 2px;
  }


/* search */
.searchHeader{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: var(--mainGray);
  border-radius: 7px;
}
.logoSearchHeader{
    width: 36px;
    height: 36px;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #42474d;
    cursor: pointer;
    color: #fff;
    border-radius: 50%;
}
.logoSearchHeader:hover .textSearchHeader{
    width: 100%;
}
.textSearchHeader{
    width: 100%;
    transition: all .5s ease;
    margin-right: 10px;
}

.headerMenu{
    display: flex;
    align-items: center;
    color: #616161;
}


.btnMainSideMenu{
  font-size: 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.btnMainSideMenu i.fa.fa-bars{
  font-size: 25px;
  margin-left: 5px;
}

.btnMainSideMenuTitle{
    font-size: 15px;
}

.btnMainSideMenu:hover .btnMainSideMenuTitle{
  color: #ffcb00;
}
  
  .menuHeaderControl{
    display: flex;
    align-items: center;
  }
  
  .mainSideMenu{
    min-width: 200;
    position: absolute;
    right: 30px;
    top: 50px;
    z-index: 99;
    background-color: #f1f1f1;
    border-radius: 5px;
    box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.2);
    /* padding: 10px 0; */
    display: none;
    margin: 0;
  }

  .cartIconHeader{
      /* cursor: pointer; */
      justify-content: flex-end ;
      padding: 0;
  }

  #show_basket_icon{
    color: #000;
    background-color: var(--mainGray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px;
  }

  #label_basket{
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--boxShadow);
  }
  

  #headerMenuSticky{
    width: 100%;
    position: absolute;
    transition: all .5s ease;
    z-index: 999999;
    display: none;
    margin-bottom: 0;
  }
  
  .stickyMenu {
    position: fixed !important;
    z-index: 9999;
    top: 0;
    width: 100%;
  }
  
  div.row.head.xBgColor.nav-menu.stickyMenu > div > div:nth-child(1) > a > img{
    margin: 5px 0;
    height: 70px;
  }
  
  .stickyMenu .menu {
    /* display: table; */
    /* margin: 0; */
  }

  #headerMenuSticky.stickyMenu{

      animation: menuAnimation 1s ;
  }

  .menu2Main > ul > li{
    margin-left: 10px;
  }

  .menu2Main > ul > li:hover > a{
    color: #2dcea2;
  }

  .menu ul li{
      border-bottom: 1px solid #000;
  }
  .menu>ul>li{
      border-bottom:0;
  }

  .top-header{
    position: relative;
    z-index: 99999999;
  }

  .resShowDetailOnHeader{
    display: none;
  }

  .menuVerticalInRes{
    display: none;
  }

  .headerContactUs{
    width: 84%;
  }

  .loginModalHeader{
    width: 100%;
    float: right;
    text-align: center;
  }

  .loginModalHeader input{
    width: 150px !important;
    background-color: #002844 !important;
    border-radius: 35px !important;
    border: 1px solid #ccc !important;
    transition: all .5s ease;
  }

  .loginModalHeader input:hover{
    background-color: var(--hoverColor) !important;
  }


  /* .mainSideMenu .menuClass1{
    border-bottom: 1px solid #ccc;
    padding: 10px;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }
  
  .mainSideMenu .menuClass1:first-child{
    padding-top: 20px;
  }
  .mainSideMenu .menuClass1:last-child{
    border-bottom: 0;
  }
  
  .mainSideMenu .menuClass1 a{
    color: #323232;
    transition: all .5s ease;
  }
  
  .mainSideMenu .menuClass1 a:hover{
    color: var(--primaryColor);
  } */
  


/* Header (END) */

/* sideBar Group */

.sidebargpItem{
  cursor: pointer;
}

.proSubFooterTitle{
  text-align: center;
  color: #000;
  font-size: 15px;
  line-height: 1.5;
  margin: 10px 0;
}

.proSubFooterPrice{
  text-align: center;
  margin: 10px 0;
}

.proSubFooterPrice span{
  color: #002844;
  font-size: 14px;
}

/* sideBar Group (END) */




/* store */

#show_basket_icon:hover *{
  color: #ffcb00;
}

.checkout-table{
    overflow-x: auto;
}

#basket_content{
  max-height: 550px;
  overflow-y: auto;
}

.cart-product{
    transition: all .5s ease;
}

.cart-product:hover{
    background-color: #f7f5f5;
}

.cart-thumb{
    width: 70px;
    border: 1px solid #000 ;
    display: block !important;
    padding: 5px;
    margin-left: 10px;
}

.cart-title,
.cart-count,
.cart-price{
  flex: 25%;
}

.cart-count{
  flex: 0%;
  justify-content: flex-end;
  display: flex;
}

.cart-price{
  flex: 0%;
  text-align: left;
}

.cart-remove{
    display: none;
    margin-right: 15px;
}

.cart-remove i{
    color: #d40606 !important;
}

.customStore{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-left: 35px;
    margin-top: 40px;
}
.CS-miniDiv{
    display: flex;
}
.CS-miniDiv > div {
    margin-left: 15px;
}

.rahcode-form{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rahcode-form form{
    width: 40% !important;
    float: left !important;
    padding-left: 35px;
}

.rahcode-form form .btn-info{
    background-color: var(--mainColor);
    color: #fff !important;
}
.guideTextRahcode{
    width: 55%;
    float: right;
    line-height: 1.5;    
}

.basket_title i.closeCart{
    float: left;
    color: red !important;
    cursor: pointer;
    margin-right: 25px;
}

.continueShop a{
    color: #fff !important;
    background-color: var(--mainColor);
}

.parsley-required{
    margin-top: 10px;
}

.checkout-form__row label{
    color: #012e55 !important;
}

.panel-body div{
    /* width: 100%; */
    margin: 10px 0;
}

.panel-success > .panel-heading{
    background-color: #f0f0f0;
    color: #004373;
}

.checkOutLogin .form-control{
    /* border-color: #004682 !important; */
    box-shadow: none;
    /* #004373 */
}

.checkOutLogin .btn-default{
    
    border-color: #fff !important;
}

.checkOutLogin .btn-success{
    background-color: #ffbc00 !important;
    border: 0;
}

.topOfCheckotu .nav__item a label{
    display: flex;
align-items: center;
flex-direction: row-reverse;
justify-content: center;
}

.topOfCheckotu .nav__item a label i{
margin-left: 10px;
}

.mainCheckOutBox .panel-success{
    border: 0;
}

.checkOutLogin{
    margin-top: 25px;
}

.loginBtnCheckout{
    width: 100%;
    padding: 0 25%;
}

/* store (END) */

/* Product Grouped Home */

.head_content{
    color: #323232;
}

.priceGroupedMember{
    text-align: center;
}

.tail_content{
  display: flex !important;
  align-items: center;
  justify-content: space-evenly;
}

/* Product Grouped Home (END) */

/* product Advance */

.stock_content_single {
  float: right;
}

.similar_products .prd_f{
  width: 100%;
}

.specialListMainBox{
  /* width: 30px; */
  background-color: #00ccd6;
  position: absolute;
  z-index: 9;
  left: 4%;
  top: 8%;
  /* transform: translateY(-20%); */
  border-radius: 5px;
  font-size: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* writing-mode: sideways-lr;
  text-orientation: mixed; */
  padding:0 10px;
}

.list-product-special .special-title{
  display: flex;
  justify-content: right !important;
  padding-right: 10px;
}

.list-product-special .countdown.show .running timer{
  font-weight: 100;
  color: #000;
}


/* product Advance (END) */

/* special product */

#specialSlider .prd_col .product_single{
  padding: 10px;
}

#specialSlider .prd_col .product_single img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* special product (END) */


/* Footer */

.copyRightText{
    color: #111;
    text-align: center;
    margin: 20px auto;
}

/* Footer (END) */

/* profile */

.PCD-card{
  font-size: 13px;
  background-color: #f4f4f4;
  border-radius: 7px;
  transition: all .5s ease;
  padding: 0 10px;
  margin-bottom: 5px;
}

.PCD-card:hover{
  background-color: #e8e8e8;
}

.profileCardProduct .btn-primary{
  color: #8c8c8c;
  background-color: #e4e4e4;
  border-color: #ffffff;
  transition: all .5s ease;
}

.profileCardProduct .btn-primary:hover{
  background-color: #999;
  color: #fff;
}

.PCD-showfactor{
  background-color: #00825e;
  color: #fff;
  border-radius: 7px;
  text-align: center;
  transition: all .5s ease;
  padding: 6px 20px;
  margin: 10px 0;
}

.PCD-showfactor:hover{
  background-color: #09a97d;
}

/* profile (END) */


/* Responsive */

@media screen and (max-width:999px) {

    #basket_content{
      /* left: -1vw;
      width: 94vw; */
      left: -9vw;
      width: 92vw;
    }
    
    .rahcode-form form{
        width: 100% !important;
    }

    .cart-price {
        flex: 20%;
    }

    .mainCheckOutBox{
        width: 95%;
        margin: auto;
    }

    .tblTotal{
        width: 200%;
        max-width: 200%;
    }

    .summary{
        overflow:hidden;
        background-color: #fff;
        border-color: #5cb85c;
        padding: 10px !important;
    }

    .nav__item.active a{
        background-color: #7e7e7e !important;
        color: #fff !important;
    }

    .topOfCheckotu .nav__item.active a{
        background-color: #004382 !important;
        color: #fff !important;
    }

    .list-group-item.active{
        border-color: #ccc !important;
    }

    .list-group-item.active > label{
        background-color: #e4e4e4 !important;
        color: #000 !important;
    }

    .tblOrder tr{
        margin: 10px 0;
    }

    .checkout-form__row .form-control{
        height: 40px;
    }

    .itemSlider{
        flex-direction: column;
    }

    .boxOnSlide{
        width: 100%;
        opacity: 1;
        border-radius: 0 0 10px 10px;
        position: relative;
        margin: 0;
    }

    .slider-inner .owl-nav .owl-next,.slider-inner .owl-nav .owl-prev{
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu .container::before,
    .nav-menu .container::after,
    .top-header .container::before,
    .top-header .container::after{
        content: unset;
    }

    .top-header .container{
        justify-content: space-between;
    }

    .headerContactUs{
      display: none !important;
    }

    .resShowDetailOnHeader{
      display: block;
    }

    .topNavMenuHelp{
      padding-left: 0px;
      float: left;
      margin-left: -25px;
    }

    .headerTel{
      justify-content: center;
      color: #fff;
    }

    .resMenuBTN{
        display: block;
      }

    .headerAddress {
        display: none;
    }

    ul.topNavMenu.num2{
        position: relative;
    }

    .uesrBoxInHeader{
      left: unset;
      right: -140%;
    }

    li.menuClass1:hover > ul{
        display: none;
    }

    #mySidenav ul .menuClass1 ul{
        background-color: #fff;
      }
      
      #mySidenav ul .menuClass1 ul a  {
        background-color: #fff;
        font-size: 15;
        color: #000;
        font-weight: 100;
      }
      
      #mySidenav ul .menuClass1 ul li{
        border-bottom: 1px solid #ccc;
        transition: all .5s ease;
        padding-right: 10px;
      }
      
      #mySidenav ul .menuClass1 ul li:hover{
        background-color: #ccc;
      }

      .b-wrapper {
        font-size: 1.1em;
        align-items: center;
        display: flex !important;
        position: relative;
        opacity: 1;
        color: #fff;
        margin-top: 20px;
    }

    .b-wrapper a{
      width: 100%;
      text-align: center;
      color: #fff;
    }

      .sidebargpContainer{
        height: auto !important;
      }

      .sidebargpItem:hover .b-wrapper {
        margin-top: 20px;
        top: 0;
        left: 0;
        height: auto;
        width: 100%;
        background-color: transparent;
        opacity: 1;
      }

      .menuVerticalInRes{
        background-color: #001b2e;
        width: 100%;
        float: right;
        display: none;
        font-size: 14px;
        padding: 20px 10px;
        margin: 0;
      }
      #headerMenuSticky.stickyMenu .menuVerticalInRes{
        display: block;
        animation: menuAnimation 1s;
      }

      #mySidenav ul li ul li ul li:hover {
        background-color: var(--headerColor);
      }
      #mySidenav ul li ul li ul li:hover > a {
        background-color: var(--headerColor);
      }

      .customStore{
        align-items: center !important;
        padding: 0 !important;
      }

      #compare-buttons-part{
        justify-content: center;
      }

      .compare-selected{
        width: calc(50% - 6px);
        min-width: unset !important;
        max-width: unset !important;
      }

      .special{
        width: 95% !important;
        float: unset !important;
        margin: auto;
      }

      .product_vote{
        text-align: center;
      }

      .params_full{
        text-align: center;
      }

      p.prd_option{
        justify-content: center;
      }

      .sp > ul > li{
        flex-direction: column;
      }

      .sp > ul > li > p.n{
        min-width: unset;
      }

      .product_advance_order_by > div{
        margin-top: 70px;
      }

            
      .mobile_option > button{
        width: 100%;
        background-color: #333 !important;
        color: #fff !important;
      }

      .mobile_option > button.show_order{
        margin-left: 0;
        margin-right: 5px;
      }

      .mobile_option > button > i{
        color: #fff !important;
        right: 15px;
      }

      .prd_col .product_single{
        flex-direction: column;
      }

      .special-products-part{
        height: auto !important;
      }

      .remained_time{
        width: 100% !important;
      }

      .product_single .content>.product_name{
        height: auto !important;
        margin-top: 50px !important;
      }

      .products .product_single .content>.product_name{
        margin-top: 10px !important;
      }

      .compare.btn{
        margin: 15px auto;
      }

      .votes{
        left: unset;
      }


      

      .rvkp {
        text-align: center;
      }


}

/* Responsive (END) */


/* new site */

.top-header .container{
  position: relative;
}

.top-header{
  background-color: var(--mainColor);
  height: 90px;
  margin-bottom: 80px;
  padding-top: 35px;
}

.top_headerBox1{
  width: 100%;
  display: flex;
  align-content: center;
  background-color: #fff;
  border-radius: var(--borderRadius);
  /* transform: translateY(50%); */
  transition: all .5s ease;
  box-shadow: var(--boxShadow);
  position: absolute;
  right: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.top_headerBox2{
  width: 90%;
  background-color: #eaecee;
  border-radius: 0 0 var(--borderRadius) var(--borderRadius);
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: -160px;
  z-index: -1;
}

.mainUserAcartBox{
  display: flex;
  align-items: center;
}

.HS-left{
  height: 410px;
  background-color: #fff;
  border-radius: var(--borderRadius);
  box-shadow: var(--boxShadow);
  /* margin-top: 85px; */
}

.special-products-part .slide-progress {
  width: 0;
  max-width: 100%;
  height: 4px;
  background: #28d39c;
}

.shapeOfSlider{
  position: absolute;
  top: 0;
  right: 0;
}

.header-slider{
  margin-top: 75px;
}

.HS-left .remained_time{
  /* display: none; */
  width: 200px;
  border-radius: 150px;
  bottom: unset;
  top: 5px;
  z-index: 999;
  padding: 5px;
}

.HS-left .remained_time timer{
  align-items: center;
}

.HS-left .remained_time timer span{
  font-size: 15px !important;
}

.HS-left .remained_time .labels{
  display: none !important;
}


.HS-left .remained_time .break{
  display: none !important;
}

.HS-left .remained_time .running{
  margin-top: 0 !important;
}


.sliderSiteEdit .owl-prev,
.sliderSiteEdit .owl-next{
  width: 35px;
  height: 25px;
  border-radius: 90px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, .35) !important;
  color: #fff !important;
  top: -73px !important;
  left: 15px;
  font-size: 11px !important;
  padding: 0 !important;
}

.sliderSiteEdit .owl-prev{
  right: unset !important;
  left: 50px;
}

#specialSlider .prd_col{
  border-bottom:0
}

#specialSlider .product_single .content > .product_name{
  font-size: 15px;
  text-align: right;
}

#specialSlider .product_single .content > .discount_content{
  justify-content: left;
}

#specialSlider .product_single .content > .discount_content .price{
  width: 40%;
  text-align: left;
  background: #2DCEA2 ;
  color: #FFFFFF !important;
  border-radius: 7px 7px 7px 0px;
  position: relative;
  padding: 9px;
}

#specialSlider .product_single .content > .discount_content .price::before{
  content: "";
  border-left: 15px solid #2DCEA2;
  border-left-color: rgb(45, 206, 162);
  border-bottom: 14px solid transparent;
  left: 0;
  float: left;
  position: absolute;
  margin-top: 19px;
  margin-right: -10px;
}

/* HomePage Group */

.gp-card,
.sidebargpItem{
  width: 100%;
  background-color: #fff;
  border-radius: 11px;
  text-align: center;
  box-shadow: var(--boxShadow);
  border-radius: var(--borderRadius);
  padding: 15px 8px;
}

.sidebargpItem img,
.gp-card img{
  width: 50% !important;
  margin: auto;
}

.gp-cardDetail{
  margin-top: 25px;
}

.gp-cardDetail a{
  color: #000;
}

.HGPrice{
  margin-top: 20px;
}

/* HomePage Group (END) */

.bread-crumb{
  margin-top: 60px;
}

/* Latest Product */

.latestProduct{
  background-image: linear-gradient(300deg, #EF7039 8%, #CB192E 59%);
  border-radius:var(--borderRadius1);
  margin-bottom: 25px;
}

.latestProductBody{
  padding: 30px;
}

.LPB-header{
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,.3);
  margin-bottom: 15px;
}

.latestProductBody .title{
  background-color: transparent;
  padding: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}

.latestProductBody .title::before{
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  float: right;
  border-radius: 90px;
  margin-top: 3px;
  margin-left: 8px;
}

.product_latest{
  background-color: #fff;
  border-radius: var(--borderRadius);
  overflow: hidden;
}

.latestProductBody .discount_content{
  flex-direction: column-reverse;
  align-items: flex-end !important;
}

.latestProductBody .discount_content .price{
  background-color: #cb192e;
  border-radius: 7px;
  color: #fff;
  padding: 10px;
}

.latestProductBody .discount_content .price::before{
  content: "";
  border-left: 15px solid #CB192E;
  border-top: 13px solid transparent;
  float: left;
  margin-left: -10px;
  margin-top: -18px;
}

.latestProductBody .discount_content .line{
  display: none;
}

.latestProductBody .discount_content .price_before_discount{
  font-size: 12px;
  margin-bottom: 3px;
  margin-left: 14px;
}

.product_latest .list-product-special{
  width: 100% !important;
  z-index: 9999;
}

.product_latest .votes{
  top: -22px;
  left: -9px;
  background: #fff;
  padding: 7px;
  border-radius: 50px;
  box-shadow: 0 0 3px #ccc;
}


/* Latest Product (END) */

/* Most Sale */

.mostSaleMainBox{
  background-color: transparent;
  background-image: linear-gradient(300deg, #39C2EF 8%, #1955CB 59%);
  border-radius:var(--borderRadius1);
  margin-bottom: 25px;
}

.mostSaleMainBox .latestProductBody .discount_content .price{
  background-color: #1955cb;
}

.mostSaleMainBox .latestProductBody .discount_content .price::before{
  border-left: 15px solid #1955cb;
}

/* Most Sale (END) */

/* Most View */

.mostViewMainBox{
  background-color: transparent;
  background-image: linear-gradient(300deg, #76da94 8%, #2dcea2 59%);
  border-radius:var(--borderRadius1);
  margin-bottom: 25px;
}

.mostViewMainBox .latestProductBody .discount_content .price{
  background-color: #2dcea2;
}

.mostViewMainBox .latestProductBody .discount_content .price::before{
  border-left: 15px solid #2dcea2;
}

/* Most View (END) */

/* Homepage Grouped */

.productHomeGrouped{
  border-radius: var(--borderRadius1);
  position: relative;
  background-color:#9596d7;
  padding: 30px;
  padding-bottom: 100px;
  margin-bottom: 30px;
}

.productHomeGrouped:nth-child(1){
  background-color:#9596d7;
}

.productHomeGrouped:nth-child(2){
  background-color:#95c4d7;
}

.productHomeGrouped:nth-child(3){
  background-color:#f5abcb;
}

.productHomeGrouped:nth-child(4){
  background-color:#abd6ad;
}

.productHomeGrouped .productHomePageMembers .owl-prev,
.productHomeGrouped .productHomePageMembers .owl-next{
  background-color: #9596d7;
  color: #fff !important;
}

.productHomeGrouped:nth-child(1) .productHomePageMembers .owl-prev,
.productHomeGrouped:nth-child(1) .productHomePageMembers .owl-next{
  background-color: #9596d7;
}

.productHomeGrouped:nth-child(2) .productHomePageMembers .owl-prev,
.productHomeGrouped:nth-child(2) .productHomePageMembers .owl-next{
  background-color: #95c4d7;
}

.productHomeGrouped:nth-child(3) .productHomePageMembers .owl-prev,
.productHomeGrouped:nth-child(3) .productHomePageMembers .owl-next{
  background-color: #f5abcb;
}

.productHomeGrouped:nth-child(4) .productHomePageMembers .owl-prev,
.productHomeGrouped:nth-child(4) .productHomePageMembers .owl-next{
  background-color: #abd6ad;
}

.productHomeGrouped .groupHTitle{
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,.3);
  margin-bottom: 15px;
}

.groupHTitlemin{
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
}

.groupHTitlemin::before{
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  float: right;
  border-radius: 90px;
  margin-top: 3px;
  margin-left: 8px;
}

.productHomePageMembers .sidebargpItem{
  min-height: 300px;
  border-radius: var(--borderRadius);
}

.PHG-shape{
  position: absolute;
  bottom: 0;
  transform: rotate(180deg);
}

.productHomePageMembers .owl-prev,
.productHomePageMembers .owl-next{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: unset !important;
  bottom: -80px;
}

.productHomePageMembers .owl-prev{
  right: 80px !important;
}

.productHomePageMembers .owl-next{
  left: unset !important;
  right: 120px;
}

/* Homepage Grouped (END) */

/* Footer Edit */

.footerFeatureMain{
  background-color: #eaecee;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footerFeatureBox{
  display: flex;
  align-items: center;
}

.footerFeatureCard{
  width: 25%;
  display: flex;
  align-items: center;
}

.footerFeatureCard img{
  margin-left: 15px;
}

.FFC-bodyText{
  font-weight: 600;
}

.FFC-bodyText1{
  font-size: 13px;
  margin-top: 15px;
}

.footerCard{
  display: flex !important;
}

.footerCard > div{
  width: auto !important;
  min-height: unset !important;
  height: auto;
  line-height: 1.5;
}

.footerCard > div:first-child{
  font-weight: bold;
}

.footerCard a{
  color: #111 !important;
}

.shapeOfFooter{
  position: absolute;
  top: -55px;
  transform: rotate(180deg);
  filter: drop-shadow(0 6px 3px rgba(0,0,0,.01));
}

.footerShapeLogo{
  width: 90px;
  position: absolute;
  top: -80px;
  right: 80px;
}

/* Footer Edit (END) */

/* Responsive */


@media screen and (min-width : 1000px) {
  .mainSideMenu{
    height: 400px;
  }

  .mainSideMenu > ul{
    width: 60vw;
    display: grid;
  }

  .mainSideMenu ul li{
    border-bottom:0;
  }

  .menuClass1 > a{
    width: 15vw;
  }

  .mainSideMenu::before{
    content: '';
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    background-color: #eee;
    z-index: -1;
  }

  .mainSideMenu > ul > .menuClass1{
    position: unset;
  }

  .mainSideMenu > ul > li ul{
    height: 400px;
    top: 0;
    right: 15.5vw;
    flex-direction: column;
    flex-wrap: wrap;
  }

   li.menuClass1:hover > ul{
     display: flex !important;
   }

  .mainSideMenu > ul > li ul li a span{
    background-color: transparent;
  }

  .mainSideMenu > ul > li > ul > li:hover > a > span, .menuClass li:hover > a{
    background-color:transparent !important;
    color: #ccc !important;
  }

  .mainSideMenu > ul > li > a{
    padding-left: 12px;
  }

  .mainSideMenu > ul > li:hover > a > span{
    background-color: transparent;
    color: #2dcea2;
  }

  .mainSideMenu > ul > li > a > i{
    transition: all .5s ease;
  }
  .mainSideMenu > ul > li:hover > a > i{
    transform: rotate(90deg);
  }
  .mainSideMenu > ul > li:hover  > a{
    background-color: #f0f0f0;
  }
}



@media screen and (max-width:999px){

  .shapeOfSlider {
    display: none;
  }

  .HS-left{
    margin-top: 30px;
  }

  .slider-inner .owl-nav .owl-prev, .slider-inner .owl-nav .owl-next{
    top: 50%;
    transform: translateY(-50%);
  }

  .slider-inner .owl-nav .owl-prev{
    right: 5px;
  }

  .slider-inner .owl-nav .owl-next{
    right: unset;
    left: 5px;
  }

  #slider .slider_nav{
    display: none;
  }

  .product_single .content > .product_name{
    margin-top: 40px !important;
  }

  .product_latest .votes{
    top: -30px;
    left: unset;
    right: 80px;
  }

  .product_latest .img-part{
    width: 80%;
    max-width: 120px;
  }

  .product_latest .img-part img{
    width: 100%;
  }

  #specialSlider .product_single .content > .product_name{
    margin-top: 20px !important;
  }

  #specialSlider .product_single .content > .discount_content .price{
    width: 100%;
  }

  .footerFeatureBox{
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footerFeatureBox::before,
  .footerFeatureBox::after{
    content: unset;
  }

  .footerFeatureCard{
    width: 48%;
  }

  .footerFeatureCard:nth-child(1),
  .footerFeatureCard:nth-child(2){
    margin-bottom: 35px;
  }

  .userLogoInHeader{
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px;
  }

  .SBI-text{
    display: none;
  }

  .ULIH-text{
    display: none;
  }

  .top-header{
    margin-bottom: 180px;
  }

  .top_headerBox1{
    width: 90%;
    justify-content: center;
    right: 5%;
  }

  .top_headerBox2{
    display: none;
  }

  .mainUserAcartBox {
    justify-content: space-between;
    margin-top: 10px;
  }

  .footer{
    padding-bottom: 80px;
  }

  .copyRightText{
    margin-top: 30px;
  }

  .shapeOfFooter{
    top: -65px;

    margin: auto
  }

  .footerShapeLogo {
    top: -95px;
    /* right: 115px; */
  }

}

/* Responsive (END) */

/* new site (END) */