﻿
/* Tabs panel */
.tabbable-panel {
    border:0px solid #eee;
    padding: 0px;
    border-radius: 4px;
    box-shadow: 0px 0px 19px rgba(0, 0, 0, 0.16);
  }
  
  /* Default mode */
  .tabbable-line > .nav-tabs {
    border: none;
    margin: 0px;
    background-color: #032d0c;
  }
  .tabbable-line > .nav-tabs > li {
    margin-right: 2px;
  }
  .tabbable-line > .nav-tabs > li > a {
    border: 0;
    margin-right: 0;
    color: #B1B1B1;
    font-size: 16px;
    text-align: center;
  }
  .tabbable-line > .nav-tabs > li > a > i {
    /* color: #a6a6a6; */
    font-size: 1.5em !important;
  }
  .tabbable-line > .nav-tabs > li.open, .tabbable-line > .nav-tabs > li:hover {
    border-bottom: 4px solid #fff;
  }
  .tabbable-line > .nav-tabs > li.open > a, .tabbable-line > .nav-tabs > li:hover > a {
    border: 0;
    background: none !important;
    color: #ffffff;
  }
  .tabbable-line > .nav-tabs > li.open > a > i, .tabbable-line > .nav-tabs > li:hover > a > i {
    color: #a6a6a6;
  }
  .tabbable-line > .nav-tabs > li.open .dropdown-menu, .tabbable-line > .nav-tabs > li:hover .dropdown-menu {
    margin-top: 0px;
  }
  .tabbable-line > .nav-tabs > li.active {
    border-bottom: 4px solid #fff;
    position: relative;
  }
  .tabbable-line > .nav-tabs > li.active > a {
    border: 0;
    color: #ffffff;
    border-radius: 0px;
    background-color: #032d0c;
  }
  .tabbable-line > .nav-tabs > li.active > a > i {
    color: #ffffff;
  }
  .tabbable-line > .tab-content {
    margin-top: -3px;
    background-color: #fff;
    border: 0;
    padding: 15px;
  }
  .portlet .tabbable-line > .tab-content {
    padding-bottom: 0;
  }
/* tabs end */

/* categories tabs  */
.tabbable-panel2 {
  border:0px solid #eee;
  padding: 0px;
}

/* Default mode */
.tabbable-line2 > .nav-tabs {
  border: none;
  margin: 0px;
}
.tabbable-line2 > .nav-tabs > li {
  margin-right: 2px;
}
.tabbable-line2 > .nav-tabs > li > a {
  border: 0;
  margin-right: 0;
  color: #B1B1B1;
  font-weight: normal;
  font-size: 18px;
}
.tabbable-line2 > .nav-tabs > li > a > i {
  color: #a6a6a6;
}
.tabbable-line2 > .nav-tabs > li.open, .tabbable-line2 > .nav-tabs > li:hover {
  border-bottom: 4px solid transparent;
}
.tabbable-line2 > .nav-tabs > li.open > a, .tabbable-line2 > .nav-tabs > li:hover > a {
  border: 0;
  background: none !important;
  color: #333333;
}
.tabbable-line2 > .nav-tabs > li.open > a > i, .tabbable-line2 > .nav-tabs > li:hover > a > i {
  color: #a6a6a6;
}
.tabbable-line2 > .nav-tabs > li.open .dropdown-menu, .tabbable-line2 > .nav-tabs > li:hover .dropdown-menu {
  margin-top: 0px;
}
.tabbable-line2 > .nav-tabs > li.active {
  border-bottom: 4px solid #ffffff;
  position: relative;
}
.tabbable-line2 > .nav-tabs > li.active > a {
  border: 0;
  color: #032d0c;
  background: transparent;
  font-weight: bold;
}
.tabbable-line2 > .nav-tabs > li.active > a > i {
  color: #404040;
}
.tabbable-line2 > .tab-content {
  margin-top: -3px;
  background-color: transparent;
  border: 0;
  border-top: 0px solid #eee;
  padding: 15px 0;
}
.portlet .tabbable-line2 > .tab-content {
  padding-bottom: 0;
}
/* categories tab END */

/* Custom-radio btn */
.custom-radio {
  display: block;
  position: relative;
  padding-left: 26px;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: normal;
}

/* Hide the browser's default radio button */
.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.custom-radio .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #032d0c;
}

/* On mouse-over, add a grey background color */
.custom-radio:hover input ~ .checkmark {
  background-color: #fff;
}

/* When the radio button is checked, add a blue background */
.custom-radio input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.custom-radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom-radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.custom-radio .checkmark:after {
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #032d0c;
}

/* custom radio btn END */

/* custom checkbox btn ref. https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_custom_checkbox */
.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 26px;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: normal;
}

/* Hide the browser's default checkbox */
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.custom-checkbox .checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 2px solid #032d0c;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
  background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
  background-color: #032d0c;
}

