@charset "UTF-8";

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Global
    ## Global
    ## Mixins
    ## Variables
    ## Common

# Sections
    ## Nav Bar
    ## Banner
    ## Brand Area
    ## Footer
    ## Widgets

# Elements
    ## accordion
    ## filter
    ## apartment
    ## blog
    ## city
    ## feature
    ## gallery
    ## intro
    ## main-search
    ## pricing
    ## service
    ## team
    ## user-list

--------------------------------------------------------------*/
:root {

/*   --body-font-size: 16px;
  --line-height30: 1.3;
  --main-color: #ee161f;
  --secondary-color: #fdc913;
  --main-color-opacity: 206, 40, 41;
  --body-font:'proxima_nova_rgregular', Helvetica, Arial, sans-serif;
  --heading-font: 'proxima_nova_rgregular', Helvetica, Arial, sans-serif;
  --paragraph-color: #5f5f5f;
  --heading-color: #727272;
  --bebas-font: 'proxima_nova_rgregular', Helvetica, Arial, sans-serif;
  --satisfy-font: 'SF Pro Display', sans-serif;*/

  --body-font-size: 15px;
  --line-height30: 1.3;
  --main-color: #ee161f;
  --secondary-color: #fff;
  --main-color-opacity: 206, 40, 41;
  --body-font:'poppins';
  --heading-font: 'poppins';
  --paragraph-color: #5f5f5f;
  --heading-color: #727272;
  --bebas-font: 'poppins';
  --satisfy-font: 'poppins';
}