/* Create the checkmark/indicator (hidden when not checked) */
.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
  left: 4px;
  top: 0px;
  width: 7px;
  height: 11px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* custom checkbox btn END  */

/*custom dropdown ref. https://codepen.io/pavelvaravko/pen/qjojOr */
/*.wrap {
    position: absolute;
    right: 0;
    top: 40%;
    width: 100%;
    left: 0;
    margin: 0 auto;
}*/

/* select starting stylings ------------------------------*/
.select {
    position: relative;
    width: 100%;
}

.select-text {
    position: relative;
    color: #032d0c;
    font-family: inherit;
    background-color: transparent;
    width: 100%;
    padding: 10px 10px 10px 5px;
    font-size: 18px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3); /*1px solid rgba(0,0,0, 0.12)*/
}

    /* Remove focus */
    .select-text:focus {
        outline: none;
        border-bottom: 1px solid rgba(0,0,0, 0);
    }

/* Use custom arrow */
.select .select-text {
    appearance: none;
    -webkit-appearance: none
}

.select:after {
    position: absolute;
    top: 18px;
    right: 10px;
    /* Styling the down arrow */
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.12);
    pointer-events: none;
}


/* LABEL ======================================= */
.select-label {
    color: #c6c6c6; /*rgba(0,0,0, 0.26)*/
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 10px;
    transition: 0.2s ease all;
}

/* active state */
.select-text:focus ~ .select-label, .select-text:valid ~ .select-label {
    color: #032d0c;
    top: -14px;
    transition: 0.2s ease all;
    font-size: 12px;
}

/* BOTTOM BARS ================================= */
.select-bar {
    position: relative;
    display: block;
    width: 100%;
}

    .select-bar:before, .select-bar:after {
        content: '';
        height: 2px;
        width: 0;
        bottom: 1px;
        position: absolute;
        background: #032d0c;
        transition: 0.2s ease all;
    }

    .select-bar:before {
        /*left: 50%;*/
    }

    .select-bar:after {
        /*right: 50%;*/
    }

/* active state */
.select-text:focus ~ .select-bar:before, .select-text:focus ~ .select-bar:after {
    width: 100%;
}

/* HIGHLIGHTER ================================== */
.select-highlight {
    position: absolute;
    height: 60%;
    width: 100%;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}
/*custom dropdown END*/


/* custom input ref. https://codepen.io/lewisvrobinson/pen/EyZwjR */
.custom-form textarea {
  resize: none;
}
.custom-form input, .custom-form textarea {
  background: none;
  color: #032d0c;
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: -webkit-fill-available;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.custom-form input:focus, .custom-form textarea:focus {
  outline: none;
  color: #032d0c;
}
.custom-form input:focus ~ label, .custom-form textarea:focus ~ label, .custom-form input:valid ~ label, .custom-form textarea:valid ~ label {
  top: -14px;
  font-size: 12px;
  color: #032d0c;
}
.custom-form input:focus ~ .bar:before, .custom-form textarea:focus ~ .bar:before {
  width: -webkit-fill-available;
}
.custom-form input[type="password"] {
  letter-spacing: 0.3em;
}
.custom-form label {
  color: #c6c6c6;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 15px;
  top: 10px;
  transition: 300ms ease all;
}
.custom-form .bar {
  position: relative;
  display: block;
  width: auto;
}
.custom-form .bar:before {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: #032d0c;
  transition: 300ms ease all;
  left: 0%;
}
/* custom input end */

/* custom app button */
.btn-store {
  color: #fff;
  min-width: auto;
  padding: 10px 0px;
  border: 0px solid #032d0c;
}
.footer-bg .btn-store{
  color: #fff !important;
  padding: 0px;
}
.btn-store:focus, 
.btn-store:hover {
  color: #ffffff !important;
  background-color: #032d0c;
  border-color: #032d0c;
}

.btn-store .btn-label, 
.btn-store .btn-caption {
  display: block;
  text-align: left;
  line-height: 1;
}

.btn-store .btn-caption {
    font-size: 18px;
    margin-top: 4px;
}

/* custom app button END */

/* product display  */
.product-card
{
  background-color: #fff;
  padding: 10px 15px 30px 15px;
  margin-bottom: 5px;
  border-radius: 0px;
}
.product-card a{
  display: block;
}
.product-card img{
  padding: 12px;
  height: 170px;
}
.cart-table .product-card img {
    padding: 12px;
    height: 100px !important;
}
.product-card .price, .product-card .disc-price
{
  font-size: 15px;
  font-weight: 600;
}
.product-card-desc label{
  height: 46px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  color: #6A6A6A;
  display: flex;
  justify-content: center;
}
/* product display END */

/* Offer display  */
.offer-card {
    background-color: #fff;
    padding: 10px 15px 2px 15px;
    margin-bottom: 5px;
    border-radius: 0px;
}

.offer-card a {
    display: block;
}

    .offer-card img {
        padding: 12px;
        height: 170px;
    }

    .offer-card .price, .offer-card .disc-price {
        font-size: 15px;
        font-weight: 600;
    }

.offer-card-desc label {
    height: 23px;
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
    color: #6A6A6A;
    display: flex;
    justify-content: center;
}
.offer-card .text-dark {
    color: #B1B1B1 !important;
    overflow: hidden;
    height: 23px;
}
/* Offer display END */

/*filter Card START*/
.filter-card {
    background-color: #fff;
    padding: 10px 0px 0px 0px !important;
    margin-bottom: 5px;
    border-radius: 0px;
}
.filter-card-category {
    padding: 10px 0;
    border-top: 2px solid #f3f7f8;
}
.filter-card-category:first-child
{
    border-top: none !important;
    padding-top: 0 !important
}
.filter-card-category .row {
    margin-left: 1em;
    margin-right: 1em;
}
.filter-card-category .form-group {
    margin-top: 5px;
    margin-bottom: 5px;
}
.filter-card-category .custom-checkbox {
    cursor: pointer;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    font-weight: 500;
}
/*filter Card END*/
/*progress bar */
.progress {
    height: 15px;
    margin-bottom: 0px;
    overflow: hidden;
    background-color: #F3F7F8;
    border-radius: 0px;
}
.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 15px;
    color: #fff;
    text-align: center;
    background-color: #F9E669;
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
/*progress bar END*/

body, .trd-service-section
{
  background-color: #F3F7F8;
}
.text-primary
{
  color: #032d0c;
}
.text-secondary
{
  color:#ffffff
}
.v-align-center
{
  display: flex;
  align-items: center;
}
.h-align-center
{
  display: flex;
    justify-content: center;
}
::selection {
  background: #032d0c !important;
  color: rgb(255, 255, 255);
}
.btn-primary {
  color: #fff;
  background-color: #032d0c;
  border-color: #032d0c;
  font-size: 18px;
}
.btn-secondary {
    color: #032d0c !important;
    background-color: #fff !important;
    border-color: #032d0c !important;
    font-size: 18px;
}
.btn-secondary:hover {
    background-color: #032d0c !important;
    color: #fff !important
}
.fw-normal
{
  font-weight: normal;
}
.fw-bold
{
  font-weight: bold;
}
.offer-img-height
{
  height: fit-content;
}
.trd-section {
  padding: 20px 0 !important;
  border: 0px !important;
}
.m-0
{
  margin: 0px
}
.ml-0
{
  margin-left: 0px !important;
}
.mr-0
{
  margin-right: 0px !important;
}
.p-0
{
  padding: 0px
}
.pl-0
{
  padding-left: 0px;
}
.pr-0
{
  padding-right: 0px;
}
.product-col
{
  padding-right: 2px;
  padding-left: 2px;
}
.footer-bg, .bg-primary
{
  background-color: #032d0c;
 
}
.bg-secondary {
    background-color: #ffffff;
}
.footer-bg .nav
{
  padding-top: 5em
}
.footer-bg .nav ul li, .footer-bg p
{
  color: #B1B1B1;
  font-size: 15px;
}
.custom-nav
{
  display: contents !important;
}
.custom-search {
    border-left: none !important;
    box-shadow: none !important;
    border-radius: 0;
}
.custom-search:focus{
  border-color:#ccc !important;
}
.custom-nav li a{
  color: #032d0c;
  margin-left: 2px;
}
.custom-nav li .fa
{
  font-size: 1.1em;
  color: #B1B1B1 !important
}
.custom-navbar
{
  box-shadow: 0px 0px 26px rgb(0 0 0 / 16%);
    border-bottom: none !important;
    border: none !important;
}
.header_logo, .footer_logo {
  height: 64px !important;
  /* width: 128px; */
}
.product-card:hover, .offer-card:hover {
    box-shadow: 0px 0px 10px rgb(0 0 0 / 16%);
    /* box-shadow: rgb(0 0 0 / 16%) 0px 0px 19px; */
}
.section-bg-white {
    background: #fff;
    padding: 1em 2em 1em 2em;
    border-radius: 4px
}
.rating li, .rating-input {
    padding: 0 !important;
    color: #F9E669;
}
    .rating li:first-child {
        padding-left: 5px !important
    }
    .rating-input i {
        padding-right: 5px;
        font-size: 22px;
        cursor: pointer;
    }
.rating-clear .fa {
    color: #032d0c !important;
}
    .product-price li h5 {
        margin-bottom: 0 !important;
        font-weight: 500 !important;
    }
hr {
    margin: 0px 0px 0px 0 !important;
    /*border-top: 1px solid rgba(0, 0, 0, 0.3) !important;*/
    /*border-top: 1px solid rgb(243 247 248) !important;*/
    width: 100%;
}
.product-highlists ul li::before {
    content: "\2022";
    color: #032d0c;
    font-weight: bold;
    display: inline-block;
    width: 1em;
}
.product-highlists ul {
    list-style: none;
}
.product-highlists ul li {
    font-size: 16px;
    margin-top: 5px;
}
.cart-wishlist .btn {
    width: 44%;
    border: 2px solid #032d0c;
}
.rating-progress {
    width: 75%;
}
.rating-progress-section {
    padding-top: 10px;
}
.bg-white
{
    background-color: #fff !important;
}
.product-display-img {
    max-height: 420px
}
.category-hr {
    border-top: 1px solid #24356457;
    margin: 5px 0 15px !important;
}
/* responsive */
@media only screen and (max-device-width: 768px) {
    .category-hr
    {
        border-top: 1px solid #24356457;
        margin: 5px 0 10px !important;
    }
    .footer-bg
    {
        z-index: 2
    }
    /*Navigation path fixed css*/
    .fixed-breadcrumbs {
        position: fixed;
        width: 100%;
        z-index: 2;
        top: 50px;
    }

    .fixed-breadcrumbs ul > li > a:hover {
        text-decoration: underline;
        color: #ffffff
    }

    .h-xs-scroll ul {
        display: inline-flex;
        width: 100%;
        overflow-x: auto;
        border-bottom: none;
        -ms-overflow-style: none;
        overflow: -moz-scrollbars-none;
        padding-bottom: 8px;
    }
        .h-xs-scroll ul > li > a {
            float: left;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding: 8px 0px 0px 0px !important;
        }

        .fixed-breadcrumbs ul > li > a {
            padding: 8px 0px 5px 0px;
            font-size: 16px;
        }

    .fixed-breadcrumbs ul > li > a > .fa {
        font-size: 18px
    }
    .custom-checkbox
  {
    font-size: 13px;
    padding-left: 28px;
  }
  .header_logo, .footer_logo 
  {
    height: 44px !important;
    width: 210px !important;
  }
  .offer-img-height
  {
    height: auto;
    width: 100%;
  }
  .product-col
  {
    padding-right: 3px;
    padding-left: 0px;
  }
  .product-card
  {
    margin-bottom: 3px;
    border-radius: 0;
  }
  .product-card-desc label, .product-card .price, .product-card .disc-price
  {
    font-size: 13px;
  }
  .product-card
  {
    padding: 10px 10px 40px 10px;
  }
  .product-card-desc label
  {
    height: 46px;
  }
  .pt-xs-5
  {
    padding-top: 5em !important;
  }
  .product-card img
  {
    max-height: 156px;
  }
  .category-sticky
  {
    position: sticky;
      /* display: block; */
      top: 49px;
      z-index: 99;
      width: 100%;
      background: #f3f7f8;
      padding-bottom: 10px !important;
  }
  .category-product-col 
  {
    padding-right: 0px;
    padding-left: 0px;
  }
  .tabbable-line2 > .nav-tabs > li > a 
  {
    font-size: 16px;
  }
  .text-xs-center
  {
    text-align: center;
  }
  .footer-bg .nav
  {
    padding-top: 1em
  }
  .pt-xs-0
  {
    padding-top: 0em !important;
  }
  .header_xs_logo
  {
    width: 46px !important;
    height: 44px !important;
  }
  .custom-nav 
  {
    display: block !important;
  }
  .custom-nav li.nav-xs
  {
    padding-top:9px
  }
  .nav-xs .btn-default
  {
    border-right: 0px solid transparent;
  }
  hr 
  {
    margin: 0px 0px 0px 0 !important;
  }
  .section-bg-white 
  {
      padding: 1em !important
  }
    .cart-wishlist .btn {
        width: auto;
    }
    .rating-progress
    {
        width: 62%;
    }
    .custom-nav-xs .fa, .custom-nav-xs a
    {
        font-size: 20px;
    }
    .line-height-normal{
        line-height: normal !important
    }
    .product-display-img
    {
        max-height:200px
    }
}
.category-card a {
    padding: 2.3em 2.0em 1em 2.0em
}
.category-card:hover{
    box-shadow: 0px 0px 26px rgb(0 0 0 / 16%);
}
.category-card .category-label {
    padding-top: 0.5em;
}
.category-card img {
    height: 55px;
}
/*.trd-main-slides{
    height: 50vh !important
}*/

.carousel {
    width: 92%;
    margin: 0px auto;
}

.slick-slide {
    margin: 10px 2px 10px 2px;
}
.right-carousel .slick-slide {
    margin: 0px 2px 0px 2px;
}
.slick-next::before, .slick-prev::before {
    color: #032d0c;
}
.product-card:focus-visible
{
    border: none !important;
    text-shadow: none !important;
    
}
.mb-0
{
    margin-bottom: 0px !important
}
.list-inline .category-card label
{
    margin-bottom: 0px !important
}
.price i.actual-price {
    text-decoration: line-through;
    color: #B1B1B1;
    font-style: normal;
    margin-left: 5px;
    font-weight: 400;
}
.saved-price {
    font-style: normal;
    margin-left: 0px;
    font-weight: 400;
    text-decoration: none;
    color: #ffffff;
}
.banner-Offer-image a {
    margin: 10px 2px 10px 2px;
}
@media (max-width: 767px) {
    /*.sp-image-container, .trd-main-slides{
        height: 200px !important
    }*/
    header.trd-header .trd-header-bottombar .trd-main-menu {
        background: #032d0c !important;
    }
    .badge-wrapper .badge {
        background-color: #d32f2f !important;
    }
    .navbar-collapse
    {
        box-shadow: none !important
    }
    .navbar-nav {
        margin: 0 -15px !important;
    }
    .bg-xs-primary {
        background-color: #032d0c;
    }
    .bg-xs-secondary {
        background-color: #ffffff;
    }
    .mt-xs-10
    {
        margin-top: 10px !important
    }
    .subCategoryTitleFixed {
        position: sticky;
        top: 87px;
        z-index: 1;
        width: 120%;
        padding-bottom: 0px !important;
        background: #f3f7f8;
        margin-left: -30px
    }
    /*.subCategoryTitleFixed h4
    {

    }*/
        .border-xs-none {
            border: none !important
        }
    .xs-nav {
        /*justify-content: space-between;
        display: flex;*/
    }
    .xs-nav li a .fa {
        /*padding: 8px 10px;*/
        margin: 14px 5px 6px 5px;
        font-size: 20px; 
        color: #fff !important
    }
    .xs-nav li a .fa:last-of-type
    {
        margin-right: 0px
    }

        .badge-wrapper .badge {
            top: -10px !important;
            right: -6px !important;
        }

    .trd-contact-infos {
        width: 98%;
        padding: 8px 0px !important
    }
    .select2-container, .trd-header-info-lang {
        /*padding-left: 0px !important;
        width: 90% !important;*/
    }
    .trd-lang-dropdown .select2-results {
        padding-top: 10px
    }
    .trd-header-info-lang {
        padding-left: 0px !important
    }
    #trd-hero-slider .sp-arrows {
        display: none !important
    }
    .h-scroll ul {
        display: inline-flex;
        width: 100%;
        overflow-x: auto;
        border-bottom: none;
        -ms-overflow-style: none;
        overflow: -moz-scrollbars-none;
    }
    .h-scroll ul > li > a {
        float: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-right: 2px;
        text-align: center;
        /*width: 56px;*/
    }
    .category-card a {
        padding: 0.2em 0.2em .2em 0.2em !important;
    }
    .category-card img {
        height: 40px !important;
    }
    .brand-card img {
        height: 80px !important;
    }

    .category-card .category-label {
        padding-top: 0.1em !important;
        font-size: 11px;
        font-weight: 500;
        /*white-space: break-spaces;*/
    }
    .pb-xs-1
    {
        padding-bottom: 1em !important
    }
    .mb-xs-1
    {
        margin-bottom: 1em !important
    }
    .main-body {
        padding-top: 90px !important
    }
    .pl-xs-0
    {
        padding-left: 0 !important
    }

    .pr-xs-0
    {
        padding-right: 0 !important
    }
    .p-xs-0
    {
        padding: 0 !important
    }
    .pt-xs-1{
        padding-top: 1em !important
    }
    .text-xs-left
    {
        text-align: left !important
    }
    .filter-icon {
        position: absolute !important;
        right: 1em !important;
        font-size: 18px !important;
        top: 10px !important;
    }
    .filter-icon .fa{
        color:#243664 
    }
    footer .trd-footer-top .trd-footer-widget.trd-useful-link-widget ul li 
    {
        width: 50% !important;
    }
    .product-lg .product-card-desc {
        justify-content: left !important;
        margin-bottom: 0 !important;
        line-height: 16px !important;
    }

        .product-lg .product-card-desc label {
            line-height: 16px !important;
            -webkit-line-clamp: 3;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            height: auto;
            font-weight: 400;
            font-size: 14px;
            font-style: normal;
            cursor: pointer;
            margin-bottom: 5px;
        }

    .product-lg .product-card img {
        height: 250px !important;
    }

    .product-lg .product-card {
        height: 100%;
        padding: 10px 15px 10px 15px !important;
    }

    .row.product-lg-row {
        display: flex;
        flex-wrap: wrap;
    }

    .row.product-lg-row > [class*='col-'] {
        display: flex;
        flex-direction: column;
    }
    .d-xs-block
    {
        display: block !important
    }
    #ProductSpecification tbody > tr > th
    {
        width: 40%
    }
}
@media (min-width: 992px)
{
    .h-md-align-center {
        justify-content: center;
        display: flex;
    }
    .fixed-breadcrumbs {
        position: fixed;
        width: 100%;
        z-index: 1;
        top: 64px;
    }
    .fixed-breadcrumbs ul > li > a:hover {
        text-decoration: underline;
        color: #ffffff
    }
    .fixed-breadcrumbs ul > li > a {
        padding: 8px 0px 5px 0px;
        font-size: 16px;
    }
    .fixed-breadcrumbs ul > li > a > .fa
    {
        font-size: 18px
    }
    .navbar {
        z-index: 1024
    }
    .pl-md-0
    {
        padding-left: 0 !important
    }
    .pr-md-0 {
        padding-right: 0 !important
    }
    .product-lg .product-card-desc {
        justify-content: left !important;
        
        margin-bottom: 0 !important;
        line-height: 16px !important;
    }
    .product-lg .product-card-desc label {
        line-height: 16px !important;
        -webkit-line-clamp: 4;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        height: auto;
        font-weight: 400;
        font-size: 14px;
        font-style: normal;
        cursor: pointer;
        margin-bottom: 5px;
    }
    .product-lg .product-card img {
        height: 250px !important;
    }
    .product-lg .product-card {
        height: 100%;
        padding: 10px 15px 10px 15px !important;
    }
    .row.product-lg-row {
        display: flex;
        flex-wrap: wrap;
    }

    .row.product-lg-row > [class*='col-'] {
        display: flex;
        flex-direction: column;
    }
    .p-md-sticky
    {
        position: sticky;
        top: 100px;
    }
    .pt-md-05
    {
        padding-top: 5px !important
    }
    .product-details-scroll {
        height: 75vh;
        overflow-x: hidden !important;
        overflow: auto;
    }
    .product-details-scroll::-webkit-scrollbar{
        width: 0.5em;
        border-radius: 0.5em;
        background-color: #e8e8e800;
    }

    .product-details-scroll::-webkit-scrollbar-thumb {
        width: 0.5em;
        border-radius: 0.5em;
        background-color: #d7d7d7;
    }
}
/*min-width-992px END*/