@font-face {
  font-family: 'proxima_nova_rgregular';
  src: url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.eot');
  src: url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.eot?#iefix') format('embedded-opentype'),
     url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.woff') format('woff'),
     url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.ttf') format('truetype'),
     url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.svg#proxima_nova_rgregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'proxima_nova_rgbold';
  src: url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.eot');
  src: url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.eot?#iefix') format('embedded-opentype'),
     url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.woff') format('woff'),
     url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.ttf') format('truetype'),
     url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.svg#proxima_nova_rgbold') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'adelle_rgregular';
  src: url('https://litmus.com/fonts/Emails/adelle_reg-webfont.eot');
  src: url('https://litmus.com/fonts/Emails/adelle_reg-webfont.eot?#iefix') format('embedded-opentype'),
     url('https://litmus.com/fonts/Emails/adelle_reg-webfont.woff') format('woff'),
     url('https://litmus.com/fonts/Emails/adelle_reg-webfont.ttf') format('truetype'),
     url('https://litmus.com/fonts/Emails/adelle_reg-webfont.svg#adelle_rgregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--body-font);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(--paragraph-color);
  font-family: var(--body-font);
  line-height: var(--line-height30);
  font-size: var(--body-font-size);
  background-color: #ffdee0;
}

h1 {
  font-size: 86px;
  line-height: 1.2333333333;
}

h2 {
  font-size: 42px;
  line-height: 1.3380952381;
}

h3 {
  font-size: 32px;
  line-height: 1.3833333333;
}

h4 {
  font-size: 28px;
  line-height: 1.3380952381;
}

h5 {
  font-size: 24px;
  line-height: 1.3380952381;
}

h6 {
  font-size: 18px;
  line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 500;
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 0px;
  word-break: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

a:hover {
  color: var(--main-color);
}

pre {
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li {
  list-style: none;
  margin-bottom: 1rem;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

button:hover,
button:active,
button:focus {
  outline: 0;
}

/*input and button type focus outline disable*/
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

.no-gutter.row,
.no-gutter.container,
.no-gutter.container-fluid {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.back-maroon{background: #ee161f;}
.back-white{background: #fff !important;}
.maroon{color: #ee161f;font-weight: 600;}
.yellow-color{color: #fdc913;font-weight: 600;}

.no-gutter > [class^=col-] {
  padding-left: 0;
  padding-right: 0;
}

.no-gutter[class^=col-] {
  padding-left: 0;
  padding-right: 0;
}

.h-100vh {
  height: 100vh;
}

code {
  color: #faa603;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: block;
  padding-left: 20px;
  position: relative;
  z-index: 0;
}
.check-list li:after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "fontawesome";
  content: "";
  color: var(--main-color);
}
.black{color: #727272;}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  clear: both;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.comment-navigation .nav-previous > a,
.posts-navigation .nav-previous > a,
.post-navigation .nav-previous > a,
.comment-navigation .nav-next > a,
.posts-navigation .nav-next > a,
.post-navigation .nav-next > a {
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.comment-navigation .nav-previous:hover > a,
.posts-navigation .nav-previous:hover > a,
.post-navigation .nav-previous:hover > a,
.comment-navigation .nav-next:hover > a,
.posts-navigation .nav-next:hover > a,
.post-navigation .nav-next:hover > a {
  color: var(--main-color);
}

.h-100vh {
  height: 100vh;
}

.position-relative {
  position: relative;
}


/*new css aj*/

.pd-top-60{padding-top: 60px;}

.carousel-item{
    /*background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;*/
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: contain;object-fit: cover;
    object-position: center;
    height:100vh;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
  background-color: #ee161f !important;color: #fff;border-radius: 5px;
}
.carousel-control-next, .carousel-control-prev{width: 5%;}
.padlr0{padding-right: 0px !important; padding-left: 0px !important;}
.custom_badge{cursor:pointer;background: #ee161f;color: #fff;padding: 5px 10px 5px 10px;position: absolute;z-index: 2;left: 0;top: 0;border-radius: 10px 0px 10px 0px;font-size: 13px;}

.mob_cart_span{
    font-size: 11px;
    left: 30px;
    z-index: 9999;
    color: #fff;
    position: relative;
    top: -15px;}

 

  .p1:after{
    position: absolute;
    right: -26%;
    top: -53%;
    vertical-align: middle;
    content: attr(data-count);
    font-size: 11px;
    padding: 5px;
    border-radius: 50%;
    line-height: 16px;
    color: white;
    background: rgba(255,0,0,.85);
    text-align: center;
    width: 25px;
    height: 25px;
}

 

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 23px !important;
    line-height: 0px !important;
    vertical-align: middle;
} 

.mob-pad-top-mob{display: none !important}
.order_placed_icon img{width: 16% !important;}
.trash_btn{display: none !important;}
.menu-logout-btn{display: none !important;}
.card_confirm_popup{text-align: left;height: 580px;overflow: scroll;}
.card_confirm_popup_head{padding-left:10px;}
.cart_top_head_total_item p{padding-right: 30px;}
.mob_details_col .wrap-details {margin-top: 0px !important;}
#blog_mob_filter{display: none !important;}
.top_header_nav_search .logo{padding-top: 9px;display: inline-flex;padding-bottom: 14px;}
.cart-menu .dropdown-menu-right {right: 0 !important; }
.menu_right_location ul li{display: inline-grid;} 
/*.nav-line-2:hover{color: #fff !important;}*/
.menu_row{ margin-top: -14px;}
.delivTo a:hover{color: #ffffff !important;}
.footer-area-2 .widget .widget-title{margin-bottom: 27px !important;}
.model_delivery_headline{font-size: 20px;color: #ee161f;}
.model_delivery_confirm_location{padding-top: 10px;}
.model_delivery_confirm_location label{padding-left: 20px;font-size: 17px;}
.model_delivery_confirm_location label:first-child {padding-left: 0px;}
.model_delivery_confirm_location label input[type="radio"] {height: 20px;width: 20px;top: 3px;position: relative;}
.delivery_var_type_css li{padding-bottom: 5px;}
.delivery_var_type_css label{font-size: 17px;}
.delivery_var_type_css label input{font-size: 16px;padding: 5px 10px 5px 10px;border-radius: 5px;outline: 0;border: 1px solid #939393;}
.delivery_var_type_css label input[type="radio"] {height: 20px;width: 20px;top: 3px;position: relative;}
input[class="india-class"] {accent-color: #ee161f;}
input[class="internsional-class"] {accent-color: #ee161f;}
input[type="radio"] {accent-color: #ee161f;}
input[class="take-awway-class"] {accent-color: #ee161f;}
.pincode_input{display: -webkit-inline-box !important;width: auto;}
.radio_delivery_list ul li{padding-bottom: 10px;}
.clear_btn_div{display: inline-flex;width: 100%;}
.shelf_life_width{width: 70%;}
.clear_btn_div span{width: 30%;float: right;text-align: right;color: #ee161f;}
.clear_btn_div span a{font-size: 12px;background: #ee161f;padding: 4px 12px 4px 12px;color: #fff;}
.view_popup{height: 500px;overflow-y: auto;}
.theme_color{color: #ee161f;}
.swal2-styled.swal2-confirm {background-color: #ee161f !important;}
.accordin_pad{padding: 6px 19px !important;}
.delivTo_mobile{display: none;}
.delivTo_desk{display: block;}


/*medium mobile device*/
@media only screen and (max-width: 768px) {
 .cat_img {
    padding: 0px 0px 0px 20px;
}
}


/*chrome-125% device*/
@media only screen and (min-width:1422px) and (max-width:1600px){
.cat_img {padding: 0px 0px 0px 20px;}
.product-nav .nav-item {width: 20.666667%; padding: 0 7.5px;}
}


/*chrome-110% device*/
@media only screen and (min-width:1082px) and (max-width:1400px){
.cat_img {padding: 0px 0px 0px 20px !important;}
.product-nav .nav-item {width: 20.666667% !important; padding: 0 7.5px !important;}
}


/*chrome-100% device*/
@media only screen and (min-width:700px) and (max-width:1200px){
.cat_img {padding: 0px 0px 0px 20px;}
}


/*chrome-90% device*/
@media only screen and (min-width:500px) and (max-width:1100px){
.cat_img {padding: 0px 0px 0px 20px;}

}










/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 15px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  float: left;
  clear: both;
  margin-right: 20px;
}

.alignright {
  float: right;
  clear: both;
  margin-left: 20px;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

.alignfull {
  margin: 1.5em 0;
  max-width: 100%;
}

.alignwide {
  max-width: 1100px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
  clear: both;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*----------------------------------------
    # Unit test
------------------------------------------*/
.wp-link-pages a {
  margin: 0 5px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.wp-link-pages {
  margin-bottom: 30px;
  margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
  border: 1px solid #e2e2e2;
  padding: 5px 15px;
  display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
  background-color: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}

.wp-link-pages span:first-child {
  margin-right: 5px;
}

dl,
ol,
ul {
  padding-left: 0;
}

.post-password-form input {
  display: block;
  border: 1px solid #e2e2e2;
  height: 50px;
  border-radius: 3px;
  padding: 0 20px;
}

.post-password-form label {
  font-weight: 600;
  color: #727272;
}

.post-password-form input[type=submit] {
  width: 100px;
  height: 50px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.post-password-form input[type=submit]:hover {
  background-color: #121a2f;
}

.footer-widget .table td,
.footer-widget .table th {
  padding: 0.5rem !important;
}

.custom-gutters-14 > .col,
.custom-gutters-14 > [class*=col-] {
  padding-right: 7px;
  padding-left: 7px;
}

.custom-gutters-20 > .col,
.custom-gutters-20 > [class*=col-] {
  padding-right: 10px;
  padding-left: 10px;
}

/*---------------------------------------
    ## Button
---------------------------------------*/
.btn {
  height: 40px;
  line-height: 40px;
  padding: 0 21px;
  overflow: hidden;
  position: relative;
  border: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
  border-radius: 10px;
}
.search-cart-btn .out_of_stock_btn:hover {background: #fff !important;}
.search-cart-btn .out_of_stock_btn{cursor: no-drop;}
.btn i,
.btn svg {
  margin-left: 5px;
}
.btn:focus, .btn:active {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}
.btn:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  z-index: -1;
  height: 100%;
  left: -35%;
  top: 0;
  -webkit-transform: skew(30deg);
          transform: skew(30deg);
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  width: 0;
}
.btn img {
  margin-right: 7px;
  margin-top: -1px;
}
.btn:hover {
  color: #fff;
      background-color: #ee161f;
}
.btn:hover:after {
  height: 100%;
  width: 135%;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    background-color: #ee161f;
}

.btn-base {
  color: #fff;
  border: 0;
  background: var(--main-color);
}
.btn-base:after {
  background: #fff;
}
.btn-base:hover::after {
  background: var(--main-color);
}

.btn-secondary {
  background: #ee161f;
  color: #ffffff;
}
.btn-secondary:after {
  background: #fff;
}
.btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover {
  /*background: var(--secondary-color);*/
  /*color: #fff;*/
}
.btn-secondary:active::after, .btn-secondary:focus::after, .btn-secondary:hover::after {
  background: #ee161f;
}

.btn-base-light {
  color: var(--main-color);
  border: 0;
  background: #e5f1fb;
}
.btn-base-light:after {
  background: #fff;
}
.btn-base-light:hover::after {
  background: var(--main-color);
}
.btn-base-light:active:after, .btn-base-light:focus:after {
  width: 135%;
  background: var(--main-color);
}

.btn-gray-border {
  color: #828282;
  border: 2px solid #d9d9d9;
  background: transparent;
  line-height: 60px;
  letter-spacing: 1px;
}
.btn-gray-border:after {
  background: #fff;
}
.btn-gray-border:hover {
  border: 2px solid var(--main-color);
}
.btn-gray-border:hover::after {
  background: var(--main-color);
}
.btn-gray-border:active:after, .btn-gray-border:focus:after {
  width: 135%;
  background: var(--main-color);
}

.btn-border {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  background: transparent;
}
.btn-border:hover {
  color: #ffffff;
}

.btn-border-white {
  color: #ffffff;
  border: 1px solid #ffffff;
  background: transparent;
}
.btn-border-white:hover {
  background: #fff;
  opacity: 1;
  color: var(--main-color);
}
.btn-border-white:hover::after {
  background: #fff;
}

.btn-white {
  color: var(--main-color);
  border: 0;
  background: #fff;
  font-size: 14px;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.btn-white:hover {
  color: var(--main-color);
}
.btn-white:hover:after {
  background: #fff;
}
.btn-white:focus, .btn-white:active {
  color: var(--main-color);
}

.link-btn {
  margin: 0;
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  color: var(--main-color);
  position: relative;
}
.link-btn::after {
  content: "";
  position: absolute;
  width: 0%;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  left: 0;
  bottom: 0;
  background-color: var(--main-color);
  height: 1px;
}
.link-btn:hover {
  color: var(--main-color);
}
.link-btn:hover::after {
  width: 100%;
}

/*------------------------------------------------
    ## breadcrumb title
------------------------------------------------*/
.breadcrumb-area {
  background-color: var(--main-color);
  position: relative;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 64%;
  z-index: 0;
}
.breadcrumb-area .banner-bg-img {
  background-size: 108% 179%;
}
.breadcrumb-area .banner-inner {
  padding: 10px 0 10px;
}
.breadcrumb-area .banner-inner h1,h2 {
  margin-bottom: -20px;
}

.breadcrumb {
  margin: 0px;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.breadcrumb .breadcrumb-item {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}
.breadcrumb .breadcrumb-item.active {
  color: var(--secondary-color);
}
.breadcrumb .breadcrumb-item:hover a {
  color: var(--secondary-color);
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #fff;
  content: var(--bs-breadcrumb-divider, "-");
}

/*------------------------------------------------
    ## Section title
------------------------------------------------*/
.section-title {
  /*margin-bottom: 37px;*/
  position: relative;
}
.section-title .sub-title {
  color: var(--main-color);
  font-family: var(--satisfy-font);
  font-weight: 400;
  margin-bottom: 0px;
  font-size: 36px;
}
.section-title .title {
  font-size: 27px;
  font-weight: 500;
}
.navbar{background: #fff;}
.section-title p {
  margin-top: 12px;
}
/*.section-title .btn {
  margin-top: 22px;
  height: 64px;
  line-height: 64px;
}*/

.pagination {
  border: 0;
  display: inline-block;
  margin: 0px;
}
.pagination .page-item {
  margin-right: 10px;
  display: inline-block;
}
.pagination .page-item.active .page-link {
  background: var(--main-color);
  color: #fff;
}
.pagination .page-item .page-link {
  border: 0;
  height: 36px;
  width: 36px;
  padding: 0px;
  background: #fff;
  border-radius: 6px;
  color: var(--main-color);
  text-align: center;
  line-height: 36px;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 18px;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  outline: 0;
}
.pagination .page-item .page-link:hover {
  background: var(--main-color);
  color: #fff;
}

/*------------------------------------------------
    ## Back Top
------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 44px;
  height: 44px;
  color: #fff;
  background-color: var(--main-color);
  text-align: center;
  line-height: 44px;
  z-index: 99;
  font-size: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: none;
  -webkit-animation: backto-top-bounce 4s infinite ease-in-out;
          animation: backto-top-bounce 4s infinite ease-in-out;
  border-radius: 4px;
}
.back-to-top svg {
  margin-top: 11px;
}

@-webkit-keyframes backto-top-bounce {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(8px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-5px);
  }
}
@keyframes backto-top-bounce {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(8px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-5px);
  }
}
/*-----------------------------------------
    ## Preloader Css
-------------------------------------------*/
.pre-wrap {
  position: fixed;
  content: "";
  -webkit-transform: translate(-100%, -240%);
          transform: translate(-100%, -240%);
  font-size: 62px;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.preloader-inner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999999999;
  background: #fff;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.preloader-inner .cancel-preloader {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.preloader-inner .cancel-preloader a {
  background-color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--main-color);
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 30px;
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.preloader-inner .cancel-preloader a:hover {
  background-color: var(--heading-color);
  color: #fff;
}

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
/**===== wave1 =====*/
.spinner {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 50px;
  width: 50px;
  margin: -25px 0 0 -25px;
  border-radius: 50%;
}

.spinner:before,
.spinner:after {
  content: "";
  border: 2px solid var(--main-color);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  position: absolute;
  left: 0px;
}

.spinner:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  -webkit-animation: spWaveBe 0.6s infinite linear;
  animation: spWaveBe 0.6s infinite linear;
}

.spinner:after {
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  opacity: 0;
  -webkit-animation: spWaveAf 0.6s infinite linear;
  animation: spWaveAf 0.6s infinite linear;
}

@-webkit-keyframes spWaveAf {
  from {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes spWaveAf {
  from {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
}
@-webkit-keyframes spWaveBe {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
}
@keyframes spWaveBe {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
}
/***single-input-area***/
.default-form-wrap {
  margin-bottom: 10px;
}
.default-form-wrap label {
  font-size: 20px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
}
.default-form-wrap label:after {
  content: "*";
  position: absolute;
  right: -12px;
  top: 0;
  color: var(--main-color);
}
.default-form-wrap .title {
  margin-bottom: 28px;
}
.default-form-wrap .single-input-wrap {
  border-radius: 6px;
  height: 39px;
  line-height: 39px;
}
.default-form-wrap .single-input-wrap input {
  border-radius: 6px;
}
.default-form-wrap .form-check {
  padding: 19px 0 19px 1.5rem;
}
.default-form-wrap .reset-pass {
  color: #7c7d94;
}
.default-form-wrap .reset-pass:hover {
  color: var(--main-color);
}
.default-form-wrap .btn {
  margin-top: 22px;
}
.default-form-wrap p {
  text-align: center;
  margin: 40px 0 0 0;
}
.default-form-wrap p a {
  color: var(--main-color);
  margin-left: 5px;
}
.default-form-wrap.style-2 .single-textarea-wrap textarea,
.default-form-wrap.style-2 .single-input-wrap input {
  background: #FFF;
}
.cont_left_sec{
 
    padding: 30px !important;
    border-radius: 5px;
    height: 290px;}
.single-input-wrap {
  position: relative;
  height: 64px;
  margin-bottom: 14px;
  line-height: 42px;
  border-radius: 50px;
}
.single-input-wrap.with-btn input {
  padding: 0 240px 2px 30px;
}
.single-input-wrap label {
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 5px;
}
.single-input-wrap input {
  border: none;
  padding: 0 25px 2px 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  width: 100%;
  height: 100%;
  color: #5f5f5f;
  background: #fff;
  border-radius: 50px;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  position: relative;
}
.single-input-wrap input::-webkit-input-placeholder {
  color: #5f5f5f;
}
.single-input-wrap input::-moz-placeholder {
  color: #5f5f5f;
}
.single-input-wrap input:-ms-input-placeholder {
  color: #5f5f5f;
}
.single-input-wrap input::-ms-input-placeholder {
  color: #5f5f5f;
}
.single-input-wrap input::placeholder {
  color: #5f5f5f;
}
.single-input-wrap input:active, .single-input-wrap input:focus {
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.single-input-wrap .btn {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
}
.kimya{font-size: 14px;}
.form-check-input:checked[type=radio] {}
.single-textarea-wrap textarea {
  font-size: 16px;
  width: 100%;
  height: 100%;
  color: #5f5f5f;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  padding: 8px 30px 8px 10px;;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  position: relative;
}
.single-textarea-wrap textarea::-webkit-input-placeholder {
  color: #5f5f5f;
}
.single-textarea-wrap textarea::-moz-placeholder {
  color: #5f5f5f;
}
.single-textarea-wrap textarea:-ms-input-placeholder {
  color: #5f5f5f;
}
.single-textarea-wrap textarea::-ms-input-placeholder {
  color: #5f5f5f;
}
.single-textarea-wrap textarea::placeholder {
  color: #5f5f5f;
}

.form-check .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0px;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  /*background: rgba(41, 41, 41, 0.1);*/
  border: 1px solid #8f8f8f;
}
.form-check .form-check-input:focus, .form-check .form-check-input:active {
  border: 1px solid grey;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}
.form-check .form-check-input:checked {
  background-color: #ee161f;
  border: none;
}
.form-check .form-check-input[type=checkbox] {
  border-radius: 0;
}
.form-check .form-check-label {
  color: var(--heading-color);
  font-size: 16px;
}

.single-select {
  font-weight: 500;
  color: #5f5f5f;
  height: 46px;
  line-height: 46px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  padding: 0 90px 0 20px;
}
.single-select .list {
  width: 100%;
}
.single-select:after {
  border-color: #5f5f5f;
  border-width: 1px;
  height: 6px;
  width: 6px;
  right: 25px;
}

/*------------------------------------------------
    ## social area
------------------------------------------------*/
.social-area {
  padding: 0;
  margin: 0;
}
.social-area li {
  list-style: none;
  display: inline-block;
  padding: 0 10px;
}
.social-area li:first-child {
  padding-left: 0;
}
.social-area li:last-child {
  padding-right: 0;
}
.bi-whatsapp{color: #3c9000 !important;}
.social-area li a {
  color: #ee161f !important;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 0;
  font-size: 18px;
  background: transparent;
  border-radius: 3px;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-area li a:hover {
  color: #fff !important;
}

/*********** Magnific-popup style **************/
.mfp-zoom-in .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.mfp-zoom-in.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.7;
}

.mfp-zoom-in.mfp-removing .mfp-content {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/*----------------------------------------
  ## Search Popup
----------------------------------------*/
.td-search-popup.active .search-form {
  visibility: visible;
  opacity: 1;
  width: 40%;
}

.td-search-popup .search-form {
  width: 35%;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 999;
}

.td-search-popup .search-form .form-group .form-control {
  border: none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  height: 54px;
  padding: 0 75px 0 25px;
  background: #f7f9fb;
}

.td-search-popup .search-form .form-group .form-control:hover,
.td-search-popup .search-form .form-group .form-control:focus,
.td-search-popup .search-form .form-group .form-control:active {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.td-search-popup .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 54px;
  border: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0;
  text-align: center;
  cursor: pointer;
  background: #111;
}
.td-search-popup .search-form .submit-btn:hover {
  background: var(--secondary-color);
}

.td-search-popup .search-form .submit-btn:hover,
.td-search-popup .search-form .submit-btn:focus,
.td-search-popup .search-form .submit-btn:active {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(206, 40, 41, 0.95);
  z-index: 999;
  content: "";
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.body-overlay.active {
  visibility: visible;
  opacity: 0.97;
}

.owl-carousel:hover .owl-nav {
  opacity: 1;
}
.owl-carousel:hover .owl-nav .owl-next {
  right: -120px;
}
.owl-carousel:hover .owl-nav .owl-prev {
  left: -120px;
}
.owl-carousel .owl-nav {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.owl-carousel .owl-nav button {
  height: 48px;
  width: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
  cursor: pointer !important;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.owl-carousel .owl-nav button:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 0;
  top: -6px;
  left: -6px;
  border-top: 30px solid transparent;
  border-right: 45px solid var(--main-color);
  border-bottom: 30px solid transparent;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  z-index: -1;
}
.owl-carousel .owl-nav button:hover {
  background: transparent;
  border: 0;
}
.owl-carousel .owl-nav button:hover:after {
  border-right: 45px solid var(--secondary-color);
}
.owl-carousel .owl-nav button.owl-next {
  right: -150px;
}
.owl-carousel .owl-nav button.owl-next:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 6px;
  width: 60px;
}
.owl-carousel .owl-nav button.owl-prev {
  left: -150px;

}
.owl-carousel.style-2 .owl-nav {
  opacity: 1;
  position: absolute;
  right: 0;
  top: -56px;
}
.owl-carousel.style-2 .owl-nav button {
  position: initial;
  background: #ffdee0;
  -webkit-transform: none;
          transform: none;
  height: 56px;
  width: 56px;
  line-height: 56px;
  border-radius: 6px;
  color: var(--main-color);
  margin-right: 10px;
}
.owl-carousel.style-2 .owl-nav button:last-child {
  margin-right: 0;
}
.owl-carousel.style-2 .owl-nav button:hover {
  background: var(--main-color);
  color: #fff;
}
.owl-carousel.style-2 .owl-nav button::after {
  display: none;
}

.owl-dots {
  text-align: center;
  margin-top: -15px;
}
.owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 0;
  display: inline-block;
  padding: 0;
  margin: 0 10px;
  background: #e5f1fb;
  cursor: pointer !important;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.owl-dots .owl-dot.active {
  background: var(--main-color);
}

.slick-dots {
  bottom: -40px;
}
.slick-dots li {
  height: 8px;
  width: 40px;
  border: 0;
  display: inline-block;
  padding: 0;
  margin: 0 4px;
  background: #f8f8f8;
  cursor: pointer !important;
  background: #e5e5e5;
}
.slick-dots li.slick-active {
  background: var(--main-color);
}

.rating-inner {
  color: #ee161f !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.rating-inner i {
  padding: 0 3px;
}

/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
.text-secondary {
  color: var(--secondary-color) !important;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: -1;
}

.border-none {
  border: 0 !important;
}

.bg-main-gradient {
  background: var(--main-gradient) !important;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.bg-black {
  background: #000000;
}

.bg-main {
  background: var(--main-color);
}

.bg-gray-gradient {
  background: -webkit-gradient(linear, left bottom, left top, from(#f9fbfe), to(#fff));
  background: linear-gradient(to top, #f9fbfe, #fff);
}

.default-pd-top {
  padding-top: 143px;
}

.pd-top-45 {
  padding-top: 45px;
}

.pd-top-35 {
  padding-top: 35px;
}

.pd-top-50 {
  padding-top: 50px;
}

.pd-top-65 {
  padding-top: 65px;
}

.pd-top-70 {
  padding-top: 70px;
}

.pd-top-85 {
  padding-top: 85px;
}

.pd-top-100 {
  padding-top: 100px;
}

.pd-top-110 {
  padding-top: 110px;
}

.pd-top-115 {
  padding-top: 115px;
}

.pd-top-120 {
  padding-top: 120px;
}

.pd-top-135 {
  padding-top: 135px;
}

.pd-top-130 {
  padding-top: 130px;
}

.pd-top-140 {
  padding-top: 140px;
}

.pd-top-150 {
  padding-top: 150px;
}

.pd-top-190 {
  padding-top: 182px;
}

.pd-bottom-30 {
  padding-bottom: 30px;
}

.pd-bottom-45 {
  padding-bottom: 45px;
}

.pd-bottom-60 {
  padding-bottom: 60px;
}

.pd-bottom-65 {
  padding-bottom: 65px;
}

.pd-bottom-80 {
  padding-bottom: 80px;
}

.pd-bottom-90 {
  padding-bottom: 90px;
}

.pd-bottom-95 {
  padding-bottom: 95px;
}

.pd-bottom-105 {
  padding-bottom: 105px;
}

.pd-bottom-100 {
  padding-bottom: 100px;
}

.pd-bottom-110 {
  padding-bottom: 110px;
}

.pd-bottom-115 {
  padding-bottom: 115px;
}

.pd-bottom-120 {
  padding-bottom: 120px;
}

.pd-bottom-130 {
  padding-bottom: 130px;
}

.pd-bottom-135 {
  padding-bottom: 135px;
}

.pd-bottom-140 {
  padding-bottom: 140px;
}

.pd-bottom-145 {
  padding-bottom: 145px;
}

.pd-bottom-150 {
  padding-bottom: 150px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.mt-250 {
  margin-top: 250px;
}

.mt-n1 {
  margin-top: -12px;
}

/***scroll-bar***/
.sc5::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.sc5::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}

.sc5::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 10px;
}

/***scroll-bar***/
.sc6::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.sc6::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}

.sc6::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*=======================
 OFF CANVAS MENU SECTION
=========================*/
.side-navbar {
  height: 100%;
  width: 260px;
  position: fixed;
  z-index: 12333300;
  text-align: left;
  left: -300px;
  background: #222;
  padding: 20px;
  overflow-x: scroll;
}

i#side-menu-close,
svg#side-menu-open {
  cursor: pointer;
}

i#side-menu-close,
svg#side-menu-close {
  float: right;
  cursor: pointer;
  display: block;
  font-size: 17px;
}

ul.side-navbar-items {
  padding: 0 0 0 10px;
  margin-top: 20px;
}
ul.side-navbar-items li {
  list-style: none;
}
ul.side-navbar-items li.menu-item-has-children {
  position: relative;
}
ul.side-navbar-items li.menu-item-has-children:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #b5b5b5;
  top: 26px;
  left: 0;
}
ul.side-navbar-items li.menu-item-has-children .sub-menu {
  margin-top: 10px;
}
ul.side-navbar-items li a {
  color: #b5b5b5;
  font-size: 12px;
  display: inline-block;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
ul.side-navbar-items li a:hover {
  color: var(--main-color);
}

/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/
.navbar-area {
  padding: 0;
  top: 0;
  position: sticky;
  z-index: 98;
  width: 100% !important;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: var(--main-color);
  border-bottom: 1px solid #c20608;
  -webkit-box-shadow: 0 9px 150px -30px rgba(0, 0, 0, 0.09);
          box-shadow: 0 9px 150px -30px rgba(0, 0, 0, 0.09);
}
.navbar-area .lawel-header-left {
  width: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navbar-area .navbar {
  padding: 0;
}
.navbar-area .nav-container {
  background-color: transparent;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  min-height: 100px;
}
.navbar-area .nav-container .navbar-collapse {
  -webkit-box-flex: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
}
.navbar-area .nav-container .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navbar-area .nav-container .logo a img {
  height: 53px;}
  .web_logo{margin-left: 20px;}
.navbar-area .nav-container .logo .sticky-logo {
  display: none;
}
.navbar-area .nav-container .btn-transparent {
  font-size: 13px;
  font-weight: 700;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li {
  margin-top: 0;
  display: inline-block;
  font-weight: 500;
  line-height: 50px;
  text-transform: capitalize;
  padding-left: 16px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
  color: #fff;
  font-size: 15px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover a {
  color: #ee161f;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
  margin-left: 33px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
/*  margin-right: 10px;*/
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  content: "";
  position: absolute;
  right: 1px;
  top: 50%;
  height: 7px;
  width: 2px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-top: -4px;
  display: none;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:after {
  content: "";
  position: absolute;
  right: 3px;
  top: 24px;
  height: 2px;
  width: 7px;
  background: #fff;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: none;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:after, .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:before {
  background: var(--secondary-color);
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  text-align: left;
  width: 266px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 0;
  width:2;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.border-bt0 {
  border-bottom: 0px !important;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 22px;
  font-size: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-bottom: 1px solid #f5f5f5;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 10px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #050a30;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}
.rupees_font{font-family: arial !important;font-weight: 500;padding: 0 8px 0;}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a span {
  font-size: 10px;
  /*background: var(--main-color);*/
  float: right;
  padding: 0px 3px;
  color: #727272;
  border-radius: 3px;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:before {
  position: absolute;
  left: 17px;
  top: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #fff;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover {
  background: var(--main-color);
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover > a {
  color: #fff;
  padding: 10px 20px 10px 30px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover > a span {
  background: #fff;
  color: var(--heading-color);
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover > a:before {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child {
  border-bottom: 0;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:before {
  position: absolute;
  right: 15px;
  top: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu {
  left: 100%;
  top: 0px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu .sub-menu .sub-menu {
  left: auto;
  right: 100%;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
  color: #fff;
}
.navbar-area .nav-container .main-menu-list {
  display: block;
  width: 100%;
}
.navbar-area .nav-container .main-menu-list li {
  margin-top: 0;
  display: inline-block;
  font-weight: 400;
  line-height: 50px;
  text-transform: capitalize;
}
.navbar-area .nav-container .main-menu-list li a {
  color: #022334;
  font-weight: 500;
  font-size: 18px;
}
.navbar-area .nav-container .main-menu-list li:hover a {
  color: #022334;
}
.navbar-area .nav-container .main-menu-list li + li {
  margin-left: 20px;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children, .navbar-area .nav-container .main-menu-list li.page_item_has_children {
  position: relative;
  z-index: 0;
  padding-right: 0;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children:before, .navbar-area .nav-container .main-menu-list li.page_item_has_children:before {
  position: absolute;
  right: -14px;
  top: 50%;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #022334;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children:hover, .navbar-area .nav-container .main-menu-list li.page_item_has_children:hover {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children:hover > .sub-menu, .navbar-area .nav-container .main-menu-list li.menu-item-has-children:hover > .children, .navbar-area .nav-container .main-menu-list li.page_item_has_children:hover > .sub-menu, .navbar-area .nav-container .main-menu-list li.page_item_has_children:hover > .children {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children {
  position: absolute;
  text-align: left;
  width: 210px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 0;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu.border-bt0,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children.border-bt0, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu.border-bt0,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children.border-bt0 {
  border-bottom: 0px !important;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu li,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children li, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu li,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children li {
  display: block;
  margin-left: 0;
  line-height: 22px;
  font-size: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-bottom: 1px solid #f5f5f5;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu li a,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children li a, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu li a,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children li a {
  display: block;
  padding: 10px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #050a30;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu li a:before,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children li a:before, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu li a:before,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children li a:before {
  position: absolute;
  left: 17px;
  top: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #fff;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu li:hover,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children li:hover, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu li:hover,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children li:hover {
  background: var(--main-color);
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu li:hover > a,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children li:hover > a, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu li:hover > a,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children li:hover > a {
  color: #fff;
  padding: 10px 20px 10px 30px;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu li:hover > a:before,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children li:hover > a:before, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu li:hover > a:before,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children li:hover > a:before {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu li:last-child,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children li:last-child, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu li:last-child,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children li:last-child {
  border-bottom: 0;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children:before,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children:before,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children:before,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children:before, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children:before,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children:before,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children:before,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children:before {
  position: absolute;
  right: 15px;
  top: 50%;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children > .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children > .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children > .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children .children, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children > .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children > .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children > .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children > .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children .children {
  left: 100%;
  top: 20px;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu .children .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children .children .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children .children .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children .children .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children .children .children .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children > .sub-menu .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children > .sub-menu .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children > .sub-menu .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children > .sub-menu .children .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children .children .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children .children .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children .children .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children .children .children .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children > .sub-menu .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children > .sub-menu .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children > .sub-menu .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children > .sub-menu .children .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children .children .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children .children .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children .children .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children .children .children .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children > .sub-menu .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children > .sub-menu .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children > .sub-menu .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children > .sub-menu .children .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children .children .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children .children .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children .children .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children .children .children .children, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children > .sub-menu .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children > .sub-menu .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children > .sub-menu .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children > .sub-menu .children .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children .children .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children .children .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children .children .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children .children .children .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children > .sub-menu .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children > .sub-menu .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children > .sub-menu .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children > .sub-menu .children .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children .children .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children .children .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children .children .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children .children .children .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children > .sub-menu .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children > .sub-menu .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children > .sub-menu .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children > .sub-menu .children .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children .children .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children .children .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children .children .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children .children .children .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children > .sub-menu .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children > .sub-menu .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children > .sub-menu .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children > .sub-menu .children .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children .children .sub-menu .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children .children .sub-menu .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children .children .children .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children .children .children .children {
  left: auto;
  right: 100%;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu, .navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children:hover > .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children:hover > .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children:hover > .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children:hover > .children,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children:hover > .sub-menu,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children:hover > .children, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children:hover > .sub-menu, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children:hover > .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children:hover > .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children:hover > .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children:hover > .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children:hover > .children,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children:hover > .sub-menu,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children:hover > .children {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before, .navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .children li:hover:before,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children:hover > .sub-menu li:hover:before,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .sub-menu .page_item_has_children:hover > .children li:hover:before,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children:hover > .sub-menu li:hover:before,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .menu-item-has-children:hover > .children li:hover:before,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children:hover > .sub-menu li:hover:before,
.navbar-area .nav-container .main-menu-list li.menu-item-has-children .children .page_item_has_children:hover > .children li:hover:before, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before, .navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .menu-item-has-children:hover > .children li:hover:before,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children:hover > .sub-menu li:hover:before,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .sub-menu .page_item_has_children:hover > .children li:hover:before,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children:hover > .sub-menu li:hover:before,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .menu-item-has-children:hover > .children li:hover:before,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children:hover > .sub-menu li:hover:before,
.navbar-area .nav-container .main-menu-list li.page_item_has_children .children .page_item_has_children:hover > .children li:hover:before {
  color: #fff;
}

.navbar-area-fixed {
  -webkit-box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.05);
          box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.05);
  top: 0;
  background: rgba(206, 40, 41, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

/********** navbar right part **********/
.nav-right-part {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav-right-part ul {
  padding: 0;
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.nav-right-part ul li {
  list-style: none;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-left: 29px;
  position: relative;
  cursor: pointer;
}
.nav-right-part ul li i {
  padding: 0;
}
.nav-right-part ul li.phone-contact i {
  margin-right: 9px;
}
.nav-right-part ul li.menu-cart {
  margin-right: 1px;
}
.nav-right-part ul li span {
  /*height: 24px; */
    /* width: 24px; */
    border-radius: 50%;
    /* display: inline-block; */
    position: absolute;
    background-color: var(--secondary-color);
    text-align: center;
    top: 0;
    right: 0;
    color: var(--heading-color);
    -webkit-transform: translate(100%, -45%);
    transform: translate(100%, -45%);
    /* line-height: 24px; */
    /* padding: 0 11px 0 8px; */
    padding: 5px;
    height: 27px;
    width: 27px;
    /*==========================*/
 /* height: 24px;
  width: 24px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  background-color: var(--secondary-color);
  text-align: center;
  top: 0;
  right: 0;
  color: var(--heading-color);
  -webkit-transform: translate(100%, -45%);
          transform: translate(100%, -45%);
  line-height: 24px;
  padding: 0 11px 0 8px;*/
}
.nav-right-part ul li a {
  display: block;
  color: #ee161f;;
}
.nav-right-part ul li a:hover {
  color: #ee161f;
}
.nav-right-part ul li a:hover span {
  color: var(--heading-color);
}
.nav-right-part ul li:first-child {
/*  margin-left: 0;*/
}
.nav-right-part .btn {
  margin-left: 30px;
  height: 48px;
  line-height: 48px;
}

.navbar-nav {
  opacity: 0;
  margin-right: -30px;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu-open {
  opacity: 1;
  margin-right: 0;
  visibility: visible;
}

.bar1 {
  width: 32px;
  height: 2px;
  margin-bottom: 5px;
  position: absolute;
  background: var(--main-color);
  z-index: 9999;
  top: 10px;
  right: -5px;
}

.bar2 {
  width: 24px;
  height: 2px;
  margin-bottom: 5px;
  position: absolute;
  background: var(--main-color);
  z-index: 9999;
  top: 17px;
  right: -5px;
}

.bar3 {
  width: 18px;
  height: 2px;
  margin-bottom: 5px;
  position: absolute;
  background: var(--main-color);
  z-index: 9999;
  top: 24px;
  right: -5px;
}

.responsive-mobile-menu button:focus {
  outline: none;
  border: none;
}

.responsive-mobile-menu {
  display: none;
  position: absolute;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  left: auto;
  right: 35px;
  top: 17px;
  background: transparent;
}

.toggle-btn {
  width: 36px;
  height: 36px;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  border: 0;
  background: transparent;
}
.toggle-btn .icon-left {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  height: 2px;
  width: 11px;
  top: 17px;
  background-color: #fff;
  left: 7px;
}
.toggle-btn .icon-left:before {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #fff;
  content: "";
  top: -7px;
  left: 0;
}
.toggle-btn .icon-left:after {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #fff;
  content: "";
  top: 7px;
  left: 0;
}
.toggle-btn .icon-left:hover {
  cursor: pointer;
}
.toggle-btn .icon-right {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  height: 2px;
  width: 11px;
  top: 17px;
  background-color: #fff;
  left: 18px;
}
.toggle-btn .icon-right:before {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #fff;
  content: "";
  top: -7px;
  left: 0;
}
.toggle-btn .icon-right:after {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #fff;
  content: "";
  top: 7px;
  left: 0;
}
.toggle-btn .icon-right:hover {
  cursor: pointer;
}
.toggle-btn.open .icon-left {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  background: transparent;
}
.toggle-btn.open .icon-left:before {
  -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(2px, 1px);
          transform: rotateZ(45deg) scaleX(1.4) translate(2px, 1px);
}
.toggle-btn.open .icon-left:after {
  -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -1px);
          transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -1px);
}
.toggle-btn.open .icon-right {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  background: transparent;
}
.toggle-btn.open .icon-right:before {
  -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 1px);
          transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 1px);
}
.toggle-btn.open .icon-right:after {
  -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -1px);
          transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -1px);
}
.toggle-btn:hover {
  cursor: pointer;
}

.nav-right-part-mobile {
  display: none;
}

.sopen {
  display: block !important;
}

@media all and (max-width: 1199px) {
  .nav-left-part .main-search-inner {
    display: none;
  }
}
@media all and (max-width: 991px) {
  .nav-right-part {
    margin-right: 50px;
  }
  .nav-right-part .btn {
    height: 42px;
    line-height: 43px;
  }

  .nav-right-part .btn .right {
    padding-left: 5px;
    font-size: 13px;
  }

  .nav-right-part-mobile {
    display: block;
  }

  .nav-right-part-desktop {
    display: none;
  }

  .navbar-area .nav-container {
    position: relative;
    z-index: 0;
  }
  .navbar-area .nav-container .navbar-toggler {
    padding: 0px;
  }
  .navbar-area .nav-container .navbar-collapse {
    margin-top: 13px;
    padding-right: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    margin-top: 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    display: block;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
    margin-left: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    top: 25px;
    right: -1px !important;
    z-index: -1;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    height: auto;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    background-color: transparent;
    border-radius: 10px;
    padding: 0px;
    border-bottom: none;
    display: none;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
    opacity: 1;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
    content: "";
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    padding: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
    top: 30px;
    color: #fff;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li + li {
    border-top: none;
  }
}
@media all and (max-width: 575px) {
  .navbar-area .nav-container .logo a img {
    width: 125px;
  }

  .nav-right-part {
    margin-right: 30px;
    right: 0;
  }
  .nav-right-part .btn {
    font-size: 13px;
    padding: 0 10px;
  }

  .responsive-mobile-menu {
    right: 0;
    top: 19px;
  }
}


/*----------------------------------------------
----------------------------------------------*/
/****My Account Page****/

.dashboard-menu ul li {
    position: relative;
    border-radius: 10px;
    border: 1px solid #ececec;
    border-radius: 10px;
}

.dashboard-menu ul li:not(:last-child) {
    margin-bottom: 10px;
}

.dashboard-menu ul li a.active {
    color: #fff;
    background-color: #ee161f;
    border-radius: 10px;
}

.account .card .card-header {
    border: 0;
    background: none;
}

.account .card {
    border: 0;
}

.my-ac-link{color: #ee161f ;}

.input-style input {
    border: 1px solid #ececec;
    border-radius: 10px;
    height: 45px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 20px;
    font-size: 16px;
    width: 100%;
}

.mb-20 {
    margin-bottom: 20px !important;
}
.mt-20{margin-top: 20px !important;}

.form-group input {
    background: #fff;
    border: 1px solid #ececec;
    height: 35px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 20px;
    font-size: 16px;
    width: 100%;
}

#add_shipping_addresses .form-group{padding-bottom: 10px;}


.border-radius-15 {
    border-radius: 15px;
}




/*----------------------------------------------
    ## All section style
----------------------------------------------*/
/****banner-area****/
.banner-area {
  position: relative;
  background-position: center bottom;
  background-repeat: no-repeat;
  height: 90vh;
  background-size: 64%;
  z-index: 0;
}
.banner-area .banner-thumb {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  width: 100%;
  text-align: center;
}

.banner-bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
/**/
  background-size: 102% 96%;
  z-index: -1;
}

.banner-shape-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  display: none;
}

.banner-shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
}
.accordion-button:not(.collapsed) p {
    color: #fff;
}
.top_header_nav_search{width: 100%;}
.accordion-button {color: #5f5f5f;padding: 6px 10px;font-weight: 400;height: 50px;}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #ee161f;
   /* box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);*/
}
.accordion-button i{font-size: 27px;color: #ee161f;vertical-align: -3px;}
.accordion-button:not(.collapsed) i {color: #fff !important;}
.accordion-button::after {display: none;}

.banner-inner {
  padding: 150px 0;
}
.banner-inner h3 {
  color: var(--secondary-color);
  font-family: var(--satisfy-font);
  font-weight: 400;
  margin-bottom: 4px;
}
.banner-inner h1,h2 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 30px;
  font-family: var(--bebas-font);
  font-weight: 400;
padding-bottom: 20px;
}
.banner-inner p {
  margin-bottom: 30px;
  font-size: 20px;
}

/****category-area****/
.category-area {
  background-color: #fff;
}

.category-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0;
  padding: 0;
  position: relative;
}
.category-menu > li {
  list-style: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}
.category-menu > li > a {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  color: var(--heading-color);
}
.category-menu > li > a img {
  margin-right: 20px;
}
.category-menu > li:hover > .category-sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(0, 0px);
          transform: translate(0, 0px);
}
.category-menu .category-sub-menu {
  padding: 30px 30px 0 30px;
  position: absolute;
  text-align: left;
  width: 100%;
  margin: 0;
  list-style: none;
  left: 0;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 0 0 6px 6px;
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
  top: 72px;
}
.category-menu .category-sub-menu .single-item-wrap {
  padding: 10px;
  margin-bottom: 20px;
}
.category-menu .category-sub-menu .single-item-wrap:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/***offer area***/
.single-offer-wrap {
  background-size: 100% 100%;
  border-radius: 12px;
  position: relative;
  padding: 44px 49px 50px;
  margin-bottom: 25px;
  z-index: 1;
  overflow: hidden;
  height: 380px;
}
.single-offer-wrap .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.single-offer-wrap .bg-img-2 {
  position: absolute;
  top: 91px;
  left: 0;
  z-index: -1;
  height: 70%;
  width: 100%;
}
.single-offer-wrap .animated-img {
  position: absolute;
  top: 108px;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  -webkit-animation: 20s linear 0s infinite normal none running left-loop;
          animation: 20s linear 0s infinite normal none running left-loop;
}
.single-offer-wrap .animated-img-2 {
  -webkit-animation: 20s linear 0s infinite normal none running left-loop-2;
          animation: 20s linear 0s infinite normal none running left-loop-2;
}
.single-offer-wrap .overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /*background: linear-gradient(90.1deg, #ffeecc 38.57%, rgba(255, 238, 204, 0) 66.47%);*/
}
.single-offer-wrap:hover .bg-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.single-offer-wrap .wrap-details {
  width: 79%;
  position: relative;
}
.single-offer-wrap .wrap-details h2 {
  font-size: 68px;
  font-weight: 700;
  color: #fff;
  font-family: "Quattrocento", serif;
  line-height: 72px;
  margin-bottom: 8px;
}
.single-offer-wrap .wrap-details h3 {
  color: #fff;
}
.single-offer-wrap .wrap-details h3 span {
  color: var(--main-color);
}
.single-offer-wrap .wrap-details h3.text-heading {
  color: var(--heading-color);
}
.single-offer-wrap .wrap-details h5 {
  color: #fff;
  font-size: 20px;
}
.single-offer-wrap .wrap-details .btn {
  height: 48px;
  line-height: 48px;
  margin-top: 17px;
  padding: 0 20px;
}
.single-offer-wrap .offer-sticker {
  display: inline-block;
  margin: -27px 0 -20px 195px;
}

/***single-item-wrap***/
.single-item-wrap {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  padding: 22px 29px 24px;
  margin-bottom: 60px;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.single-item-wrap:hover {
  border-radius: 12px 12px 0 0;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.09);
}
.single-item-wrap:hover .thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.single-item-wrap:hover .btn-area {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
}
.single-item-wrap .thumb {
  text-align: center;
}
.single-item-wrap .thumb img {
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.single-item-wrap .thumb a {
  position: absolute;
  top: 7px;
  font-size: 21px;
  color: #ee161f;

  background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    margin: 0px auto;
    text-align: center;
    align-items: center;
    line-height: 30px;
    line-height: 30px;
}
.single-item-wrap .thumb a:hover i:before {
  content: "";
}
.prod_whishlist_btn a:hover i:before {
  content: "";
}
.single-item-wrap .wrap-details {
  margin-top: 22px;
}
.single-item-wrap .wrap-details h5 {
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  padding-top: 11px;
}
.single-item-wrap .wrap-details .wrap-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-item-wrap .wrap-details .wrap-footer .rating {
  font-size: 12px;
  color: rgba(27, 27, 27, 0.7);
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-item-wrap .wrap-details .wrap-footer .rating .rating-inner {
  margin: 0 10px;
}
.single-item-wrap .wrap-details .wrap-footer .price {
  margin-left: auto;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.single-item-wrap .btn-area {
  background-color: #fff;
  border-radius: 0 0 12px 12px;
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-transform: translate(0px, 80%);
          transform: translate(0px, 80%);
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-box-shadow: 0 30px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 30px 30px rgba(0, 0, 0, 0.12);
}
.single-item-wrap .btn-area .btn {
  border-radius: 30px 30px 0 0;
/*  padding: 0 90px;*/
  height: 64px;
  line-height: 64px;
}
.single-item-wrap.style-2 {
  padding: 25px 29px 45px;
  margin-bottom: -20px;
}
.single-item-wrap.style-2:hover {
  border-radius: 12px;
}
.single-item-wrap.style-2 .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-item-wrap.style-2 .media .thumb {
  margin-right: 30px;
}
.single-item-wrap.style-2 .media .wrap-details {
  margin-top: 0;
}
.single-item-wrap.style-2 .media .wrap-details .wrap-footer .price {
  margin-left: 0;
}
.single-item-wrap.style-2 .media .wrap-details .btn {
  margin-left: auto;
  font-size: 16px;
  font-weight: 600;
  height: 42px;
  line-height: 42px;
  border-radius: 6px;
  padding: 0 32px;
}
.shelf-input{width: 15px;height: 15px;}

/***featured-area***/
.subscribe-area,
.featured-area {
  padding: 75px 0 52px;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.subscribe-area .section-title .title,
.featured-area .section-title .title {
  font-size: 60px;
  line-height: 66px;
}
.subscribe-area .single-input-wrap,
.featured-area .single-input-wrap {
  margin-top: 40px;
}

/****about-area****/
.about-area {
  background-size: cover;
  background-position: center;
  background: #fff;
}

.single-about-wrap {
  background-color: #fff;
  border-radius: 6px;
  text-align: center;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 500;
  padding: 20px;
  margin-bottom: 30px;
}
.single-about-wrap img {
  margin-right: 20px;
}
.single-about-wrap.style-2 {
  background: #ffdee0;
}

/***product-area***/
.product-nav {
  /*margin-bottom: 50px;*/
  margin-bottom:70px;
  margin-top: 30px;
  justify-content: center;
}
.product-nav .nav-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  /*width: 18.6666666667%;*/
  width: 14.666667%;
  padding: 0 0px;
  margin: 7px;
}
.product-nav .nav-item:first-child {
  padding-left: 0;
}
.product-nav .nav-item:last-child {
  padding-right: 0;
}
.product-nav .nav-item .nav-link {
  height: 57px;
  background-color: #fff;
  border-radius: 50px;
  width: 100%;
  font-size: 17px;
  font-weight: 500;
}
.product-nav .nav-item .nav-link img {
  margin-right: 10px;
  filter: saturate(4.5);
}
.product-nav .nav-item .nav-link.active {
  background-color: #292929;
  color: #fff;
}

.product-nav.style-2 .nav-item .nav-link.active img{-webkit-filter: brightness(1010%);}

/***testimonial-area***/
.testimonial-area {
  padding: 25px 0 25px;
  background-image: url(../img/testimonial/1.png);
  background-size: cover;
  background-position: center;
}

.testimonial-slider .owl-dots {
  display: none;
}

.testimonial-wrap p {
  color: rgba(27, 27, 27, 0.7);
  font-size: 19px;
  font-weight: 400;
  line-height: 28px;
}
.testimonial-wrap h3 {
  font-size: 24px;
  font-family: var(--satisfy-font);
  font-weight: 400;
  margin: 30px 0 10px;
}
.testimonial-wrap h6 {
  font-size: 20px;
  color: rgba(27, 27, 27, 0.7);
  font-weight: 400;
}

/****video-area****/
.video-area .overlay {
  background-color: rgba(0, 0, 0, 0.3);
}
.video-area .play-btn {
  font-size: 148px;
  color: var(--secondary-color);
}

/****contact-area****/
.contact-area .contact_info_list .single-info-item .details {
  color: var(--heading-color);
}

.responsive-map {
  overflow: hidden;
  position: relative;
  height: 500px;
  width: 100%;
}
.responsive-map iframe {
  height: 100%;
  width: 100%;
}

/****animation-css-frame****/
@-webkit-keyframes left-loop {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes left-loop {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes left-loop-2 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes left-loop-2 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
/*---------------------------------------------------
	Blog style
----------------------------------------------------*/
.single-blog-wrap {
  position: relative;
  border-radius: 32px 32px 0px 0px;
  overflow: hidden;
  margin-bottom: 30px;
  height: 440px;
  border: 1px solid #ee161f;

}
.single-blog-wrap:hover .thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.single-blog-wrap:hover .wrap-details .wrap-hover-area {
  margin-bottom: 0;
}
.single-blog-wrap .thumb {
  border-radius: 12px;
  overflow: hidden;
  height: 267px;
}
.single-blog-wrap .thumb img {
  border-radius: 12px;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.single-blog-wrap .wrap-details {
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0px;
  margin: 0px;
  padding: 30px;
  overflow: hidden;
}
.single-blog-wrap .wrap-details .cat {
  font-size: 12px;
  font-weight: 500;
}
.single-blog-wrap .wrap-details .cat .tag,
.single-blog-wrap .wrap-details .cat span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
  color: var(--main-color);
  font-family: serif;
  font-size: 17px;
}
.single-blog-wrap .wrap-details .cat i {
  font-size: 16px;
  color: var(--main-color);
  margin-right: 8px;
}
.single-blog-wrap .wrap-details h5 {
  font-size: 15px;
  font-weight: 500;
  margin-top: 13px;
}
.single-blog-wrap .wrap-details .wrap-hover-area {
  /* margin-bottom: -147px; */
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
   
}
.single-blog-wrap .wrap-details .wrap-hover-area p {
  margin-top: 3px;
  font-size: 15px;
}

.single-blog-wrap .link-btn{padding-top: 11px;font-size: 13px;}

.blog-details-inner .cat {
  font-size: 12px;
  font-weight: 500;
}
.blog-details-inner .cat .tag,
.blog-details-inner .cat span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}
.blog-details-inner .cat i {
  font-size: 16px;
  color: var(--main-color);
  margin-right: 8px;
}
.blog-details-inner .thumb img {
  border-radius: 8px;
}

.tag-share-area {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding-top: 22px;
  padding-bottom: 22px;
  margin: 50px 0;
}
.tag-share-area .tag-inner span {
  font-weight: 600;
  margin-right: 5px;
  color: var(--heading-color);
}
.tag-share-area .social-area li {
  margin-top: 6px;
}
.tag-share-area .social-area li a {
  color: var(--main-color) !important;
}
.tag-share-area .social-area li a:hover {
  color: var(--secondary-color);
}

.comment-area .title {
  margin-bottom: 28px;
}
.comment-area .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 25px;
  margin-bottom: 30px;
}
.comment-area .media .media-left {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 45px;
}
.comment-area .media .media-left img {
  border-radius: 8px;
}
.comment-area .media .media-body .btn-base {
  height: 35px;
  line-height: 34px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 400;
}
.comment-area .media .media-body h6 {
  margin-bottom: 6px;
}
.comment-area .media .media-body span {
  font-size: 14px;
}
.comment-area .media .media-body p {
  margin-top: 10px;
}

/*---------------------------------------------------
	Shop style
----------------------------------------------------*/
.shop-details-area {
  position: relative;
}
.shop-details-area .sticy-product {
  position: absolute;
  top: 100px;
  left: 0rem;
  width: 50%;
  height: calc(100% - 6.25rem);
  display: block;
  background: #ffdee0;
}
.shop-details-area .product-thumbnail-wrapper {
      margin-top: 30px;
  position: sticky;
  top: 200px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
 /* margin: auto;*/
/*  padding-bottom: 60px;*/
}
.shop-details-area .product-thumbnail-wrapper .single-thumbnail-slider {
/*  margin-top: 80px;*/
  margin-bottom: 30px;
}
.shop-details-area .product-thumbnail-wrapper .product-thumbnail-carousel {
  width: 80%;
  margin: auto;
}
.shop-details-area .slick-slide img {
  margin: auto;
}

.shop-item-details {
  padding-left: 36px;
  margin-top:20px ;
}
.shop-item-details .breadcrumb .breadcrumb-item {
  font-size: 16px;
  font-weight: 500;
  color: var(--paragraph-color);
  padding-left: 5px;
}
.shop-item-details .breadcrumb .breadcrumb-item:first-child {
  padding-left: 0;
}
.shop-item-details .breadcrumb .breadcrumb-item::before {
  padding-right: 5px;
  color: var(--paragraph-color);
}
.shop-item-details .breadcrumb .breadcrumb-item.active {
  color: var(--main-color);
}
.shop-item-details .entry-title {
  margin: 10px 0;
  font-size: 28px;
}
.shop-item-details .price {
  font-weight: 500;
  margin-bottom: 0;
  font-size: 22px;
  padding-left: 17px;
}
.shop-item-details .variation {
  margin-top: 30px;
  margin-left: -50px;
  display: inline-flex;
}
.shop-item-details .variation h6 {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 40px;
}
.shop-item-details .variation .single-select {
  background: #fff;
  width: 100%;
  border: 1px solid #ccc;
  height: 40px;
  line-height: 40px;
}
.shop-item-details .variation .size {
  padding: 0;
  margin: 0;
}
.shop-item-details .variation .size li {
  list-style: none;
  display: inline-block;
}
.shop-item-details .variation .size li a {
  height: 56px;
  width: 56px;
  display: inline-block;
  border-radius: 50%;
  background: #ffdee0;
  text-align: center;
  line-height: 56px;
  font-weight: 500;
  margin: 0 7px;
}
.shop-item-details .variation .size li a:hover {
  background: var(--main-color);
  color: #fff;
}
.shop-item-details .variation .size li:first-child a {
  margin-left: 0;
}
.shop-item-details .variation .size li:last-child a {
  margin-right: 0;
}
.shop-item-details .cat {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  margin-top: 17px;
}
.shop-item-details .cat li {
  list-style: none;
  display: inline-block;
  padding: 0 22px;
}
.shop-item-details .cat li:first-child {
  padding-left: 0;
}
.shop-item-details .cat li:last-child {
  padding-right: 0;
}
.shop-item-details form {
  margin-bottom: 0px;
  padding-bottom: 10px;
}
.shop-item-details form .quantity {
  margin-left: 0px;
  margin-top: 30px;
  margin-right: 28px;
  width: 70%;
}
.shop-item-details form .btn {
  border-radius: 6px;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  margin-top: -5px;
}
.review_form{width: 50%;}
.quantity {
  display: inline-flex;
  border: 0;
  border-radius: 6px;
  width: 50%;
}
.quantity input {
    background: #ffffff;
    border: 1px solid #ee161f;
    height: 31px;
    padding: 0;
    color: #727272;
    width: 100%;
    text-align: center;
    cursor: pointer;
    margin-left: 0px;
    font-weight: 400;
    font-size: 18px;
}
.pro-quanity .form-select{padding: 0px 5px 0px 10px !important;height: 31px;font-size: 15px;}
.pro-quanity{margin-left: 10px;width: 50%;}
.quantity input.minus {
  border-radius: 6px 0 0 6px;
}
.quantity input.plus {
  border-radius: 0 6px 6px 0;
}
.quantity input.input-text {
  border-right: 0;
  border-left: 0;
}
.quantity input.input-text:focus {
  border-right: 0;
  border-left: 0;
}
.quantity input::-webkit-outer-spin-button, .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}
.quantity input:focus {
  border: 0;
}

.shop-tabs .nav-pills {
  margin-bottom: 30px;
}
.shop-tabs .nav-pills .nav-item:first-child .nav-link {
  padding-left: 0;
}
.shop-tabs .nav-pills .nav-item:last-child .nav-link {
  padding-right: 0;
}
.shop-tabs .nav-pills .nav-item .nav-link {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  padding: 0 24px;
}
.shop-tabs .nav-pills .nav-item .nav-link.active {
  background: transparent;
  color: var(--main-color);
  border-radius: 3px;
}
.shop-tabs .default-form-wrap {
  border: 0;
  padding: 0;
  margin: 0;
}
.shop-tabs{
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 30px;
}
.related-product-area {
  padding-bottom: 27px;
}

.related-product-slider .owl-item {
      padding: 12px 15px 7px;
}
.related-product-slider .owl-item .single-item-wrap .btn-area {
  box-shadow: 0px 0px 0px #ccc;
}
.related-product-slider .owl-item .single-item-wrap .btn-area .btn {
 /* padding: 0 74px;*/
}
.related-product-slider .owl-item .single-item-wrap:hover {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
}
.black-btn:active::after, .black-btn:focus::after, .black-btn:hover::after {
    background: #fff !important;
}
.related-product-slider .btn-area .black-btn{
    background: #fff !important;
    color: #ee161f !important;
    border: 1px solid #ee161f;}
.related-product-area .btn-area .btn {
    height: 37px;
    line-height: 37px;
    border-radius: 8px;
    background: rgb(238 22 31);
    padding: 0 18px;
    color: #fff;
    margin-left: auto;
    font-size: 14px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: inline-flex;
}
.quantity .minus{background: #ee161f;color: #fff;}
.quantity .plus{background: #ee161f;color: #fff;}
.cart-area .table {
  margin-bottom: 0px;
  min-width: 900px;
  border-radius: 12px;
}
.cart-area .table thead {
  border-bottom: 1px solid #f4f4f4;
}
.cart-area .table thead tr th {
/*    border-left: 1px solid rgba(41, 41, 41, 0.1);*/
    border-bottom: 0;
    font-size: 21px;
    font-weight: 500;
    text-align: center;
}
.cart-area .table thead tr th.blank {
  border-left: 0;
}
/*.cart-area .table thead tr th.title-name {
   border: 0;
  text-align: left;
  font-size: 23px;
  color: #4c4c4c;
  font-weight: 600;
}*/
.cart-area .detail h5{font-size: 21px;font-weight: 100;color: #4c4c4c;}
.cart-area th{ border: 0;text-align: left;font-size: 23px;color: #727272;font-weight: 600;}
.cart-area .table thead tr th:first-child {
  border-radius: 12px 0 0 0;
  border: 0;
}
.cart-area .table thead tr th:last-child {
  border-radius: 0 12px 0 0;
}
.cart-area .table tbody tr:last-child td {
  border-bottom: 0;
}
.cart-area .table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 12px;
}
.cart-area .table tbody tr:last-child td:last-child {
  border-radius: 0 0 12px 0;
}
.cart-area .table tbody tr:last-child th {
  border: 0;
}
.cart-area .table tbody tr th {
  vertical-align: middle;
}
.cart-area .table tbody tr td {
  vertical-align: middle;
  background: #fff;
  text-align: center;
/*  border-left: 1px solid rgba(41, 41, 41, 0.1);*/
  font-size: 20px;
  font-weight: 500;
}
.cart-area .table tbody tr td:first-child {
  border-left: 0;
}
.cart-area .table tbody tr td.item-name {
  border-left: 0;
  text-align: left;
}
.cart-area .table tbody tr td.item-name .details {
  padding: 33px 0;
}
.cart-area .table tbody tr td.item-name .details ul {
  padding: 0;
  margin: 0;
}
.cart-area .table tbody tr td.item-name .details ul li {
  list-style: none;
  color: #5F5F5F;
  font-size: 16px;
  font-weight: 500;
}
.cart-area .table tbody tr td.table-quantity {
  min-width: 170px;
}
.cart-area .table tbody tr td .quantity input {
  margin-left: -5px;
}
.cart-area .table tbody tr th {
  background: #fff;
  text-align: center;
}

.promotional-area .btn {
  margin-top: 0;
  border-radius: 6px;
  padding: 0 30px;
}

.order-cart-area .order-cart {
  border-radius: 12px 12px 0 0;
  background: #fff;
  padding: 23px 30px 20px;
}
.order-cart-area .order-cart h5 {
  margin-bottom: 22px;
}
.order-cart-area .order-cart ul {
  padding: 0;
  margin: 0;
}
.order-cart-area .order-cart ul li {
  list-style: none;
  color: #5F5F5F;
  font-size: 20px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
}
.order-cart-area .order-cart ul li.total {
  color: var(--main-color);
}
.order-cart-area .order-cart ul li:last-child {
  margin-bottom: 0;
}
.order-cart-area .order-cart ul li span {
  margin-left: auto;
}
.order-cart-area .btn {
  border-radius: 0 0 12px 12px;
}

.bill-payment-wrap h5 {
 /* background: #F6F1E7;
  border-radius: 12px 12px 0 0;
  margin-bottom: 0;
  padding: 10px 50px;*/
}
.bill-payment-wrap .default-form-wrap {
  background: #fff;
  padding: 88px 50px 70px;
  border-radius: 0 0 12px 12px;
}

.order-area {
  background: #fff;
  border-radius: 12px;
}
.order-area .title {
  background: #F6F1E7;
  border-radius: 12px 12px 0 0;
  margin-bottom: 0;
  padding: 10px 30px;
}
.order-area .order-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 38px 30px;
  border-bottom: 1px solid rgba(41, 41, 41, 0.1);
}
.order-area .order-product .thumb {
  margin-right: 20px;
}
.order-area .order-product .thumb img {
  height: 56px;
}
.order-area .order-product .details ul {
  padding: 0;
  margin: 0;
}
.order-area .order-product .details ul li {
  list-style: none;
  color: #5F5F5F;
  font-size: 12px;
  font-weight: 500;
}
.order-area .amount {
  margin: 0;
  padding: 30px;
  border-bottom: 1px solid rgba(41, 41, 41, 0.1);
}
.order-area .amount li {
  list-style: none;
  color: #5F5F5F;
  font-size: 20px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
}
.order-area .amount li.total {
  color: var(--main-color);
}
.order-area .amount li:last-child {
  margin-bottom: 0;
}
.order-area .amount li span {
  margin-left: auto;
}
.order-area .btn {
  border-radius: 0 0 12px 12px;
}

.peyment-method {
  padding: 30px;
}
.peyment-method h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--paragraph-color);
  margin-bottom: 30px;
}
.peyment-method ul {
  padding: 0;
  margin: 0;
  border: 1px solid rgba(41, 41, 41, 0.1);
  border-radius: 6px;
}
.peyment-method ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  border-bottom: 1px solid rgba(41, 41, 41, 0.1);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.peyment-method ul li:last-child {
  border-bottom: 0;
}
.peyment-method ul li:hover {
  background: #ffdee0;
}
.peyment-method ul li .details {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.peyment-method ul li .form-check {
  margin-right: 20px;
}
.peyment-method ul li .form-check .form-check-input:checked[type=radio] {
  position: relative;
  background-image: none;
}
.peyment-method ul li .form-check .form-check-input:checked[type=radio]:after {
  content: "";
  font-family: remixicon !important;
  color: #fff;
  display: block;
  text-align: center;
}
.peyment-method ul li h6 {
  font-size: 16px;
  color: var(--heading-color);
  margin-bottom: 5px;
}
.peyment-method ul li p {
  font-size: 12px;
  line-height: 18px;
}
.peyment-method ul li img {
  float: right;
}

/*---------------------------------------------------
	widget styles
----------------------------------------------------*/
.widget {
  margin-bottom: 50px;
}
.widget .widget-title {
  margin-bottom: 47px;
  color: #727272;
  font-size: 22px;
  font-weight: 500;
}

.widget_link ul {
  padding: 0;
  margin: 0;
  display: inline-block;
}
.widget_link ul li {
  list-style: none;
  font-size: 14px;
  margin-bottom: 8px;
  color: #fff;
}
.widget_link ul li span {
  color: var(--secondary-color);
}
.widget_link ul li:hover a {
  color:#fff;
}

/*---------------------------------------------------
	footer widget styles
----------------------------------------------------*/
.social-area img{width: 35%;}

.sidebar-area .widget {
  margin-bottom: 15px;
  padding: 0px 30px 0px;
  border-radius: 6px;
 /* background: #F6F1E7;*/
}
.sidebar-area .widget-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 27px;
}

.social-widget .social-area li a {
  color: var(--heading-color);
}
.social-widget .social-area li a:hover {
  color: var(--main-color);
}

.widget.widget_search {
/*  padding: 0;
  border: 0;*/
}
.widget.widget_search .search-form {
  position: relative;
  background: #fff;
  border-radius: 6px;
}
.widget.widget_search .search-form input {
  letter-spacing: 0.3px;
  color: #5F5F5F;
  width: 100%;
  font-size: var(--body-font-size);
  font-weight: 400;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: transparent;
  padding: 0 35px 0 14px;
  height: 46px;
  line-height: 46px;
}
.widget.widget_search .search-form button {
  position: absolute;
  right: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  padding: 0 2px;
  height: 56px;
  line-height: 56px;
  top: -5px;
  right: 10px;
  color: var(--main-color);
}
.widget.widget_search .search-form button:active, .widget.widget_search .search-form button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

.widget-recent-post ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-recent-post ul li .media {
 margin-bottom: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.widget-recent-post ul li .media .media-left {
  margin-right: 12px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.widget-recent-post ul li .media img {
  border-radius: 3px;
}

.widget-recent-post ul li .media .media-body .title {
  font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

.widget-recent-post ul li .media .media-body .price {
  margin-top: 7px;
}

.widget-recent-post ul li:last-child .media {
  margin-bottom: 0;
}

.widget_categories {
  padding: 23px 30px;
}
.widget_categories.style-2 ul li {
  margin-bottom: 0px;
}
.widget_categories.style-2 ul li:last-child {
  margin-bottom: 0;
}
.widget_categories .widget-title {
  margin-bottom: 19px;
}
.widget_categories ul {
  margin: 0;
  padding: 0;
}
.widget_categories ul li {
  list-style: none;
  margin-bottom: 10px;
  font-weight: 500;
}
.widget_categories ul li:last-child {
  margin-bottom: 0;
}
.widget_categories ul li img {
  margin-right: 15px;
  width: 9%;
  filter: saturate(3.5);
}
.widget_categories ul li a {
  color: var(--heading-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px;
  font-weight: 300;
}
.widget_categories ul li a:hover, active {
  color: var(--main-color) !important;
}
.active_color{ color: var(--main-color) !important;font-weight: 600 !important;}
.widget_categories ul li span {
  margin-left: auto;
}

.widget-newsletter p {
  margin: -8px 0 26px;
}
.widget-newsletter .newsletter-form {
  position: relative;
  background: #fff;
  border-radius: 6px;
}
.widget-newsletter .newsletter-form input {
  letter-spacing: 0.3px;
  color: #5F5F5F;
  width: 100%;
  font-size: var(--body-font-size);
  font-weight: 400;
  border: 0;
  background: transparent;
  padding: 0 60px 0 24px;
  height: 56px;
  line-height: 56px;
}
.widget-newsletter .newsletter-form button {
  position: absolute;
  right: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  padding: 0 23px;
  height: 56px;
  line-height: 56px;
  top: 0;
  right: 0;
  color: var(--main-color);
}
.widget-newsletter .newsletter-form button:active, .widget-newsletter .newsletter-form button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

.widget_filter .btn-base {
  height: 36px;
  line-height: 36px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  padding: 0 20px;
}
.widget_filter .ui-widget.ui-widget-content {
  border: 0;
  border-radius: 50px;
  height: 10px;
  margin-bottom: 25px;
}
.widget_filter .ui-widget-header {
  background: var(--secondary-color);
}
.widget_filter .ui-state-default, .widget_filter .ui-widget-content .ui-state-default, .widget_filter .ui-widget-header .ui-state-default, .widget_filter .ui-button, .widget_filter html .ui-button.ui-state-disabled:hover, .widget_filter html .ui-button.ui-state-disabled:active {
  height: 20px;
  width: 12px;
  background: var(--main-color);
  border: 0;
  border-radius: 50px;
}
.widget_filter p {
  text-align: left;
  margin-bottom: 0;
}
.widget_filter input {
  border: 0;
  background: transparent;
  width: 100px;
  color: var(--paragraph-color);
  margin-right: -10px;
}
.widget_filter input:focus, .widget_filter input:active {
  border: 0;
}

/*--------------------------------------------------
    ##Footer
---------------------------------------------------*/
.footer-area {
  background: #1a1a1a;
}

.footer-widget .logo {
  margin-bottom: 20px;
}

.contact_info_list {
  padding: 0;
  margin: 0;
}
.contact_info_list .single-info-item {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 22px;
}
.contact_info_list .single-info-item i {
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 13px;
  color: #fff;
  font-size: 20px;
}
.contact-area .contact_info_list .single-info-item i {
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 13px;
  color: #717171 !important;
  font-size: 20px;
}
.contact_info_list .single-info-item .bi-whatsapp{color: #fff !important;}
.contact_info_list .single-info-item .details {
  font-size: 16px;
  color: #fff;
}
.contact-area .contact_info_list .single-info-item {margin-bottom: 25px;}
.cont_form{border: 1px solid #ccc !important;padding: 30px !important;border-radius: 5px;height: 290px;}

.widget_instagram_feeds ul {
  padding: 0;
  margin: 0;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  margin-right: 4px;
}
.widget_instagram_feeds ul li {
  list-style: none;
  display: inline-block;
  margin: 0px 0px 3px;
  overflow: hidden;
  width: 105%;
  border-radius: 3px;
}
.widget_instagram_feeds ul li a {
  display: inline-block;
  position: relative;
}
.widget_instagram_feeds ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  z-index: 0;
}
.widget_instagram_feeds ul li a img {
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  width: 100%;
  border-radius: 3px;
}
.widget_instagram_feeds ul li a:hover:after {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 0;
}
.footer-bottom .copyright-area p {
  color: #fff;
  margin-bottom: 0;
}

/*---------------------------------------------------
	Home-2 style
----------------------------------------------------*/
.home-2 {
  background-color: #fff;
}

.navbar-area-2 {
  background: transparent;
  border-bottom: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.navbar-area-2.navbar-area-fixed {
  background: rgba(250, 247, 242, 0.9);
  -webkit-box-shadow: 0 0 4px rgb(0 0 0 / 40%);
          box-shadow: 0 0 4px rgb(0 0 0 / 40%);
}
.navbar-area-2 .nav-container .navbar-collapse {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.navbar-area-2 .nav-container .navbar-collapse .navbar-nav {
 /* margin-left: 10px;*/
}
.navbar-area-2 .nav-container .navbar-collapse .navbar-nav li a {
  color: #353535;
  font-family: "poppins";
}
.navbar-area-2 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children::after,
.navbar-area-2 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  background: var(--heading-color);
}
.navbar-area-2 .nav-right-part ul li {
  color: var(--heading-color);
  cursor: pointer;
}
.navbar-area-2 .nav-right-part ul li span {
  top: 7px;
  right: 10px;
}

.banner-area-2 .banner-inner h3 {
  color: var(--main-color);
}
.banner-area-2 .banner-inner h1 {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 600;
  line-height: 57px;
  color: var(--heading-color);
  text-transform: capitalize;
}
.banner-area-2 .banner-bg {
 /* position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  overflow: hidden;*/
}
.banner-area-2 .banner-bg-img {
/*  background: url(../img/home-2/banner/bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  width: 102%;*/
}
.banner-area-2 .banner-thumb {
  left: auto;
  right: 9%;
  bottom: 0;
  -webkit-transform: none;
          transform: none;
  width: 40%;
}

/***intro-contact-area***/
.intro-contact-area {
  background: #ffdee0;
}

.single-intro-contact-wrap {
  border-radius: 12px;
  background: #fff;
  padding: 15px 30px 36px;
  text-align: center;
  margin-bottom: 30px;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.single-intro-contact-wrap.single-intro-contact-wrap-active, .single-intro-contact-wrap:hover {
  background: var(--secondary-color);
  -webkit-box-shadow: 0px 29px 30px -15px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 29px 30px -15px rgba(0, 0, 0, 0.09);
}
.single-intro-contact-wrap img {
  margin-bottom: -25px;
}
.single-intro-contact-wrap h5 {
  margin-bottom: 5px;
}
.single-intro-contact-wrap p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

/***product-area***/
.product-nav.style-2 .nav-item .nav-link {
  background-color: #ffffff;
    border: 1px solid #ccc;
}
.product-nav.style-2 .nav-item .nav-link.active {
  background-color: #ee161f;
}

.single-item-wrap.style-2 {
  background: #FFF;
  text-align: center;
  border-radius: 16px;
}
.single-item-wrap.style-2:hover {
  -webkit-box-shadow: 0 0 15px rgb(0 0 0 / 9%);
  box-shadow: 0 0 15px rgb(0 0 0 / 9%);
}
.single-item-wrap.style-2 .thumb {
  margin-bottom: -19px;
}
.single-item-wrap.style-2 .thumb a:hover {
  color: var(--main-color);
}
.single-item-wrap.style-2 .wrap-details .wrap-footer {
  display: inline-block;
  display: inline-flex;
  width: 100%;
}
.single-item-wrap.style-2 .btn-area {
  position: initial;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  visibility: visible;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 12px;
}
.single-item-wrap.style-2 .btn-area .price {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
}
.single-item-wrap.style-2 .btn-area .black-btn {
    background: #fff !important;
    color: #ee161f !important;
    border: 1px solid #fff;

}
/*.cat_name{padding: 7px 25px 0px 0px;}*/
.cat_img{padding: 0px;}
.single-item-wrap.style-2 .btn-area .btn {
  height: 31px;
  width: 100%;
  line-height: 31px;
  border-radius: 8px;
  background: rgb(238 22 31);
  color: #fff;
  padding: 0 0px;
/*  margin-left: auto;*/
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: block !important;
  margin: 0px auto;
}

.form-select:focus {
    border-color: #ee161f;
    outline: 0;
    box-shadow: none;
}

.about-default-thumb {
  margin: -39px -100px;
}

/****offer-area****/
.single-offer-wrap.single-offer-wrap-2 {
  padding: 80px 90px 73px;
}
.single-offer-wrap.single-offer-wrap-2 .bg-img {
  width: 94%;
  left: auto;
  right: 0;
}
.single-offer-wrap.single-offer-wrap-2 .wrap-details {
  width: 36%;
}
.single-offer-wrap.single-offer-wrap-2 h4 {
  font-size: 56px;
  font-weight: 400;
  font-family: var(--satisfy-font);
  margin-bottom: -15px;
}
.single-offer-wrap.single-offer-wrap-2 h1 {
  font-size: 100px;
  font-weight: 900;
  color: var(--main-color);
  line-height: 120px;
  margin-bottom: 0;
}
.single-offer-wrap.single-offer-wrap-2 p {
  font-size: 28px;
  line-height: 33px;
  color: var(--heading-color);
}
.single-offer-wrap.single-offer-wrap-3 {
  padding: 40px 30px;
  height: 430px;
}
.single-offer-wrap.single-offer-wrap-3 .wrap-details {
  width: 100%;
}
.single-offer-wrap.single-offer-wrap-3 .wrap-details h3 {
  font-size: 37px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 44px;
  margin-bottom: 5px;
}
.single-offer-wrap.single-offer-wrap-3 .wrap-details span {
  font-size: 24px;
  color: #fff;
}
.single-offer-wrap.single-offer-wrap-4 {
  height: 430px;
}
.single-offer-wrap.single-offer-wrap-4 .wrap-details {
  width: 100%;
}
.single-offer-wrap.single-offer-wrap-4 .wrap-details h3 {
  font-size: 42px;
  font-weight: 700;
  line-height: 44px;
  color: var(--heading-color);
  margin-bottom: 7px;
}
.single-offer-wrap.single-offer-wrap-4 .wrap-details h3 span {
  display: block;
  font-weight: 800;
}
.single-offer-wrap.single-offer-wrap-4 .wrap-details p {
  color: var(--heading-color);
}
.single-offer-wrap.single-offer-wrap-5 {
  height: 430px;
  padding: 16px 30px;
}
.single-offer-wrap.single-offer-wrap-5 .wrap-details {
  width: 100%;
}
.single-offer-wrap.single-offer-wrap-5 .wrap-details h5 {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 400;
  font-family: var(--satisfy-font);
  margin-bottom: 0;
}
.single-offer-wrap.single-offer-wrap-5 .wrap-details h3 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 900;
}
.single-offer-wrap.single-offer-wrap-5 .wrap-details h3 span {
  display: block;
  color: var(--secondary-color);
}

/***testimonial-area-2***/
.testimonial-area-2 .item {
  padding: 32px 0 0 0;
  border-radius: 0px 70px 0px 70px;
  background-color: #fff;
  height: 300px;
}
.testimonial-area-2 .thumb {
  position: relative;
}
/* .testimonial-area-2 .thumb:after {
  content: "";
  position: absolute;
  left: 60px;
  top: -22px;
  background: url(../img/home-2/testimonial/qoute.png);
  height: 167px;
  width: 72px;
  mix-blend-mode: multiply;
}
.testimonial-area-2 .thumb:before {
  content: "";
  position: absolute;
  left: 162px;
  top: -22px;
  background: url(../img/home-2/testimonial/qoute.png);
  height: 167px;
  width: 72px;
  mix-blend-mode: multiply;
  z-index: 1;
} */
 /* ====AJ csss======== */

 .pro-quantity{
  width: 48%;
 }
 .pro-quantity select{
  margin-left: 5px !important;
 }
.testimonial-slider h3{
  font-size: 18px;
  padding-left: 50px;
  color: #000;
}
.testimonial-slider {
  padding-top: 70px;
}

.testimonial-area-2 .testimonial-wrap {
  margin-left: 26px;
  padding: 40px;
}
.testimonial-area-2 .testimonial-wrap .section-title h2 {
  width: calc(100% - 250px);line-height: 30px;
}
.testimonial-area-2 .owl-carousel:hover .owl-nav {
  opacity: 1;
}
.testimonial-area-2 .owl-carousel:hover .owl-nav .owl-next {
  right: 0px;
}
.testimonial-area-2 .owl-carousel:hover .owl-nav .owl-prev {
  left: auto;
}
.testimonial-area-2 .owl-carousel .owl-nav {
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  opacity: 1;
}
.testimonial-area-2 .owl-carousel .owl-nav button {
  height: 80px;
  width: 80px;
  line-height: 78px;
  border: 1px solid #E0E5EA;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  font-weight: 500;
  color: var(--paragraph-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
  cursor: pointer !important;
  position: absolute;
  top: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 110px;
  left: auto;
}
.testimonial-area-2 .owl-carousel .owl-nav button:after {
  display: none;
}

.testimonial-area-2 .owl-carousel .owl-nav button.owl-next {
  margin-top: 0px;
  right: 0px;
}

/***instagram-area***/
.instagram-area .thumb {
  margin-bottom: 25px;
}

/***footer-area-2***/
.footer-widget .logo img{width: 75%;
    /*border: 1px solid white;*/
    padding: 3px;
    border-radius: 14px;}
.footer-area-2 {
  background-color: #ee161f;
}
.footer-area-2 .widget .widget-title{color: #fff;}
.footer-widget p{color: #fff;font-size: 14px;}
.widget_link ul li a{color: #fff;}
.footer-area-2 .widget_link ul li,
.footer-area-2 .footer-bottom .copyright-area p,
.footer-area-2 .widget .widget-title,
.footer-area-2 .social-area li a,
.footer-area-2 .contact_info_list .single-info-item .details {
  color: #fff;
}
.footer-area-2 .footer-bottom {
/*  border-top: 1px solid rgba(0, 0, 0, 0.1);*/
  background: #fff;
}
.footer-area-2 .widget-newsletter .newsletter-form button {
  color: var(--secondary-color);
}
.copyright-area p{color: #ee161f !important;}

/*---------------------------------------------------
	Home-3 style
----------------------------------------------------*/
.home-3 {
  background-color: #fff;
}
.home-3 .navbar-area .nav-container .navbar-collapse .navbar-nav li:hover a,
.home-3 .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover a {
  color: var(--main-color);
}
.home-3 .nav-right-part ul li span,
.home-3 .navbar-area-2 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover,
.home-3 .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:after, .home-3 .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:before {
  background: var(--main-color);
}
.home-3 .navbar-area-2.navbar-area-fixed {
  background: rgba(255, 238, 238, 0.9);
}
.home-3 .banner-area-2 {
  background: #FFEEEE;
  height: auto;
}
.home-3 .banner-area-2 .single-input-wrap input {
  border-radius: 8px;
}
.home-3 .banner-area-2 .single-input-wrap .btn {
  height: 100%;
  border-radius: 8px;
  padding: 0 25px;
}
.home-3 .banner-area-2 .banner-thumb {
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
.home-3 .banner-area-2 .banner-inner {
  padding: 190px 0 230px;
}
.home-3 .banner-area-2 .banner-inner h1 {
  margin-bottom: 45px;
}
.home-3 .widget_link ul li:hover a {
  color: var(--main-color);
}
.home-3 .widget_link ul li span {
  color: var(--main-color);
}


/*aj css start*/

.menu_plus_btn{font-size: 19px;color: #ee161f;padding: 10px;}
.cont_form .single-input-wrap input:active, .single-input-wrap input:focus {border: 1px solid !important;}
.ship_ad_btn_css{display: flex;}
.broadcrumb_left{display: none;}
.icon-size{font-size: 28px;}
.broadcrumb_right{text-align: center !important;}
ul li{list-style-type: none;}
#social-sidebar {
 right: 0;
 position: fixed;
 top: 30%;
 z-index: 9999999;
}
#social-sidebar li:first-child a { border-top-left-radius: 5px; }
#social-sidebar li:last-child a { border-bottom-left-radius: 5px; }
 
#social-sidebar a {
 background: rgb(238 22 31);
 color: #fff;
    text-decoration: none;
 display: block;
 height: 40px;
 width: 40px;  
 font-size: p19x;
 line-height: 50px;
 position: relative;
 text-align: center;
    cursor: pointer;
}
#social-sidebar a:hover span {
 right: 120%;
 opacity: 1;
}
#social-sidebar a span {
  font: 12px "Open Sans", sans-serif;
  text-transform: uppercase;
 border-radius: 3px;
 line-height: 24px;
 right: -100%;
 margin-top: -16px;
 opacity: 0;
 padding: 4px 8px;
 position: absolute;
 transition: opacity .3s, left .4s;
 top: 50%;
 z-index: -1;
}
 
#social-sidebar a span:before {
 content: "";
 display: block;
 height: 8px;
  width: 8px;
 right: -4px;
 margin-top: -4px;
 position: absolute;
 top: 50%;
 transform: rotate(45deg);
}
 
#social-sidebar a[class*="call"]:hover,
#social-sidebar a[class*="call"] span,
#social-sidebar a[class*="call"] span:before {background: #000;}
 
#social-sidebar a[class*="facebook"]:hover,
#social-sidebar a[class*="facebook"] span,
#social-sidebar a[class*="facebook"] span:before {background: #3b5a9a;}
 
#social-sidebar a[class*="instagram"]:hover,
#social-sidebar a[class*="instagram"] span,
#social-sidebar a[class*="instagram"] span:before { background: #f09433; 
background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  }
 
#social-sidebar a[class*="telegram"]:hover,
#social-sidebar a[class*="telegram"] span,
#social-sidebar a[class*="telegram"] span:before {background: #229ED9;}
 
#social-sidebar a[class*="whatsapp"]:hover,
#social-sidebar a[class*="whatsapp"] span,
#social-sidebar a[class*="whatsapp"] span:before {background: #128c7e;}
 
#social-sidebar a[class*="email"]:hover,
#social-sidebar a[class*="email"] span,
#social-sidebar a[class*="email"] span:before {background: #004ec0;}

#social-sidebar #close {position: absolute;top: -20px;right: 37px;cursor: pointer;}

input.star { display: none; }
label.star {
  float: left;
  padding: 3px;
  font-size: 24px;
  font-weight: 200;
  color: #444;
  transition: all .2s;
}
input.star:checked ~ label.star:before {
  content: '\f005';
  color: #FD4;
  transition: all .25s;
}
input.star-5:checked ~ label.star:before {
  color: #FE7;
  text-shadow: 0 0 20px #952;
}
input.star-1:checked ~ label.star:before { color: #F62; }
label.star:hover { transform: rotate(-15deg) scale(1.3); }
label.star:before {
  content: '\f006';
  font-family: FontAwesome;
}
.shop-btn{
/*    height: 40px;
    line-height: 40px;*/
    padding-top: 0px;
    border-radius: 10px;
}

.alert {
padding: 3px;
background-color: #ee161f;
color: white;
animation-duration: unset;
border-radius: 0px;
/*text-align: center;*/
margin: 0px;
/*display: flex;*/
}
.closebtn {
position: absolute;
margin-left: 15px;
right: -12px;
color: white;
font-weight: bold;
float: right;
top: 4px;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
margin-right: 14px;
}
.closebtn:hover {
color: #ccc;
}
    .team-boxed {
    color: #313437;
}

.team-boxed p {
    color: #7d8285
}

.team-boxed h2 {
    font-weight: bold;
    margin-bottom: 40px;
    padding-top: 40px;
    color: inherit
}

@media (max-width:767px) {
    .team-boxed h2 {
        margin-bottom: 25px;
        padding-top: 25px;
        font-size: 24px
    }
}



.team-boxed .intro p {
    margin-bottom: 0
}

.team-boxed .people {
    padding: 50px 0
}

.team-boxed .item {
    text-align: center
}

.team-boxed .item .box {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 10px
}

.team-boxed .item .name {
    font-weight: 500;
    font-size: 23px;
    margin-top: 28px;
    margin-bottom: 8px;
    color: #727272;
}

.team-boxed .item .title {
    text-transform: uppercase;
    font-weight: 500;
    color: #777777;
    letter-spacing: 2px;
    font-size: 13px
}

.team-boxed .item .description {
    font-size: 15px
}

.team-boxed .item img {
    max-width: 160px
}

.team-boxed .social {
    font-size: 18px;
    color: #a2a8ae
}

.team-boxed .social:hover {
    font-size: 18px;
    color: #b30d22;
}

.team-boxed .social a {
    color: inherit;
    margin: 0 10px;
    display: inline-block;
    opacity: 0.7;
    padding: 6px
}

.team-boxed .social a:hover {
    opacity: 1
}

.box img {
    cursor: pointer;
    width: 9em
}
.instant-search .fa-search {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #9ca3af
}
        .video-background-holder {
  position: relative;
  background-color: black;
  height: calc(100vh - 72px);
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}
.display-4{color: #fff;}
.lead{color: #fff;}
.video-background-holder video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.video-background-content {
  position: relative;
  z-index: 2;
}

.video-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.1;
  z-index: 1;
}

.num-block {
  float: left;
  width: 100%;
/*  padding: 15px 30px;*/
}

/* skin 1 */
.skin-1 .num-in {
  float: left;
  width: 94px;}

.skin-1 .num-in span {
  display: block;
  float: left;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.skin-1 .num-in span.dis:before {
  background-color: #ccc !important;
}

.skin-1 .num-in input {
  float: left;
  width: 25px;
  height: 25px;
  border: 1px solid #6E6F7A;
  border-radius: 5px;
  color: #000;
  text-align: center;
  padding: 0;
}

.skin-1 .num-in span.minus:before {
  content: '';
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: #00A94F;
  top: 50%;
  left: 0;
}

.skin-1 .num-in span.plus:before, .skin-1 .num-in span.plus:after {
  content: '';
  position: absolute;
  right: 0px;
  width: 15px;
  height: 2px;
  background-color: #ee161f;
  top: 50%;
}

.skin-1 .num-in span.plus:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.cycle-tab-container .nav-link.active{color: #ee161f;background-color: #fff !important;border-color: #fff;border-bottom: 3px solid #ee161f !important;}
.cycle-tab-container a {
  color:#727272;
  font-size: 16px;
  text-align: center;
}

.tab-pane {
max-width: 100%;
background: #fff;
}
.cycle-tab-item {
  width: 180px;
}

.nav-link:focus,
.nav-link:hover,
.cycle-tab-item.active a {
  border-color: #ccc;
  color: #ee161f;
}
/*.time_slot_box:hover{border: 1px solid #ee161f;}*/
/*.time_slot_box{background: #fff;margin: 5px 0px 5px 10px;padding: 10px;}*/
.time_slot_box{
    background: #fff;
    margin: 5px 0px 5px 0px;
    padding: 5px 0px 5px 5px;
}

.model_tabarea_body{padding: 5px 0px 5px 0px;height: 310px;overflow-y: scroll;overflow-x: clip;}

/* =======new homepage aj css=========== */
/*
 * This is the new, optimized CSS file.
 * All inline styles from the original HTML have been moved here.
 */

/* ==================================== */
/* Global Styles               */
/* ==================================== */
/* .pd-top-65 {
    padding-top: 65px;
}
.pd-bottom-65 {
    padding-bottom: 65px;
}
.pd-top-100 {
    padding-top: 100px;
}
.pd-bottom-100 {
    padding-bottom: 100px;
}
.text-center {
    text-align: center;
}
.pb-2 {
    padding-bottom: 0.5rem;
}
.pb-4 {
    padding-bottom: 1.5rem;
}
.pt-3 {
    padding-top: 1rem;
}
.width_50 {
    width: 50%;
}
.blog-link {
    color: #2B2B2B;
}
.blog-description {
    color: #2B2B2B;
}
.testimonial-area-2 {
    background: linear-gradient(181deg, #ffffff, #FAB6B9);
} */

/* =========gifting page css=========== */
.gift-image img{
  width:100%;
}

/* ==================================== */
/* Section Headings            */
/* ==================================== */
.section-heading {
    font-size: 2.5em;
    color: #c00;
    font-family: serif;
    position: relative;
    /* This style is from the old code, you might want to remove it if you have other layout controls */
    /* margin: 0; */
}
.section-heading--capitalize {
    text-transform: capitalize;
}
.section-heading::before,
.section-heading::after {
    /* content: ''; */
    position: absolute;
    bottom: -15px;
    width: 50px;
    height: 2px;
    background-color: #c00;
}
.section-heading::before {
    left: 50%;
    transform: translateX(-60px);
}
.section-heading::after {
    left: 50%;
    transform: translateX(10px);
}
.heading-border {
    width: 250px;
    /* margin-top: 0px; */
}

/* ==================================== */
/* Banner Section              */
/* ==================================== */
.banner {
    position: relative;
}
.banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner__content {
    position: absolute;
    bottom: 0;
    left: 560px;
    transform: translate(-50%, -50%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
}
.banner__heading {
    font-size: 48px;
    font-weight: bold;
    font-family: Baskervville, serif;
    text-transform: capitalize;
}
.banner__text {
    font-size: 18px;
    margin-top: 10px;
    color: #c3c3c3;
}

/* ==================================== */
/* Category Slider Section       */
/* ==================================== */
.category-slider {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.category-list {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    list-style: none;
    padding: 0;
    margin: 0px auto;
    width: 90%;
}
.category-list::-webkit-scrollbar {
    display: none;
}
.category-item {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
    margin: 0 15px;
}

.category-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 12px solid pink;
    object-fit: cover;
    display: block;
    margin: 0 auto 10px;
}
.category-name {
    font-weight: bold;
    font-size: 1.1em;
    color: #555;
    white-space: normal;
}
.slider-btn {
    font-size: 2em;
    color: #c00;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 10px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
}
.prev-btn {
    left: 0;
}
.next-btn {
    right: 0;
}

/* ==================================== */
/* Testimonial Section            */
/* ==================================== */
.testimonial-item__image {
    border-radius: 40px 40px 0px 0px;
    height: 150px;
    width: 210px !important;
    border: 1px solid #ed1c25;
    box-shadow: -12px 11px 1px #fdc913;
    margin-top: -80px;
}
.rating {
    color: gold;
    padding-left: 50px;
}
.testimonial-area-2{
      background: linear-gradient(180deg, #ffffff, #ffc7c9);
}

/* ==================================== */
/* Misc. Styles                */
/* ==================================== */
.single-item-wrap .thumb a {
    right: 7px;
}

/* ==========New homepage aj css end============ */



/*.input-group-text{border-bottom-left-radius: 20px;border-top-left-radius: 20px;}*/
.banner-area{display: block;}
.mobile-slider{display: none;}
.single-item-wrap .product-name h5{font-size: 29px;color: #ee161f;}
.single-product-right .wrap-footer{display: flex;}
.single-product-right .price{font-size: 32px;font-weight: 500;}
.shop-model-icon{font-size: 17px;font-family: poppins;color: #000;font-weight: 500;}
/*.shop-product-img :hover{cursor: -webkit-zoom-in;cursor: zoom-in;}*/
.ship-btn{width: 57%;font-size: 16px;padding: -40px;background: #000;color: #fff;}
.ship-ad{display: flex;}
.ship-ad a{width: 185px;font-size: 14px;margin-left: 13px;padding: 0 0px !important;}
/*.nav-link {padding: 0px !important;}*/
.sidebar li .submenu {padding-left: 9px !important;}
.widget_categories.style-2 .submenu li {margin-bottom: 0px !important;}
.mobile-fixed-footer{display: none;}
.carousel-indicators li {display: inline-block;width: 10px;height: 10px;margin: 1px;text-indent: -999px;
  cursor: pointer;background-color: #000\9;background-color: rgba(0,0,0,0);border: 1px solid #fff;border-radius: 10px;}
.carousel-indicators {position: absolute;bottom: 10px;left: 50%;z-index: 15;width: 60%;padding-left: 0;margin-left: -30%;text-align: center;list-style: none;}
.mob-filter{display: none;}
.mobile-sort{width: 60%;}
.dropdown:hover .dropdown-menu {display: block;margin-top: 0; }
.header-popup{width: 660px;}
.global-container{align-items: center;justify-content: center;}
.login-form .btn{margin-left: 0px;height: 32px;width: 100%;line-height: 32px;border-radius: 4px !important;font-size: 15px;margin-top: 10px;}
.sign-up a{display: initial !important;}
.cart-menu .dropdown-toggle::after{display: none;}
.dropdown-menu-right{right: 0;}
.menu-cart a{font-size: 28px;}
.menu-cart a span{font-size: 14px;}
.shopping-cart-title h5 a{font-size: 16px;}
.shopping-cart-title h4{font-size: 14px;font-weight: 500;}
.shopping-cart-delete{float: right;}
.login-form ul {display: block;}
.login-list ul li{border-bottom: 1px solid #ccc;margin-left: 0px;}
.header-list{width: 190px;}
.table-quantity .quantity{width: 100%;}
.mob-shop{display: none;}
.mobile-fixed-footer a:active{color: var(--main-color);border-top: 3px solid #c42121;}
.instant-search{padding-top: 18px;}
.nav-right-part-desktop{padding-top: 10px;float: right;}
.cat-add-btn{margin-left: 9px !important;}
.search-result-box{display: none;position: absolute;z-index: 99999;top: 56px;background: #fff;width: 100%;margin-top: 6px;border-radius: 10px;box-shadow: 0px 0px 5px #ccc;}
.search-product-list ul li{display: inline-flex;padding-bottom: 8px !important;padding-top: 8px !important;border-bottom: 1px solid #ccc;}
.search-top-header{background: #e9ecef;padding: 9px 13px 9px 13px;}
.search-product-list{padding: 0px 13px 0px 13px;height: 290px;overflow-y: scroll;}
.search-product-list ul{padding-left: 0px !important;}
.search-bottom-Footer p{font-size: 14px;font-weight: 400;cursor: pointer;}
.btn-secondary:hover {color: #fff;background-color: #ee161f;border-color: #ee161f;}
.search-bottom-Footer{padding: 9px 13px 9px 13px;text-align: center;box-shadow: 0px -6px 6px -6px;}
.search-quantity input{width: 25px;height: 25px;text-align: center;}
.search-cart-btn .btn{background: #fff;color: #ee161f;font-size: 13px;padding: 0px 5px 0px 5px;border: 1px solid #ee161f;height: 33px;line-height: 33px;border-radius: 5px;}
.search-cart-btn .btn:hover{background: #ee161f;color: #fff;}
.search-product-name span{font-size: 10px;}
.search-gram p{font-size: 14px;}
.search-product-name p{color: #000;line-height: 16px;font-size: 14px;cursor: pointer;}
.search-product-name p:hover{color: #ee161f;}
.search-price p{color: #000;font-weight: 500;font-size: 14px;}
.search-price{border-left: 1px solid #ccc;}
.search-top-header p{font-size: 12px;}
.search-top-header span{color: #000;font-weight: 600;}
.modal-signup .modal-title{font-size: 17px;color: #ee161f;}
.email-ad-btn{padding-top: 80px;}
.model-email-btn{background: #fff;border: 1px solid #b42b3c; font-weight: 400;border-radius: 0px;width: 100%;}
.model-continue-btn{background: #ee161f;color: #fff;font-weight: 400;border-radius: 0px;width: 100%;}
.modal-signup{width: 340px;height: 470px;}
.continue-ad-btn{margin-top: 10px;}
.btn-primary:hover{background-color: #ee161f;border-color: #ee161f;}
.mobile-fixed-footer ul{text-align: center;}
.mobile-fixed-footer ul li{display: inline-flex;color: #000;padding: 0px 9px 0px 9px;}
.mobile-fixed-footer ul li span{font-size: 21px;color: #7c7c7c;}
.mobile-fixed-footer ul li p{color: #2e2e2e;margin-top: 0px;font-size: 12px;}
.cart_total_sp{font-size: 12px !important;height: 24px;width: 24px;border-radius: 50%;display: inline-block;position: absolute;background-color: var(--secondary-color);text-align: center;top: 15px; right: 70px !important;color: var(--heading-color);-webkit-transform: translate(100%, -45%);transform: translate(100%, -45%);line-height: 24px;padding: 0 0px 0 0px;background: #ee161f;color: #fff !important; font-size: 11px !important;}
.login-back i{font-size: 25px;}
.verify-form p{font-size: 14px;}
.mobno_change{display: inline-flex;}
.mobno_change h3{font-size: 14px;color: #727272;}
.verify-btn .btn{margin-top: 4px;margin-left: 11px;background: #fff;color: #4a4a4a;font-size: 13px;border: 1px solid #5f5f5f;height: 28px;padding: 0px 9px 0px 9px;font-weight: 300;line-height: 28px;border-radius: 5px;}
#partitioned {padding-left: 15px;letter-spacing: 40px;border: 0;background-image: linear-gradient(to left, black 70%, rgba(255, 255, 255, 0) 0%);background-position: bottom;background-size: 50px 1px;background-repeat: repeat-x;background-position-x: 35px;width: 188px;outline : none;}
.otp_input{padding-top:0;}
.verify-btn .btn:after {content: "";background: #fff;}
.continue-ad-btn .verfy_btn{margin-top: 60px;}
.shopping-cart-img img{border: 1px solid #ccc;}
.shopping-cart-title h6{font-size: 15px;font-weight: 500;line-height: 5px;}
.cart_cat_name{font-size: 14px;}
.popup_cart_price a{font-size: 10px;color: #ee161f !important;text-align: center;}
.login-form ul li{margin-left: 0px;border-bottom: 1px solid #d0d0d0;padding: 12px 0px 13px 0px;}
.cart_product_list{height: 220px;overflow-y: scroll;    overflow-x: hidden;}
.shopping-cart-footer{box-shadow: 0px -4px 5px -6px;padding-top: 10px;}
.footer_note p{font-size: 10px;}
.shopping-cart-button p{font-size: 14px;color: #727272;}
.login-form .card-body{padding: 1px 11px 1px 11px;}
/*.banner-bg-img{display: none;}*/
.cart_page_result{background: #fff;padding: 20px;border-radius: 20px;margin-top: 30px;border: 1px solid #ee161f;}
.cart_page_result h3{color: #4c4c4c;font-size: 20px;font-weight: 400;}
.cart_page_result h4{color: #ffcad1;font-size: 18px;font-weight: 400;}
.cart_page_checkoutbtn .btn{font-weight: 400;font-size: 18px;} /* width: 100%;*/
.cart_page_checkoutbtn{text-align: center;}
.table-quantity form{width: 120px;margin: 0px auto;}
.details h5{font-weight: 300;font-size: 23px;color: #727272;}
.delivery_show_ad p{font-weight: 300;font-size: 13px;}
.btn-apply{height: 35px;line-height: 35px;}
.search-quantity .quantity{width: 100%;}
.delivert_addresses_body{border: 1px solid #ccc;padding: 10px;border-radius: 5px;margin: 5px 0px 5px 0px;}
/*.delivery_body{height: 220px;}*/
.delivert_addresses_body h2{font-size: 16px;font-weight: 400;color: #ee161f;}
.delivert_addresses_body h2 span{color: #727272;}
.delivert_addresses_body p{font-size: 14px;}
.deliver_here_btn{text-align: center;background: #ee161f;padding: 4px;color: #fff;}
.deliver_here_btn a:hover{color: #fff !important;}
.delivery_options_header{border: 1px solid #ccc;padding: 10px;}
.delivery_options_header h3{font-size: 20px;font-weight: 500;color: #727272;}
.delivery_options_header p span{color: #727272;font-weight: 600;}
.checkout_prodcut_images ul{display: inline-flex;}
.checkout_prodcut_images img{width: 6%;border: 1px solid #ccc;margin: 4px;}
.checkout_prodcut_images p a{padding-left: 20px;font-size: 12px;color: #727272;}
.del-bdy h3{font-size: 16px;}
.payment_form h6{font-weight: 400;color: #727272;}
.payment_form .form-group{margin-bottom: 21px;}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{background-color: #ee161f;}
.subscribe{width: 100%;background: #ee161f;border-radius: 0px;}
input[type="radio"] {height: 16px;}
.btn-apply{height: 100%;border-radius: 0 !important;}
.cart_product_list .buttons_added{width: 100%;}
.checkout_right_area h3{font-size: 20px;font-weight: 500;color: #727272;}
.order_table{width: 100%; display: inline-flex;}
.order_left_cart{width: 60%;}
.order_right_price{width: 40%;text-align: right;}
.order_table h3{font-size: 16px;font-weight: 600;}
.order_summary_btn {background: #ee161f;padding-top: 8px;color: #fff !important;padding-left: 15px;}
.order_summary_btn h3{color: #fff;}
.btn-primary{
    background-color: #ee161f;
    border-color: #ee161f;
}
.login_form .form-group input {height: 45px !important;}
.note{font-size: 11px;}
.shop-area .single-item-wrap{padding: 10px 10px 10px;border: 1px solid #ccc;}
.product-shelf-life h6{font-size: 12px;font-weight: 400;color: #727272;}
.text-right{text-align: right !important;}
.text-left{text-align: left !important;}
.product-approx h6{font-size: 14px;}
.shop-area .single-item-wrap .price{text-align: center;font-size: 19px;color: #727272;}
.shop-area .single-item-wrap .product-name h5{font-size: 20px;font-weight: 400;}
.shop-area .quantity input {height: 31px;}
.shop-area .pro-quanity .form-select{padding: 0px 2px 0px 7px;}
.category-name{text-align: center;padding-top: 0px;font-size: 18px;font-family: Baskervville, serif;}
/*.shop_bord_img{border-right: 1px solid #ccc;}*/
/*.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {max-width: 1410px;}*/
.pd-top-35 {padding-top: 35px;}
.login_form input{border: 1px solid #727272;border-radius: 0;}
.soc_login_btn{box-shadow: 0px 0px 5px #ccc;color: #727272;font-size: 17px;border: 1px solid #d5d5d5;border-radius: 0;width: 100%;height: 45px;line-height: 45px;padding: 0 21px;overflow: hidden; position: relative;-webkit-transition: all 0.5s ease;transition: all 0.5s ease; font-weight: 600; font-size: 16px;display: inline-block; -webkit-transform: perspective(1px) translateZ(0);transform: perspective(1px) translateZ(0);}
.soc_login_btn:hover{background-color: #f7f9fa !important;color: #ee161f;}
.fb i{font-size: 24px;color: #0086ff;padding-right: 11px;}
.google i{font-size: 24px;padding-right: 11px;background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;-webkit-background-clip: text;background-clip: text;color: transparent;-webkit-text-fill-color: transparent;}
.login_form .btn{border-radius: 0;background: #ee161f;height: 45px;color: white;}
.forget_psw a{color: #ee161f;}
.sign_up_link a{font-weight: 600;color: #ee161f;}
.login_form .btn:hover{background: #7d0010;}
.search_icon{background-color: #ee161f;border: 1px solid #ee161f;color: #ffffff;}
.login_form .input-group-text {height: 45px;background-color: #ffffff;border: 1px solid #727272;border-radius: 0;color: #6a6f73;}
.account_ship_ad{border: 1px solid #ccc;height: 203px;overflow-y: scroll;padding: 10px;}
.ship-ad h5{padding-right: 40px;font-size: 20px;color: #727272;}
.widget.widget_search .shipping_seacrh input{height: 40px;margin-left: 10px;background: #fff;border: 1px solid #ccc; border-radius: 10px;}
.widget.widget_search .shipping_seacrh_btn{height: 40px !important;line-height: 40px !important;}
.ship-ad .widget{margin-bottom: 0;}
#account-detail .form-group{    padding-bottom: 10px;}
.payment-card-area li{display: inline;}
.payment-card-area img{width: 34%;}
.row_scroll_cat{display: none;}
.header_mobile_search{display: none;}
.mobile_shop{display: none !important;}
.profile_circle{display: none;}
.mobile-cart-area{display: none;}
.payment_mob_btn{display: none;}
.mobno_change .mob_btn{display: none;}
.shop_btn_col1 .btn{padding: 0px 0px 0px 0px;}
.shop_btn_col1{padding: 10px 5px 10px 12px;}
.shop_btn_col2{padding: 10px 12px 10px 5px;}
.shop-btn .shop_knowmore_btn{background: #fff !important;color: #ee161f !important;border: 1px solid #fff;}
.shop-btn .shop_knowmore_btn:hover::after{background: #fff !important;}
.time_slot-dropdown{cursor: pointer; border: 1px solid #ccc;padding: 15px;margin-bottom: 0px;box-shadow: 1px 3px 12px #ccc;}
.time_slot_btn{padding: 30px 0px 30px 0px;}
.time_slot-dropdown h3{font-size: 15px;ine-height: 0px;margin: 0;}
.slot_dropdown_icon{float: right;}
.time_slot_modal .modal-title{font-size: 20px;font-weight: 400;}
.mobno_change .widget_searchh{border-radius: 5px;background: #ee161f;color: #fff;width: 30px;margin-left: 10px;height: 30px;padding: 5px;}
.thank_you_sec h3{font-size: 40px;color: #fff;font-weight: 400;}
.thank_you_sec h5{color: #fff;font-weight: 300;}
.font-md th{font-weight: 600;}
.nick_name_btn ul li{display: inline;border: 1px solid #ccc;padding: 6px;border-radius: 5px;margin: 5px;}
.nick_name_btn ul{padding-left: 0px !important;padding-top: 10px;}
.nick_name_btn ul li:hover, active, focus, visited {border: 1px solid #ee161f;color: #ee161f;}
.small_font{font-size: 10px;}
.gst_details .form-group label{padding-bottom: 4px;}
.order_icon{font-size: 12px;}
.gst_input{accent-color: #fff;width: 27px;height: 21px;}
.delivery_option_radio .form-check .form-check-label {padding-left: 8px;}
.desk_delivery_address_search{display: block;}
.mobile_delivery_address_search{display: none;}
.gst_details_sec_head{height: 37px !important;}
.gst_details label{font-size: 14px !important;}
#add_shipping_addresses label{font-size: 14px !important;}
.gst_details .form-group {padding-bottom: 10px;}
.width_80{width: 80%;}
.width_84{width: 84%;}
.prod_whishlist_btn a{font-size: 21px;color: #ee161f;background: #fff;width: 30px;height: 30px;border-radius: 50px;margin: 0px auto;text-align: center;align-items: center;line-height: 30px;line-height: 30px;position: absolute;z-index: 9999; right: 11px;top: 9px;}
.single_add_btn{padding-top: 13px;}
.mob_rightcontentview{display: none;}
.single_product_broadcrumb{display: none;}
.single_product_des_table td, th {padding: 10px 20px; border: 1px solid #ececec;vertical-align: middle;}
.mob_sec{display: none;}
.desk_sec{display: flex;}
.desk_sec .single_mob_cart_btn .btn{width: 63%;    margin-left: -59px;}
.shop-item-details .rating{padding-top: 3px;}
.product_name p{margin-top: 17px !important;margin-bottom: -6px;}
.cart_page_subtotal strong{font-weight: 500;color: #ee161f;}
.category_sec{background: #ee161f;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;padding: 7px;}
.category_sec .cat_img img{filter: brightness(14.5);border-radius: 10px;width: 100%;margin-left: 12px;}
.category_sec .cat_name{color: #fff;font-size: 17px;text-align: center;line-height: 28px;padding: 5px;}
.product_category_page .single-item-wrap{padding: 10px 0px 0px;}
#orders table th{color: #757575;font-weight: 500;}
.edit_btn i{font-size: 16px;padding-left: 10px;margin-top: -6px;color: #ee161f;}
.edit_btn {margin-top: -5px !important;}
.delivery_addresses .input-group{padding-bottom: 5px;}
.card-header h5{font-weight: 300;}
.prod_delete_btn{position: absolute;top: -10px;right: -13px;background: #ee161f;width: 25px;color: #fff;font-size: 13px;border-radius: 20px;padding: 0;line-height: 25px;height: 25px;}
.wish_list_product_header{background: #ee161f;padding: 6px;margin: 0px 10px 30px 10px;}
#orders table th {color: #ffffff;}
#orders thead{background: #ee161f;}
.action_btn{background: #ee161f;color: #fff !important;text-align: center;padding: 3px;border-radius: 5px;font-size: 14px;}

.action_btn_disabled{border:1px solid #b0a3a480;color: #b0a3a480 !important;text-align: center;padding: 3px;border-radius: 5px;font-size: 14px;}

.status_filter_list{display: block;position: absolute; background: #fff; border: 1px solid #ccc;/*border-bottom-left-radius: 7px;border-bottom-right-radius: 7px;*/width: 176px;top: 101px;right: 428px;}
.status_filter_list ul{padding-left: 0px;    margin-bottom: 0px;}
.status_filter_list ul li{border-bottom: 1px solid #ccc;padding: 5px 10px 5px 8px;}
.status_filter_list ul li a{color: #ee161f;text-align: center;font-weight: 400;font-size: 13px;}

.track_btn{background: #fff !important;color: #ee161f !important;border: 1px solid #ee161f !important;}
.track_btn_disable{background: #fff !important;color: #b0a3a480 !important;border: 1px solid #b0a3a480 !important;}
.status_items a{font-size: 14px !important;}
.status_items{right: -10px;}
.order_popup th{font-weight: 500;padding: 5px 0px;border: none;}
.order_popup td{    padding-left: 40px;}
.Order_product_name h4{font-size: 22px;font-weight: 300;color: #ee161f;}
.order_view .modal-header{padding: 6px 15px;}
.order_mobile_table{display: none;}
.my_order_view .table tbody tr td.item-name .details{padding: 13px 0;}
.my_order_view .details h5 {    font-size: 20px;}
.my_order_view .table tbody tr td.item-name .details ul li {font-size: 15px;font-weight: 400;}
.order_view_header_top h5{font-size: 20px;color: #ee161f;}
.order_view_header_top p{font-size: 13px;}
.my_order_view .table{min-width: 100%;}
.bil_ad i{font-size: 27px;color: #ee161f;vertical-align: -3px;cursor: pointer;}
.bil_ad_head span{font-size: 1rem;}
.bil_show_ad p{padding-top: 10px;}
.bil_show_ad{margin-left: -9px;}
.req_del{font-size: 12px;}
.sum_mobile_order{    margin-top: 10px;}
#edit_billing_addresses .form-group {padding-bottom: 10px;}
.modal-title{font-size: 20px;}
.form-select {font-size: 14px;color: #727272;}
.order_received_mob_foot{display: none;}
.order_received_details_mob{display: none;}
.payment_details{display: none;}
.offer_line{display: none;}
.big_font{font-size: 15px;}
.offer_line2 h3 {color: #727272;line-height: 16px;padding: 10px 0px 10px 0px;border-radius: 5px; width: 80%;    margin: 10px auto;}
.log_label{padding-left: 27px;line-height: 29px;font-size: 16px;}
.form-check-input:checked {background-color: #ee161f;border-color: #ee161f;}
.gallery_img_product_name p a{font-weight: 400;font-size: 19px;color: #ee161f;}
.mb_10{margin-bottom: 10px;}
.nav-link {color: #7f7f7f;}
.product-nav.style-2 .nav-item .nav-link:hover { border: 1px solid #ccc;}
.active_nav{color: #ee161f !important;font-weight: 500 !important;}
.mob_browse_menu_btn{position: fixed;bottom: 0;left: 0;right: 0;z-index: 99999999999999999 !important; pointer-events: none;}
.mob_browse_menu_btn button{left: 50%;top: -80px;transform: translateX(-50%);pointer-events: auto;border-radius: 25px !important;}
.offcanvas_bottom_browse_menu{height: 50% !important;z-index: 9999999999;margin: 20px; border-radius: 6px;}
.mob_browse_menu{display: none;}
.gst_btn{padding-top: 5px;}
.about_video{width: 100%;height: 100vh;}
.mobile_product_content{display: none;}
.desk_product_content{display: block;}
.pad0{padding-left: 0px !important;}
.sharein img{width: 20%;}
.sharein ul li{display: inline;padding-left: 20px;}
.sharein h5{ font-size: 21px;color: #ee161f;}
.sharein{padding-top: 25px;}
.alert-div{
    padding: 10px 10px 10px !important;
    margin-bottom: 10px !important;
    border-radius: 6px;
  }


.alert-danger-custom{
  color: #721c24 !important;
  background-color: #f8d7da !important; 
  border-color: #f5c6cb !important;
}

.alert-custom{
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}


.swal2-title {
    font-size: 15px !important;
  }

.go-to-shop{
  text-align: center;
  padding: 20px 0px 20px;
}

.delivTo{
    /*width: 88%;*/
    width: 130%;
    /*padding: 12px 20px 12px 20px;*/
    padding: 10px 10px 10px 10px;
    border-radius: 10px;
    margin-top: 1%;
    background: #ee161f;
    color: #fff;
    text-align: center;
}

/*===========================Laoding ==============================*/
/* (A) FULL SCREEN WRAPPER */
#spinner {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.2s;
}

/* (B) CENTER LOADING SPINNER */
#spinner img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%);
}

/* (C) SHOW & HIDE */
#spinner {
  visibility: hidden;
  opacity: 0;
}
#spinner.show {
  visibility: visible;
  opacity: 1;
}

/* (X) DOES NOT QUITE MATTER */
html, body {
  margin: 0;
  padding: 0;
}


.pagignation-apdd{
  padding: 0.375rem 0.75rem !important;
}

.razorpay-payment-button{
    background: #ee161f;
    width: 264px;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
    transform: perspective(1px) translateZ(0);
    border-radius: 10px;
    height: 40px;
    line-height: 40px;
    padding: 0 21px;
    overflow: hidden;
    position: relative;
    border: 0;
    
}

.razorpay-payment-button{
    background: #ee161f;
    width: 264px;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
    transform: perspective(1px) translateZ(0);
    border-radius: 10px;
    height: 40px;
    line-height: 40px;
    padding: 0 21px;
    overflow: hidden;
    position: relative;
    border: 0;
    
}

/*.razorpay-payment-button:after {
      visibility: visible;
      position: absolute;
      top: 0;
      left: 0;
      content: "Continue To Payment";
  }*/

/*============================End Loading ===============================*/


.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  margin: 7px;
  border: 4px solid #ee161f;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #ee161f transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}




/*aj css end*/

/*=========Snackbar=====*/
#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #ee161f;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 999;
  left: 50%;
  bottom: 70px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 70px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 70px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 70px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 70px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}


/*============Snackbar==============*/

.policy-css ul li{
  list-style-type: disc !important;

}

.blogdis ul li{
  list-style-type: disc !important;

}



.policy-css ul{
  margin-bottom: 1rem !important;
  padding-left: 2rem !important;
  margin-top: 10px;
}

.offer-idv{
  border: 1px solid red;
    font-size: 15px;
    padding: 3px 7px 3px;
    float: right;
    border-radius: 10px;
    background: #ee161f;
    color: white;
}


.messgaeSh{
  padding: 12px;
  background-color: #ee161f;
  color: white;
  border-radius: 10px;
  margin-top: 12px;
  }

  .messgaeSh a:hover{
    color:white;
  }

  .cart-img{
    width:70px;
    height: 70px;
    max-width:initial !important;
  }


  .verify-class{
    border: 1px solid #ee161f;
    padding: 10px;
    border-radius: 10px;
    background: #ee161f;
    color: white;
  }