.owl-item .item {
    margin: 10px 2px 10px 2px;
}
.trd-contact-infos
{
    padding-top: 18px
}
.lazy {
    display: block !important;
}
.main-body
{
    padding-top: 100px
}
.d-block
{
    display: block
}
#ProductSpecification tbody > tr > th, #ProductSpecification tbody > tr > td {
    text-align: left;
    font-size: 16px;
    padding: 8px 0 0 0;
    vertical-align: baseline;
}
#ProductSpecification tbody > tr > td {
    color: #707070;
    font-weight: 500 !important
}
#ProductSpecification tbody > tr > th
{
    font-weight: 400 !important
}
.cursor-pointer
{
    cursor: pointer
}
.whatsapp .fa-btn {
    color: #fff !important;
    background: #25d366;
}
.facebook .fa-btn {
    color: #fff !important;
    background: #3b5998;
}
.twitter .fa-btn {
    color: #fff !important;
    background: #00aced;
}
.addToCart .fa-btn {
    color: #032d0c !important;
    background: #fff;
    border: 1px solid #032d0c;
    padding-top: 6px !important;
}
.addToCart .fa-btn:hover {
    color: #fff !important;
    background: #032d0c;
}
.remove .fa-btn {
    color: #a94442 !important;
    background: #fff;
    border: 1px solid #a94442;
    padding-top: 6px !important;
}
.remove .fa-btn:hover {
    color: #fff !important;
    background: #a94442;
}
.wishlist .fa-btn {
    color: #032d0c !important;
    background: #fff;
    border: 1px solid #032d0c;
    padding-top: 5px !important;
}
.wishlist .fa-btn:hover {
    color: #fff !important;
    background: #032d0c;
}
.fa-btn {
    border-radius: 50%;
    -webkit-box-shadow: none;
    width: 35px;
    height: 35px;
    padding: 0px;
    border: none;
    font-size: 20px;
    text-align: center;
    padding-top: 7px;
}
.table-no-border> tbody > tr > td,
.table-no-border> tbody > tr > th,
.table-no-border> tfoot > tr > td,
.table-no-border> tfoot > tr > th,
.table-no-border> thead > tr > td,
.table-no-border> thead > tr > th {
    border: none;
}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: middle;
    border-top: 0px solid #ddd;
}
.table.cart-table > tbody > tr > td, .table > tbody > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    padding: 5px 15px 5px 15px !important;
    text-align: left;
}
.table.cart-table tfoot > tr > td {
    padding: 10px 15px 0px 15px !important;
}
button.remove-cart-product {
    background-color: #fff;
    border: none;
    color: red;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
}
button.remove-cart-product:hover {
    background-color: red;
    color: #fff;
}
.text-light
{
    color: #B1B1B1 !important
}
.cart-table tbody > tr, .cart-table tfoot {
    border-top: 1px solid #B1B1B1;
}
.cart-table {
    width: -webkit-fill-available !important;
}
.form-control#cart-table-qty{
    width: auto !important
}
.w-100
{
    width: 100% !important
}
@media (min-width: 992px)
{
    .cart-sticky 
    {
        position: sticky;
        top: 110px;
    }
    .banner-Offer-image img {
        height: 260px
    }
}
@media (max-width: 767px)
{
    /*.xs-nav .header-xs-logo {
        width: 37px;
        height: 34px;
        margin-top: 7px;
    }*/
    .xs-nav .header-xs-logo {
      /*  width: 95px;
        height: 14px;*/
      max-height:46px !important;
        margin-top: -10px;
    }
    .pb-xs-15
    {
        padding-bottom: 15px
    }
    /*.cart-xs-border
    {
        border-right: 1px solid #f3f7f8
    }*/    
    
    .product-card-desc .cart-product-name {
        line-height: 16px !important;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        height: auto;
        font-weight: 400;
        font-size: 14px;
        font-style: normal;
        cursor: pointer;
        margin-bottom: 5px;
        text-align: left;
    }
    .cart-xs .section-bg-white
    {
        padding-bottom: 0px !important
    }
    .cart-xs .btn-border-top {
        border-top: 1px solid #eeeeee;
        margin-top: 8px
    }
    .cart-xs .btn-border-right {
        border-right: 1px solid #eeeeee;
    }    
}
img.disabled {
    opacity: 0.5;
}
.v-align-top {
    vertical-align: top !important;
}
.order-section .panel-body {
    border: 2px solid #f5f5f5
}
.text-decoration-none
{
    text-decoration: none !important
}
.w-auto
{
    width: auto !important
}
.offer-top {
    position: absolute;
    top: 13px;
    right: 8px;
    color: #a94442
}
.product-col .offer-top {
    top: 4px !important;
}
.owl-item .item .product-card, .product-col .product-card {
    padding-bottom: 2px !important
}
.designcheckbox input[type="checkbox"] {
    margin: 5px 2px;
    line-height: normal;
    height: 14px;
    width: 14px;
    position: absolute;
    background-color: #fff;
    outline: 2px solid #032d0c;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    box-shadow: none;
}
.designcheckbox input:checked {
    background: #032d0c;
    color: #fff;
}

.designcheckbox input::before {
    content: "\2713";
    width: 14px;
    height: 14px;
    font-size: 15px;
    padding: 1px 0 0 1px;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1;
    transform: scale(0) translate(-50%,-50%);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    outline: 2px solid #032d0c;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    box-shadow: none;
    font-weight: 900;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
}
.designcheckbox input:checked::before {
    transform: scale(1) translate(-50%,-50%);
}

.designcheckbox tr td label {
    margin: 3px 26px !important;
    cursor: pointer;
    font-weight: 500;
}
.v-hidden
{
    visibility: hidden
}
.sp-horizontal .sp-arrows {
    top: 75% !important;
}
span.notification
{
    color: #fff !important;
    background: #223766;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: inline-block;
    height: 20px;
    margin-right: 5px;
    text-align: center;
    width: 20px;
    align-items: center;
    position: absolute;
    top: 7px;
    right: 22px;
}
.badge-wrapper {
    position: relative;
}

.badge-wrapper .badge {
    position: absolute;
    top: -12px;
    right: -8px;
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #032d0c;
    padding: 1.5px 3.5px !important;
    border: 1px solid #fff;
}
.h-align-start
{
    display: flex;
    justify-content: start
}

/*left Menu Sidebar  css START */
.body-opacity {
    opacity: 0.2;
    pointer-events: none;
    -ms-content-zooming: none;
    touch-action: none;
    overflow-y: hidden;
    
}
.sidebar-left ul.nav {
    border-bottom: 1px solid #eeeeee
}
.sidebar-left ul.nav:last-child {
    border-bottom: 0px solid #eeeeee
}
.sidebar-left ul li img.user-xs {
    height: 50px;
}
.sidebar-left li a {
    font-size: 16px;
}
.sidebar-left ul.nav .menu-title a
{
    padding-bottom: 0px
}
.sidebar {
    padding: 0px;
    background-color: #fff;
    border-right: 1px solid #eeeeee;
}
/* All the default sidebar styles */
/* toggle button settings */
/* Note: this disables navbar-toggle class hide function. set visibility with the boostrap visible/hidden classes */
.navbar.navbar-static .navbar-header {
    float: left;
}

.navbar .navbar-toggle.toggle-left {
    float: left;
    margin-left: 15px;
}

.navbar .navbar-toggle.toggle-right {
    float: right;
    margin-right: 15px;
}

.navbar .navbar-toggle.toggle-sidebar, [data-toggle="sidebar"] {
    display: block;
}

/* sidebar settings */
.sidebar {
    position: fixed;
    display: block;
    top: 0px;
    bottom: 0;
    z-index: 1000;
    min-height: 100%;
    max-height: none;
    overflow: auto;
}

.sidebar-left {
    left: 0;
}

.sidebar-right {
    right: 0;
}

/* css to override hiding the sidebar according to different screen sizes */
.row .sidebar.sidebar-left.sidebar-xs-show {
    left: 0;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -moz-transform: none;
}

/*right sidebar is untested */
.row .sidebar.sidebar-right.sidebar-xs-show {
    right: 0;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -moz-transform: none;
}

@media (min-width: 768px) {
    .row .sidebar.sidebar-left.sidebar-sm-show {
        left: 0;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        -moz-transform: none;
    }

    /*right sidebar is untested */
    .row .sidebar.sidebar-right.sidebar-sm-show {
        right: 0;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        -moz-transform: none;
    }
}

@media (min-width: 992px) {
    .row .sidebar.sidebar-left.sidebar-md-show {
        left: 0;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        -moz-transform: none;
    }

    .row .sidebar.sidebar-right.sidebar-md-show {
        right: 0;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        -moz-transform: none;
    }
}

@media (min-width: 1170px) {
    .row .sidebar.sidebar-left.sidebar-lg-show {
        left: 0;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        -moz-transform: none;
    }

    .row .sidebar.sidebar-right.sidebar-lg-show {
        right: 0;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        -moz-transform: none;
    }
}

/* animation class - optional: without it the sidebar would just pop in and out*/
.sidebar-animate {
    -webkit-transition: -webkit-transform 300ms ease;
    -moz-transition: -moz-transform 300ms ease;
    transition: transform 300ms ease;
}

/* Left panel positioning classes */
.sidebar.sidebar-left {
    -webkit-transform: translate3d(-100%,0,0);
    -moz-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
}

.sidebar.sidebar-left.sidebar-open {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -moz-transform: none;
}

/* TODO: TEST THIS! Right panel positioning classes*/
.sidebar.sidebar-right {
    -webkit-transform: translate3d(100%,0,0);
    -moz-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
}

.sidebar.sidebar-right.sidebar-open {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -moz-transform: none;
}

/*left Menu Sidebar  css END */
.address-heading {
    display: flow-root !important;
}

/*ProductImageGalleryCss START*/
/*.lSGallery li a
{
    margin: 10px 10px 0 10px
}*/
.vrmedia-gallery {
    max-width: 567px;
    margin: 0rem auto;
    background: white;
    padding: 0px;
    /*box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;*/
    border-radius: 8px;
    backdrop-filter: opacity(0.5)
}

.vrmedia-gallery img {
    object-fit: cover;
    width: 100%
}

.vrmedia-gallery .lSGallery {
    display: inline-flex
}

.vrmedia-gallery .lSGallery li {
    border-radius: 0px !important
}

.vrmedia-gallery .lSGallery li.active > a > img {
    border: 2px solid #032d0c;
    /*padding: 2px;*/
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border: 5px solid #fff !important
}

    /*ProductImageGalleryCss END*/
@media (min-width: 992px) {
    .h-md-scroll ul {
        display: inline-flex;
        width: 100%;
        overflow-x: auto;
        border-bottom: none;
        -ms-overflow-style: none;
        overflow: -moz-scrollbars-none;
    }

        .h-md-scroll ul > li > a {
            float: left;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-right: 2px;
            text-align: center;
            /* width: 56px; */
        }

    .pt-md-15 {
        padding-top: 15px !important
    }

    .pb-md-10 {
        padding-bottom: 10px !important
    }

    .pb-md-5 {
        padding-bottom: 5px !important
    }

    .h-md-scroll ul::-webkit-scrollbar {
        width: 0.8rem;
        height: 0.5rem;
    }

    .h-md-scroll ul::-webkit-scrollbar-corner {
        background-color: transparent;
    }

    .h-md-scroll ul::-webkit-scrollbar-thumb {
        background-color: #a9a9a9;
        border-radius: 10px;
        padding: 0 3px;
        border-right: 0px solid transparent;
        border-left: 0px solid transparent;
        background-clip: padding-box;
    }

    .h-md-scroll ul::-webkit-scrollbar-track {
        background-color: transparent;
        border-radius: 10px;
    }

    .h-md-scroll .category-card img {
        height: 100px;
    }
}
.mt-10{
    margin-top: 10px !important
}
.fs-18
{
    font-size: 18px;
}
.btn-affiliate {
    background: #ffffff !important;
    color: #032d0c !important;
    border-color: #ffffff !important
}
.btn-affiliate:hover
{
    background: #74bca2 !important
}