/*********embeded fonts**************/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "Myriad Pro";
  src: url("MyriadPro-Regular.woff2") format("woff2"),
    url("MyriadPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-default: "Jost", sans-serif;
  --font-secondary: "Jost", sans-serif;
  --fontawesome: "Font Awesome 5 Pro";
  --black: #000000;
  --dark: #1f4e3d;
  --white: #ffffff;
  --color-primary: #1a582a;
  --color-secondary: #4ea162;
  --color-heading: #04000b;
  --color-paragraph: #787878;
  --box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
  --box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
  --bg-gray: #eff2f5;
  --bg-gradient: linear-gradient(
    97deg,
    #49a760 50%,
    rgba(252, 197, 27, 1) 100%
  );
}
/*********embeded fonts**************/
/*========================Global=====================*/
body {
  background: #ffffff;
  font-family: "Jost", sans-serif;
  color: #000000;
}
a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover,
a:focus,
a.active {
  color: #175b2a;
}
ul {
  padding: 0;
  margin: 0;
}
/*========================Global=====================*/

/*=================Header===========================*/

/****************Nav****************/
.navbar-light .navbar-nav .nav-link {
  font-weight: 400;
  color: #000000;
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #e06b5a;
}
/****************Nav****************/
/*=================Header===========================*/

/****************Banner****************/
.banner {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  padding: 250px 0;
}
.light-orange-sec {
  background: #e06b5a;
  max-width: 370px;
  font-size: 24px;
  text-transform: capitalize;
  line-height: 75px;
  border-radius: 10px;
  color: #fff;
  font-weight: 300;
  margin: 0 auto;
}
.search-section {
  padding: 10px;
  background: rgba(153, 153, 157, 0.7);
  border-radius: 10px;
}
.custom-search {
  background: none;
  border: none;
  font-family: inherit;
  color: #ffffff;
}
.custom-search:focus,
.custom-search:active {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  color: #ffffff;
}
.custom-search::placeholder {
  color: #ececec;
}
.double {
  font-size: 20px;
  font-weight: 500;
}
.btn-orange {
  background: #e06b5a;
  border-radius: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.btn-orange:hover {
  color: #f7cac4;
}
.btn-orange:focus {
  box-shadow: none;
}
.border-right-grey {
  border-right: 1px solid #a8a7a6;
  margin-top: 10px;
}
/****************Banner****************/

/***************Img Box****************/
.img-box {
  width: 33.33%;
}
/***************Img Box****************/
.head-txt {
  position: relative;
}
.head-txt:before {
  content: "";
  border-top: 5px solid #000;
  max-width: 100px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  top: 0px;
}
.head-txt:after {
  content: "";
  border-bottom: 5px solid #000;
  max-width: 100px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  bottom: 0px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 1rem;
}
.grid > div {
  background: #f3f3f3;
  padding: 1rem;
  display: grid;
  place-items: center;
}
.grid > div:before {
  content: "";
  display: block;
  padding-bottom: 100%;
  grid-area: 1 / 1 / 2 / 2;
}
.grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  grid-area: 1 / 1 / 2 / 2;
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #FFF;
  z-index: 999;
}
.header .header-top .navbar-brand {
  padding: 0px;
  margin: 0px;
  text-decoration: none;
  white-space: nowrap;
  display: block;
}
header img.navbar-brand {
  display: block;
  height: 82px;
  width: auto;
}
.navbar-light .navbar-nav .nav-link {
  padding: 0px !important;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #59d8fd;
}

.banner-section {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.banner-pic {
  width: 100%;
  height: auto;
  display: flex;
}
.banner-pic img {
  width: 100%;
  height: auto;
  display: block;
}
/* .banner-content{
    width: 100%;
    text-align: center;
    display: block;
    position: absolute;
    z-index: 3;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);

} */
.banner-content-color {
  width: 100%;
  display: block;
  padding: 35px;
  box-sizing: border-box;
  /* background-color: #59d8fd; */
  background: rgba(210, 243, 252, 1);
  background: -moz-linear-gradient(
    left,
    rgba(210, 243, 252, 1) 0%,
    rgba(89, 215, 253, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(210, 243, 252, 1)),
    color-stop(100%, rgba(89, 215, 253, 1))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(210, 243, 252, 1) 0%,
    rgba(89, 215, 253, 1) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(210, 243, 252, 1) 0%,
    rgba(89, 215, 253, 1) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(210, 243, 252, 1) 0%,
    rgba(89, 215, 253, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(210, 243, 252, 1) 0%,
    rgba(89, 215, 253, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d2f3fc', endColorstr='#59d7fd', GradientType=1 );
}

.banner-content h1.text-white {
  font-size: 36px !important;
}
.banner-content .search-section {
  padding: 10px 15px !important;
  background: rgba(18, 71, 122, 0.9);
  border-radius: 10px;
}
.banner-content .btn-orange {
  background: #59d8fd;
  border-radius: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.deep-blue-sec {
  background: #12477a;
  max-width: 370px;
  font-size: 24px;
  text-transform: capitalize;
  line-height: 75px;
  border-radius: 10px;
  color: #fff;
  font-weight: 300;
  margin: 0 auto;
}
.btn-light-blue {
  background: #59d8fd;
  border-radius: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.justify-nav-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0px;
  padding: 0px;
  /*-webkit-box-pack: justify!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between!important;*/
}
.desktop-nav {
  width: 100%;
  display: block;
  padding: 0;
}
.desktop-nav > ul > li > a {
  font-size: 14px;
  font-weight: 400;
  color: #12477a;
  text-transform: uppercase;
  width: 100%;
  display: block;
  padding: 12px 15px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.desktop-nav > ul > li:hover > a,
.desktop-nav > ul > li.active > a {
  color: #fff;
  background-color: #165a29;
}
.ad-section {
  padding-top: 35px;
  padding-bottom: 35px;
}
.white-img-box {
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
  cursor: pointer;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 3px 10px #ebebeb;
  border-radius: 5px;
  transition: all 0.3s;
  overflow: hidden;
}
.white-img-box img {
  border-radius: 5px;
  transition: all 0.3s;
}
.white-img-box:hover img {
  transform: scale(1.2);
}
.categories-section {
  padding-top: 35px;
  padding-bottom: 35px;
}
.head-txt {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  margin: 0 0 25px 0;
}
.head-txt span {
  color: #cf3924;
}
.cata-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  align-items: center;
  justify-content: center;
}
.cata-ul > li {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding: 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66666%;
  flex: 0 0 16.66666%;
  max-width: 16.66666%;
}
.cata-ul > li a {
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  color: #12477a;
  box-shadow: 0 3px 10px #ebebeb;
  border-radius: 5px;
  transition: all 0.3s;
}
.cata-ul > li a:hover {
  box-shadow: 0 4px 15px #b6b6b6;
}
.cata-ul > li figure {
  width: 70px;
  height: auto;
  display: block;
  padding: 0px;
  margin: 0 auto 5px;
}
.cata-ul > li figure img {
  width: 100%;
  height: 73px;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}
.location-section {
  padding-top: 35px;
  padding-bottom: 35px;
  background: url(../images/location-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  /* background-attachment: fixed; */
}
.cata-ul.five > li {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding: 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.cata-ul.five > li a {
  background: rgba(255, 255, 255, 0.7);
  border: #909497 1px solid;
}
.cata-ul.five > li figure {
  width: 100%;
  height: auto;
  display: block;
  padding: 0px;
  margin: 0 auto 5px;
}
.cata-ul.five > li figure img {
  box-sizing: border-box;
  height: 100px;
  border: #fff 1px solid;
  padding: 10px;
  border-radius: 0px;
  image-rendering: -webkit-optimize-contrast;
}
.work-section {
  padding-top: 35px;
  padding-bottom: 35px;
}
.how-work-ul {
  width: 100%;
  height: auto;
  display: flex;
  padding: 0px;
  margin: 0px;
}
.how-work-ul > li {
  width: 25%;
  height: auto;
  display: block;
  padding: 0 35px;
  margin: 0px;
  float: left;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.how-work-ul > li figure {
  width: 142px;
  display: block;
  margin: 0 auto 20px;
  position: relative;
}
.how-work-ul > li figure span {
  width: 100%;
  height: 127px;
  display: block;
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 0px;
  font-size: 72px;
  font-weight: 700;
  color: #12477a;
  text-align: center;
  line-height: 127px;
}
/* .how-work-ul > li figure:before{
    content: '';
    width: 100%;
    height: 2px;
    background-color: #000;
    position: absolute;
    z-index: 1;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.how-work-ul > li figure:after{
    content: '';
    width: 100%;
    height: 2px;
    background-color: #000;
    position: absolute;
    z-index: 1;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.how-work-ul > li:last-child figure:after,
.how-work-ul > li:nth-child(1) figure:before{
    display: none;
} */
.how-work-ul > li figcaption {
  width: 100%;
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #12477a;
  margin: 0px;
}

.products-section {
  padding-top: 35px;
  padding-bottom: 35px;
  background-color: #edfafe;
}
.product-block {
  width: 100%;
  height: auto;
  display: block;
  background-color: #fff;
  box-sizing: border-box;
  padding: 12px;
  border: #ebecf0 1px solid;
  border-radius: 5px;
  margin: 15px 0;
}
.product-block figure {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 10px 0;
  border-radius: 5px;
  overflow: hidden;
}
.product-block figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s;
}
.product-block:not(.no-hover):hover figure img {
  transform: scale(1.2);
}
.product-block:not(.no-hover):hover {
  box-shadow: 0 4px 15px #b6b6b6;
}
.product-block figcaption {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
.product-block figcaption h1 {
  font-size: 16px;
  font-weight: 600;
  color: #12477a;
  margin: 0 0 10px 0;
}
.product-block figcaption p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin: 0 0 10px 0;
}
.product-block figcaption span {
  font-size: 14px;
  font-weight: 400;
  color: #59d8fd;
}
.popular-section {
  padding-top: 35px;
  padding-bottom: 35px;
}
.popular-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0px;
  padding: 0px;
  /* -webkit-box-align: center!important;
    -ms-flex-align: center!important;
    align-items: center!important; */
}
.popular-ul > li {
  position: relative;
}
.popular-ul > li:nth-child(1) {
  width: 378px;
  height: auto;
}
.popular-ul > li:nth-child(1) a {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: absolute;
  z-index: 2;
  left: 0xp;
  top: 0px;
  overflow: hidden;
}
.popular-ul > li:nth-child(1) a img {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popular-ul > li:nth-child(1) a:hover img {
  transform: scale(1.2);
}
.popular-ul > li:nth-child(2) {
  width: calc(100% - 378px);
  height: auto;
  box-sizing: border-box;
  padding: 0px;
}
.popular-ul > li > ul {
  width: 100%;
  height: auto;
  display: block;
  padding: 0px;
  margin: 0px;
}
.popular-ul > li > ul > li {
  width: 50%;
  height: auto;
  display: block;
  padding: 10px;
  margin: 0px;
  box-sizing: border-box;
  float: left;
}
.pro-thum {
  width: 100%;
  height: auto;
  display: flex;
}
.pro-thum figure {
  width: 100px;
  height: auto;
  display: block;
  float: left;
  padding: 0px;
  margin: 0px;
}

.pro-thum figcaption {
  width: calc(100% - 100px);
  height: auto;
  display: block;
  box-sizing: border-box;
  float: left;
  padding: 0 0 0 10px;
  margin: 0px;
}
.pro-thum figcaption a {
  width: 100%;
  display: block;
  font-size: 12px;
  line-height: normal;
}
.pro-thum figcaption a strong {
  font-size: 14px;
}
.pro-loop {
  width: 100%;
  height: auto;
  display: inline-block;
  margin: 0 0 35px 0;
}
.pro-loop:last-child {
  margin: 0px;
}

footer {
  background-color: #f6f6f6;
}
.popular-section .product-block figcaption a {
  font-size: 14px;
}
.featured-section {
  padding-top: 35px;
  padding-bottom: 35px;
  background-color: #edfafe;
}
.companies-infos {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 0 4px 0;
}
.companies-infos:last-child {
  margin: 0px;
}
.companies-infos span {
  width: 20px;
  height: 20px;
  display: block;
  float: left;
  margin: 0 10px 0 0;
}
.companies-infos span img {
  width: 100%;
  height: 20px;
  display: block;
  object-fit: contain;
}
.product-block.no-hover {
  box-shadow: 0 3px 10px #ebebeb;
  border: none !important;
}
.banner-content-color-noo.text-center {
  text-align: left !important;
}
.banner-content-color-noo .deep-blue-sec {
  margin: 0;
  text-align: center !important;
}

.banner-content {
  width: calc(100% - 200px);
  text-align: center;
  display: block;
  position: absolute;
  z-index: 3;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-content h2 {
  font-size: 84px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
.banner-content h3 {
  font-size: 50px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  margin: 0;
}
.banner-content-color-noo {
  width: 100%;
  display: block;
  padding: 0 35px;
  box-sizing: border-box;
  text-align: left;
}
.banner-content .search-section {
  padding: 10px 15px !important;
  background: rgba(18, 71, 122, 0.9);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.owl-theme#banner-carousel .owl-nav {
  margin: 0px;
  position: absolute;
  width: 100%;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
.owl-theme#banner-carousel .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 0px;
  padding: 0px;
  background: transparent;
  display: block;
  border-radius: 0px;
}
.owl-theme#banner-carousel .owl-nav .owl-prev {
  float: left;
}
.owl-theme#banner-carousel .owl-nav .owl-next {
  float: right;
}
.text-box-link {
  width: auto;
  display: flex;
  box-sizing: border-box;
  padding: 12px 25px;
  background-color: #165a29;
  border: none;
  border-radius: 0px;
  transition: all 0.3s;
}
.text-box-link span {
  width: 22px;
  height: 22px;
  display: block;
  float: left;
  margin: 0 7px 0 0;
}
.text-box-link span img {
  width: 100%;
  height: 22px;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}
.text-box-link div {
  width: calc(100% - 40px);
  float: left;
  white-space: nowrap;
  color: #fff;
  margin-top: 1px;
  font-size: 14px;
}
.text-box-link div small {
  font-size: 12px;
  width: 100%;
  display: inline-block;
}
.text-box-link.border {
  background-color: #fff;
  border: #1a582a 1px solid !important;
}
.text-box-link.border div {
  color: #1a582a;
}
/*.text-box-link:hover{
    box-shadow: 0 3px 10px #ebebeb;
}*/

footer {
  width: 100%;
  height: auto;
  padding: 45px 0 25px;
  background-color: #f6f6f6;
}
footer h2 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin: 0 0 15px 0;
}
footer p {
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  margin: 0 0 15px 0;
}
.footer-newsletter {
  width: 100%;
  display: flex;
  position: relative;
  margin: 0 0 15px 0;
}
.footer-newsletter input {
  width: calc(100% - 45px);
  display: block;
  padding: 0 10px;
  box-sizing: border-box;
  line-height: 40px;
  border: none;
  background-color: #fff;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
.footer-newsletter button {
  width: 45px;
  display: block;
  padding: 0 10px;
  box-sizing: border-box;
  line-height: 40px;
  border: none;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}
.footer-social {
  width: 100%;
  display: block;
  position: relative;
}
.footer-social h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px 0;
}
.footer-social ul {
  width: 100%;
  display: inline-flex;
  padding: 0px;
  margin: 0px;
}
.footer-social ul li {
  margin-right: 10px;
}
.footer-social ul li:last-child {
  margin: 0px;
}
.footer-social ul li a {
  width: 30px;
  height: 30px;
  display: block;
  text-align: center;
  line-height: 30px;
  color: #000;
  font-size: 18px;
  border-radius: 50%;
}
.footer-social ul li a:hover {
  background-color: #d3d2d2;
}
footer ul {
  padding: 0;
  margin: 0;
}
footer ul li {
  margin-bottom: 5px;
}
footer ul li:last-child {
  margin: 0;
}
footer ul li a {
  font-size: 14px;
}
.text-copy {
  text-align: center;
  font-size: 12px;
}
.breadcrumb-section {
  background-color: #f2f3f7;
  padding: 10px 0;
  border-bottom: 1px solid #dee2e6 !important;
}
.breadcrumb-section ol {
  padding: 0px;
  margin: 0px;
}
.listing-section {
  background-color: #f2f3f7;
  padding-top: 35px;
  padding-bottom: 35px;
}
.widget_title {
  margin-bottom: 15px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
  padding-bottom: 0px;
  border-bottom: 1px solid #ddd;
  position: relative;
  line-height: 32px;
  cursor: pointer;
  color: #12477a;
}
.widget_title .filter-arrow {
  width: 32px;
  height: 32px;
  display: block;
  float: right;
  text-align: center;
  line-height: 32px;
  color: #12477a;
  font-size: 18px;
}

.search_form form {
  position: relative;
}
.dropdown-main input,
.form-control {
  color: #000;
  box-shadow: none;
  height: 50px;
  padding: 8px 15px;
}
.btn {
  border-width: 1px;
  cursor: pointer;
  line-height: normal;
  padding: 12px 35px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.search_form form input {
  height: 50px;
  padding: 5px 60px 5px 20px;
}
.search_form .icon_search {
  position: absolute;
  right: 18px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-left: 1px solid #ddd;
  border-radius: 0;
  padding: 0 0 0 15px;
}
.sidebar .widget + .widget {
  border: 1px solid #ddd;
  margin-top: 15px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 3px 10px #ebebeb;
  border-radius: 0.25rem;
}
.widget_categories li,
.widget_archive li {
  padding-bottom: 10px;
  list-style: none;
}
.widget_categories li a,
.widget_archive li a {
  position: relative;
}
.widget_categories li a:before,
.widget_archive li a:before {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  height: auto;
  line-height: normal;
  margin-right: 10px;
}
.custome-radio .form-check-input,
.custome-checkbox .form-check-input {
  display: none;
}
.custome-radio .form-check-label,
.custome-checkbox .form-check-label {
  position: relative;
  cursor: pointer;
  color: #292b2c;
}
.custome-checkbox .form-check-label:before {
  content: "";
  border: 2px solid #ced4da;
  height: 17px;
  width: 17px;
  margin: 0 8px 0 0;
  display: inline-block;
  vertical-align: middle;
}
.custome-checkbox .form-check-label span {
  vertical-align: middle;
}
.list_brand li {
  list-style: none;
  margin-bottom: 10px;
}

.shorting_icon {
  font-size: 18px;
  margin-right: 10px;
  height: 45px;
  width: 45px;
  float: left;
  text-align: center;
  line-height: 45px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  display: block;
}
.shorting_icon .ti-layout-list-thumb {
  font-size: 24px;
  line-height: 45px;
}
.shorting_icon.active {
  background-color: #1a582a;
  color: #fff;
  border-color: #1a582a;
}
.product_header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 3px 10px #ebebeb;
  box-sizing: border-box;
  padding: 8px 10px;
  border-radius: 0.25rem;
  margin-bottom: 15px;
}
.product_header_right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.products_view {
  display: inline-block;
  vertical-align: middle;
}
.form-control {
  color: #000;
  box-shadow: none;
  height: 50px;
  padding: 8px 15px;
}
.form-control:focus {
  color: #000;
  box-shadow: none;
  height: 50px;
}
.form-control-sm,
.form-control-sm:focus,
.custom_select select.form-control-sm,
.custom_select select.form-control-sm:focus {
  height: 45px;
}
select option {
  color: #000;
}
.custom_select {
  position: relative;
}
.custom_select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #ced4da;
  padding: 8px 35px 8px 15px;
  width: 100%;
  height: 50px;
}
.custom_select:before {
  content: "\f107";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  display: block;
  color: #848484;
  top: 50%;
  right: 15px;
  font-weight: 900;
  pointer-events: none;
  font-size: 12px;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.page-link {
  color: #59d8fd;
}
.page-item.active .page-link {
  background-color: #59d8fd;
  border-color: #59d8fd;
}
.pagination-section .pagination {
  float: right;
}
/* .product-block figcaption span{
    width: 100%;
    display: flex;
} */
.product-block figcaption hr {
  margin: 10px 0;
  color: inherit;
  background-color: #12477a;
  border: 0;
  opacity: 0.4;
}
.read-more {
  width: auto;
  display: inline-block;
  font-size: 14px;
  color: #12477a !important;
  padding: 6px 15px;
  border: #12477a 1px solid;
  border-radius: 5px;
}
.serach-heading {
  margin-bottom: 15px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  line-height: 45px;
  padding-left: 15px;
  color: #12477a;
  justify-content: flex-start;
}
.product_header h3 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
  margin: 0px;
}

.product-listing {
  width: 100%;
  display: block;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0px;
  border: #ebecf0 1px solid;
  border-radius: 5px;
  margin: 15px 0;
  box-shadow: 0 3px 10px #ebebeb;
  border: none !important;
}
.product-listing .product_info {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
  padding-left: 15px !important;
}
.product-listing .product_info h1 {
  font-size: 20px;
  font-weight: 600;
  color: #12477a;
  margin: 0 0 5px 0;
}
.product-listing .product_info h1 a {
  color: #12477a;
}
.product-listing .product_info .brand {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin: 0 0 1px 0;
}
.product-listing .product_info .price-link a {
  font-size: 16px;
  font-weight: 400;
  color: #1a582a;
  text-decoration: underline;
}
.product-listing .product_info p {
  font-size: 12px;
  font-weight: 400;
  color: #4a4a4a;
  margin: 0 0 5px 0;
}
.product-listing .product_img .img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.product-listing .seller_info {
  background-color: #e6f9fe;
  padding: 15px !important;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.product-listing .seller_info h2 {
  font-size: 18px;
  font-weight: 600;
  color: #12477a;
  margin: 0 0 5px 0;
}
.product-listing .match-height {
  margin-bottom: 15px;
}
.seller_info .companies-infos {
  width: 100%;
  display: inline-block;
  margin: 0 0 5px 0;
  font-size: 12px;
}
.btn-blue {
  color: #fff !important;
  padding: 6px 15px;
  border: #12477a 1px solid !important;
  background-color: #12477a !important;
}
.btn-light-blue {
  color: #fff !important;
  padding: 6px 15px;
  border: #1a582a 1px solid;
  background-color: #1a582a;
}
.mt-0 {
  margin-top: 0px !important;
}
.related-section {
  padding-top: 35px;
  padding-bottom: 35px;
  background-color: #fff;
}
.section-heading {
  margin: 0 0 25px 0;
  font-weight: 600;
  font-size: 22px;
  position: relative;
  color: #12477a;
}
.owl-theme.default-nav .owl-nav {
  margin: 0px;
}
.owl-theme.default-nav .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 0px;
  padding: 0px;
  background: transparent;
  display: block;
  border-radius: 0px;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 119px;
}
.owl-theme.default-nav .owl-nav .owl-prev {
  float: left;
  left: 0px;
}
.owl-theme.default-nav .owl-nav .owl-next {
  float: right;
  right: 0px;
}
#popular-products .item {
  box-sizing: border-box;
  padding: 1px;
}
.product-photo-wapper {
  width: 45%;
  display: block;
  float: left;
}
.product-info-wapper {
  width: 55%;
  display: block;
  float: left;
  box-sizing: border-box;
  padding-left: 30px;
}
.product-details-wapper {
  width: 100%;
  height: auto;
  display: flex;
  background-color: #fff;
  box-sizing: border-box;
  padding: 12px;
  border: #ebecf0 1px solid;
  border-radius: 5px;
  margin: 0;
  box-shadow: 0 3px 10px #ebebeb;
}
.product-info-wapper h1 {
  font-size: 24px;
  font-weight: 600;
  color: #12477a;
  margin: 0 0 15px 0;
}
.product-info-wapper .brand {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin: 0 0 5px 0;
}
.product-info-wapper .price-link {
  margin: 0 0 15px 0;
}
.product-info-wapper .price-link a {
  font-size: 16px;
  font-weight: 400;
  color: #1a582a;
  text-decoration: underline;
}
.seller_info_side {
  width: 100%;
  height: auto;
  display: inline-block;
  background-color: #fff;
  box-sizing: border-box;
  padding: 12px;
  border: #ebecf0 1px solid;
  /*    border-radius: 5px;*/
  margin: 0;
  /*    box-shadow: 0 3px 10px #ebebeb;*/
  border: #ddd 1px solid;
}
.seller-top {
  width: 100%;
  display: inline-block;
  text-align: center;
  margin: 0 0 15px 0;
}
.seller-top figure {
  width: 80px;
  height: 80px;
  box-sizing: border-box;
  border: #12477a 1px solid;
  margin: 0 auto 10px;
  border-radius: 50%;
}
.seller-top figure img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  box-sizing: border-box;
  padding: 10px;
}
.seller-top h2 {
  font-size: 18px;
  margin: 0px;
}
/* .seller-top .companies-infos{
    display: inline-flex;
} */
.seller-top .companies-infos span {
  display: inline;
  float: none;
}
.link {
  width: 100%;
  display: inline-block;
  margin: 25px 0;
}
.action {
  width: 100%;
  display: inline-block;
}
.action a {
  margin-bottom: 15px;
  line-height: 36px;
  font-size: 18px;
  font-weight: 400;
}
.action a:last-child {
  margin-bottom: 0px;
}
.read-more:hover {
  box-shadow: 0 3px 10px #ebebeb;
}
.mt-35 {
  margin-top: 35px;
}
.resp-tabs-list li {
  font-size: 20px !important;
}
.sticky {
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: 15px;
}
.popular-section {
  background-color: #f2f3f7;
}
.pro-loop h3 {
  font-size: 23px;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 20px;
  margin: 0 0 15px 0;
}
.cata-lists {
  width: 100%;
  height: auto;
  display: inline-block;
}
.cata-lists > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  align-items: center;
/*  justify-content: center;*/
}
.cata-lists > ul > li {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  margin-top: 15px;
  margin-bottom: 15px;
}
.pro-thum figcaption a {
  margin-bottom: 3px;
}
.pro-thum figcaption a:nth-child(1) {
  margin-bottom: 5px;
}
.cata-lists-action {
  width: 100%;
  height: auto;
  display: inline-block;
  text-align: center;
  margin-top: 15px;
  border-top: #ebecf0 1px solid;
  padding-top: 15px;
}
.pro-loop {
  background-color: #fff;
  box-sizing: border-box;
  padding: 30px;
  border: #ebecf0 1px solid;
  border-radius: 5px;
  margin: 15px 0;
  box-shadow: 0 3px 10px #ebebeb;
  margin-bottom: 30px;
}
.pro-thum figure {
  box-sizing: border-box;
  border: #12477a 1px solid;
}
.cata-lists:not(.sub-cata-list) > ul > li {
  display: none;
}
.show-less {
  display: none;
}
.sub-cata-list .pro-thum {
  display: inline-block;
  text-align: center;
}
.sub-cata-list .pro-thum figure {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 15px;
  float: none;
  padding: 0px;
}
/* .sub-cata-list .pro-thum figure .img-fluid {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
} */
.sub-cata-list .pro-thum figcaption {
  width: 100%;
  height: auto;
  display: inline-block;
  box-sizing: border-box;
  float: none;
  padding: 0;
  margin: 0px;
}
.cata-lists.sub-cata-list > ul > li {
  -ms-flex: 0 0 16.6666%;
  flex: 0 0 16.6666%;
  max-width: 16.6666%;
}
.sub-cata-list .pro-thum > a {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 15px;
  transition: all 0.3s;
}
.sub-cata-list .pro-thum > a:hover {
  box-shadow: 0 4px 15px #b6b6b6;
}
.sub-cata-list .pro-thum > a > figure {
  border: none;
}
.sub-cata-list .pro-thum > a > figcaption span {
  width: 100%;
  display: inline-block;
  font-size: 12px;
}
.location-block {
  width: 300px;
  display: inline-flex;
  padding-right: 15px;
  border-right: #ced4da 1px solid;
}
.location-city-block {
  width: calc(100% - 300px);
  box-sizing: border-box;
  padding: 0 40px;
}
.default-input {
  width: 100%;
  height: auto;
  border: #ced4da 1px solid;
  border-radius: 5px;
  line-height: 43px;
  padding: 0 15px;
}
.location-block span {
  width: auto;
  line-height: 45px;
  margin-right: 10px;
  white-space: nowrap;
}
.location-city-block > ul {
  display: flex;
}
.location-city-block > ul > li {
  padding-left: 6px;
  padding-right: 6px;
}
.location-city-block > ul > li > a {
  display: block;
  font-size: 14px;
  line-height: 45px;
  transition: all 0.3s;
  box-sizing: border-box;
  border-bottom: 4px #fff solid;
  padding-left: 5px;
  padding-right: 5px;
}
.location-city-block > ul > li > a.active {
  border-bottom: 4px #1a582a solid;
  color: #000 !important;
}
.location-city-block > ul > li > a span {
  width: 20px;
  height: auto;
  display: block;
  float: left;
  margin-right: 6px;
}
.location-city-block > ul > li > a span img {
  width: 100%;
  height: 20px;
  display: block;
  object-fit: contain;
}
.product_header_nobg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  box-sizing: border-box;
  padding: 8px 10px;
  border-radius: 0px;
  margin-bottom: 15px;
  border: #ced4da 1px solid;
  border-radius: 5px;
}
.product_header_nobg h3 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
  margin: 0px;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.serach-input {
  padding-left: 40px !important;
  background-image: url(../images/search_icon.png);
  background-repeat: no-repeat;
  background-position: 5px 50%;
  background-size: 24px auto;
}
.mr-10 {
  margin-right: 10px !important;
}
/*.desktop-nav > ul{
    position: relative;
}*/
.mega-menu {
  width: 100%;
  display: none;
  position: absolute;
  z-index: 4;
  left: 0px;
  top: 100%;
  background: #165a29;
  box-sizing: border-box;
  padding: 30px;
  margin-top: -2px;
}
/*.desktop-nav > ul > li:nth-child(1):hover .mega-menu{
    display: block;
}*/
.mega-menu .sub-cata-list .pro-thum > a:hover {
  box-shadow: none;
}
.blue-links .pro-thum figure {
  border: #12477a 1px solid !important;
}
.blue-links .pro-thum figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.blue-links .pro-thum figcaption a {
  color: #376f8a !important;
}
.blue-links .pro-thum figcaption a strong {
  color: #12477a !important;
  font-weight: 500 !important;
}
.sub-cata-list .pro-thum figcaption strong {
  font-weight: 500 !important;
  /*width: 100%;
    display: inline-block;*/
}
.blue-links .pro-thum figcaption a:hover {
  text-decoration: underline;
}

.sub-cata-list .pro-thum > a {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 15px;
  transition: all 0.3s;
  /*border: #12477a 1px solid !important;*/
  box-shadow: 0 3px 10px #ebebeb;
}
.location-city-block a {
  width: 100%;
  text-align: center;

  display: block;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.3s;
  box-sizing: border-box;
  border-bottom: 4px #fff solid;
  border-bottom: 4px #fff solid;
  padding-left: 5px;
  padding-right: 5px;
}
.location-city-block a.active {
  border-bottom: 4px #1a582a solid;
  color: #000 !important;
}
.owl-theme#city-carousel .owl-nav [class*="owl-"] {
  margin: 0px;
  padding: 0px;
  background: transparent;
  display: block;
  border-radius: 0px;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.owl-theme#city-carousel .owl-nav [class*="owl-"] img {
  width: 100%;
  height: 20px;
  display: block;
  object-fit: contain;
}
.owl-theme#city-carousel .owl-nav .owl-prev {
  left: -30px;
}
.owl-theme#city-carousel .owl-nav .owl-next {
  right: -30px;
}
.owl-theme#city-carousel .owl-nav {
  margin-top: 0px !important;
}
.sub-cata-list .pro-thum figcaption {
  color: #3e79b1 !important;
  line-height: normal !important;
}

form.top_search {
  outline: 0;
  float: left;
  /* -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); */
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  border: #1a582a 1px solid;
}

form.top_search > .textbox {
  outline: 0;
  height: 42px;
  width: calc(100% - 42px);
  line-height: 42px;
  padding: 0 16px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #212121;
  border: 0;
  float: left;
  -webkit-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}

form.top_search > .textbox:focus {
  outline: 0;
  background-color: #fff;
}

form.top_search > .button {
  outline: 0;
  background: none;
  background-color: #1a582a;
  float: left;
  height: 42px;
  width: 42px;
  text-align: center;
  line-height: 42px;
  border: 0;
  color: #fff;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 16px;
  text-rendering: auto;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
  -webkit-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

form.top_search > .button:hover {
  background-color: rgba(0, 150, 136, 0.8);
}
.header {
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
}
/*.header .header-top{
    background-color: #FFF;
}
.header .header-bottom{
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}
header{
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    background-color: #FFF;
}*/
/*header.sticky-shadow {
    position: fixed;
    backface-visibility: hidden;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    min-height: 40px;
    box-shadow: 0 3px 8px 0px rgb(0 0 0 / 30%);
    background: #FFF;
}*/
header.sticky-shadow .header-top {
/*  display: none;*/
  margin-top: -101px;
}
header.sticky-shadow .header-bottom{
  z-index: 2;
}
.mb-35 {
  margin-bottom: 35px !important;
}
.mt-35 {
  margin-top: 35px !important;
}
.top-content {
  box-sizing: border-box;

  font-size: 16px;
  line-height: 26px;
  color: #000;
}
.small,
small {
  font-size: 12px !important;
}

/*.supplier-header.header .header-top a.navbar-brand{
    width: auto;
    height: auto;
    display: inline-block;
    float: left;
    margin-right: 15px;
    box-sizing: border-box;
}
.supplier-header.header .header-top a.navbar-brand img{
    width: auto;
    height: 60px;
    display: block;
}*/

.supplier-header.header .header-top.light-bg-header a.navbar-brand {
  width: auto;
  height: auto;
  display: inline-block;
  float: left;
  margin-right: 15px;
  box-sizing: border-box;
  background-color: #fff;
  padding: 4px 10px;
  border: #1a582a 1px solid;
  border-radius: 4px;
}
.supplier-header.header .header-top.light-bg-header a.navbar-brand img {
  width: auto;
  height: 50px;
  display: block;
}
.supplier-header.header .header-top h1 {
  font-size: 24px;
  margin: 0 0 5px 0;
}
.supplier-info-link li a,
.supplier-info-link li {
  font-size: 14px;
  line-height: 20px;
}
.fa-sm {
  font-size: 10px !important;
}
.supplier-info-link li {
  padding-right: 10px;
  padding-left: 10px;
  border-right: #12477a 1px solid;
  position: relative;
}
.supplier-info-link li:first-child {
  padding-left: 0px;
}
.supplier-info-link li:last-child {
  padding-right: 0px;
  border-right: none;
}

.ml-5 {
  margin-left: 5px !important;
}
.supplier-info-link .fa-square {
  color: #1a582a !important;
}
.supplier-info-link li .d-flex-start .fa {
  color: #dbce00 !important;
}
.justify-nav-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0px;
  padding: 0px;
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: flex-start;
}
.supplier-header .desktop-nav {
  padding: 0px !important;
}
.supplier-header .desktop-nav > ul > li > a {
  font-size: 16px;
  font-weight: 400;
  color: #12477a;
  text-transform: uppercase;
  padding: 10px 25px;
  width: 100%;
  display: block;
}
.supplier-header .desktop-nav > ul > li:hover > a,
.supplier-header .desktop-nav > ul > li.active > a {
  background-color: #1a582a;
  color: #fff;
}
.desktop-nav > ul > li > a svg circle,
.desktop-nav > ul > li > a svg path {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.desktop-nav > ul > li:hover > a svg circle,
.desktop-nav > ul > li.active > a svg circle,
.desktop-nav > ul > li:hover > a svg path,
.desktop-nav > ul > li.active > a svg path {
  stroke: #fff !important;
}
.desktop-nav > ul > li:hover > .mega-menu {
  display: block;
}
.supplier-header .desktop-nav > ul > li {
  margin-right: 0px;
}
.supplier-header .desktop-nav > ul > li:last-child {
  margin-right: 0px;
}
.header.supplier-header .header-bottom {
  background-color: #f2f3f7;
  border-bottom: 1px solid #dee2e6 !important;
}

.about-section {
  background-color: #fff;
  padding-top: 35px;
  padding-bottom: 35px;
}
.supplier-box {
  width: 100%;
  height: auto;
  display: flex;
}
.supplier-box figure {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 10px 0 0;
  padding: 0px;
  float: left;
}
.supplier-box figure span {
  width: 60px;
  height: 60px;
  display: block;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: #1a582a;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 10px;
}
.supplier-box figcaption {
  width: calc(100% - 70);
  height: auto;
  display: table;
  margin: 0px;
  padding: 0px;
}
.supplier-box figcaption > div {
  vertical-align: middle;
  display: table-cell;
}
.supplier-box figcaption h3 {
  font-size: 18px;
  font-weight: 400;
  color: #919191;
  margin: 0px;
}

.review-section {
  padding-top: 35px;
  padding-bottom: 35px;
  background-color: #fff;
}
.review-section .fa-lg {
  font-size: 32px !important;
  line-height: 62px;
  vertical-align: -15%;
  color: #1a582a;
}
.d-flex-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.txt-big {
  font-size: 34px;
  color: #1a582a;
}
.hide {
  display: none !important;
}
#testimonials {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.testimonial-heading {
  letter-spacing: 1px;
  margin: 30px 0px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonial-heading span {
  font-size: 1.3rem;
  color: #252525;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.testimonial-box-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.testimonial-box {
  width: calc(50% - 30px);
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 20px;
  margin: 15px;
}
.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.profile {
  display: flex;
  align-items: center;
}
.name-user {
  display: flex;
  flex-direction: column;
}
.name-user strong {
  color: #3d3d3d;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.name-user span {
  color: #979797;
  font-size: 0.8rem;
}
.reviews {
  color: #f9d71c;
}
.box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.client-comment p {
  font-size: 0.9rem;
  color: #4b4b4b;
}
/*.testimonial-box:hover{
    transform: translateY(-10px);
    transition: all ease 0.3s;
}*/

@media (max-width: 1060px) {
  .testimonial-box {
    width: 45%;
    padding: 10px;
  }
}
@media (max-width: 790px) {
  .testimonial-box {
    width: 100%;
  }
  .testimonial-heading h1 {
    font-size: 1.4rem;
  }
}
@media (max-width: 340px) {
  .box-top {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .reviews {
    margin-top: 10px;
  }
}
::selection {
  color: #ffffff;
  background-color: #252525;
}

.ml-10 {
  margin-left: 10px !important;
}

.contact-section {
  padding-top: 35px;
  padding-bottom: 35px;
  background-color: #f2f3f7;
}
.contact-box {
  width: 100%;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 20px;
  margin: 0px;
}
.contact-box h4 {
  margin: 0 0 25px 0;
}
.form-group {
  margin-bottom: 25px;
}
.form-group:last-child {
  margin-bottom: 0px;
}
.contact-box label {
  width: 100%;
  display: inline-block;
  margin: 0 0 5px 0;
}
.default-textarea {
  width: 100%;
  height: 100px;
  border: #ced4da 1px solid;
  border-radius: 5px;
  line-height: normal;
  padding: 10px 15px;
  resize: none;
}
.contact-txt {
  font-size: 22px;
}
.factsheet-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 100%;
  box-sizing: border-box;
  border: #ddd 1px solid;
  background-color: #fff;
}

.table.factsheet-table > :not(caption) > * > * {
  border: none;
  padding: 15px 15px;
}
.table.factsheet-table thead tr {
  border-bottom: #ddd 1px solid;
}
.table.factsheet-table thead th {
  font-size: 22px;
  color: #000;
}
.table.factsheet-table tbody tr th:nth-child(1) {
  width: 290px;
}
.table.factsheet-table tbody tr th[colspan="2"] {
  background-color: rgb(138 219 243) !important;
  color: #fff !important;
}
.border-section {
  padding: 35px 0 !important;
  background-color: #edfafe !important;
}
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.news-updates .post-entry-big .img-link {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  overflow: hidden;
}
.news-updates .post-entry-big .img-link {
  margin-bottom: 0px !important;
}
.news-updates .post-entry-big.horizontal .img-link {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px !important;
  flex: 0 0 70px !important;
  margin-right: 10px !important;
}
.news-updates .post-entry-big .img-link:before {
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  position: absolute;
  content: "";
  background: #000;
  opacity: 0;
  z-index: 2;
  visibility: hidden;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.news-updates .post-entry-big .img-link img {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.news-updates .post-entry-big .post-content .post-meta a {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  color: #939393;
}
.news-updates .post-entry-big .post-content .post-heading {
  line-height: 0.9;
}
.news-updates .post-entry-big .post-content .post-heading a {
  font-size: 18px;
  font-weight: bold;
  color: #303030;
}
.owl-default .owl-nav .owl-prev,
.owl-default .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #1a582a !important;
  color: #fff !important;
}
.owl-default .owl-nav .owl-prev {
  left: 0;
}
.owl-default .owl-nav .owl-next {
  right: 0;
}
.supplier-sidebar .sidebar .widget + .widget {
  padding: 10px;
  background: #fff;
  box-shadow: 0 3px 10px #ebebeb;
  border-radius: 0.25rem;
}
.supplier-sidebar .widget_title {
  margin-bottom: 10px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 14px;
  padding-bottom: 0px;
  border-bottom: 1px solid #ddd;
  position: relative;
  line-height: 24px;
  cursor: pointer;
  color: #12477a;
}
.supplier-sidebar .widget_title .filter-arrow {
  width: 24px;
  height: 24px;
  display: block;
  float: right;
  text-align: center;
  line-height: 24px;
  color: #12477a;
  font-size: 16px;
}
.supplier-sidebar .widget_categories li,
.supplier-sidebar .widget_archive li {
  font-size: 12px;
}

.white-block {
  background-color: #fff;
  box-shadow: 0 3px 10px #ebebeb;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 0.25rem;
  margin-bottom: 15px;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.light-bg-header {
  background-color: #ddd !important;
}
.white-bg {
  background-color: #fff !important;
}
#album-carousel .product-block figure {
  margin: 0 !important;
  border-radius: 5px;
}

.top-carousel {
  width: 100%;
  box-sizing: border-box;
  padding: 0 30px;
  background-color: #fff;
}
header.sticky-shadow .top-carousel {
  display: none;
}
.input-grouped input:nth-child(1) {
  width: 70%;
  border-bottom-right-radius: 0px !important;
  border-top-right-radius: 0px !important;
}
.input-grouped input:nth-child(2),
.input-grouped select {
  width: 30%;
  border-bottom-left-radius: 0px !important;
  border-top-left-radius: 0px !important;
  margin-left: -1px;
}

/*.products-wapper label {
    width: 190px;
    height: auto;
    display: inline-block;
    float: left;
    box-sizing: border-box;
    padding: 0 25px 0 0;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-align: right;
    line-height: 40px;
}
.products-wapper .form_last {
    width: calc(100% - 190px);
    height: auto;
    display: inline-block;
    float: left;
}*/
ul.pup {
  display: inline-flex;
  width: auto;
}
ul.pup > li {
  display: inline-block;
  width: auto;
  position: relative;
  margin: 0 25px 0 0;
}
ul.pup > li:last-child {
  margin: 0;
}
ul.pup.new-flex {
  display: flex !important;
  width: 100% !important;
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
ul.pup.new-flex > li {
  margin: 0px !important;
}
.products-wapper label.product_up {
  width: 100px;
  height: 100px;
  display: block;
  float: left;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: normal;
  position: relative;
  background: #1a582a;
  cursor: pointer;
}
.products-wapper label.product_up span {
  width: 100%;
  height: auto;
  display: inline-block;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.products-wapper label.product_up input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  z-index: -1;
}
.product_photo_preview {
  width: 100px;
  height: 100px;
  display: none;
  background: #ddd;
  position: absolute;
  box-sizing: border-box;
  border: #000 1px solid;
  left: 0px;
  top: 0px;
  z-index: 9;
}
.product_photo_preview a.remove_pic {
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 4;
  right: 5px;
  top: 5px;
  color: red;
}
.product_photo_preview span {
  width: 100%;
  display: block;
  padding: 0 10px;
  font-size: 12px;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 33px 0 0;
}

.form-action .text-box-link {
  min-width: 140px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
}
.products-wapper label.product_up.w-100 {
  width: 100% !important;
  height: 152px;
}
.products-wapper label:not(.default-checkbox):not(.product_up) {
  width: 100%;
  display: inline-block;
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 500;
}
.top-carousel .product-block figcaption {
  line-height: normal;
  font-size: 12px;
}
.top-carousel .product-block figcaption strong {
  font-weight: 400;
}
.sp-custom-modal .modal-content {
  position: relative;
}
.sp-custom-modal .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 98;
}

.sp-custom-modal .navbar-brand {
  width: auto;
  height: auto;
  display: block;
  float: left;
  margin: 0 15px 0 0;
  padding: 0px;
}
.sp-custom-modal .navbar-brand img {
  width: auto;
  height: 40px;
  display: block;
}

.sp-custom-modal .navbar-txt {
  width: auto;
  height: auto;
  display: block;
  float: left;
  margin: 0px;
  padding: 0px;
}
.sp-custom-modal .navbar-txt h1 {
  font-size: 24px;
}
.sp-custom-modal .modal-dialog {
  max-width: 700px;
}
.sp-custom-modal .modal-footer,
.sp-custom-modal .modal-body,
.sp-custom-modal .modal-header {
  padding-left: 25px !important;
  padding-right: 25px !important;
}
.sp-custom-modal .modal-footer {
  justify-content: flex-start;
}
.sp-custom-modal .modal-footer .text-box-link {
  padding: 15px 25px !important;
}
.sp-custom-modal .modal-body h3 {
  font-size: 24px;
  font-weight: 400;
}
.sp-custom-modal .modal-body h3 span {
  font-weight: 700;
}
.text-white {
  color: #fff !important;
}
.w-100 .iti {
  width: 100%;
  max-width: 400px;
}
/*header.sp-active .header-top {
    position: relative;
    background-color: #FFF;
    z-index: 96;
    box-shadow: 0 3px 8px 0px rgb(0 0 0 / 30%);
    background: #FFF;
}*/
.header-bottom {
  background-color: #fff;
}
header.sp-active {
  box-shadow: 0 3px 8px 0px rgb(0 0 0 / 30%);
  background: #fff;
}
header .header-top {
  position: relative;
  background-color: #fff;
  /*z-index: 9;*/
  -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.carousel-section {
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
}
/*.sp-sticky.sp-active .sp-sticky-child{
    display: none;
}*/
.contact-box-new .form-group {
  margin-bottom: 5px !important;
}
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.text-justify {
  text-align: justify;
}
.dashboard-section {
  padding: 25px 0;
}
.dashboard-left-panel {
  width: 100%;
  height: auto;
  min-height: 300px;
  float: left;
}

.dashboard-right-panel {
  width: calc(100% - 300px);
  height: auto;
  min-height: 300px;
  float: left;
}
.dashboard-left-panel {
  width: 100%;
  display: inline-block;
  background-color: #b3ecfc;
}
.dashboard-left-panel ul li {
  border-bottom: #fff 1px solid;
}
.dashboard-left-panel .nav-link {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
  position: relative;
}
.dashboard-left-panel ul li ul {
  border-top: #fff 1px solid;
}
.dashboard-left-panel ul li ul li {
  box-sizing: border-box;
  padding-left: 15px;
}
.dashboard-left-panel ul li ul li:last-child {
  border-bottom: 0px;
}
.light-bg {
  background-color: #eff2f5 !important;
}
.position-relative {
  position: relative !important;
}
.mt-n4 {
  margin-top: -1.5rem !important;
}
.text-white {
  color: #fff !important;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0 solid rgba(0, 0, 0, 0.125);
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 10%), 0 2px 4px -1px rgb(0 0 0 / 6%);
}
.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: #fff;
  border-bottom: 0 solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: 0.75rem 0.75rem 0 0;
}
.card-header h6 {
  margin: 0px !important;
  font-size: 18px !important;
  line-height: 34px;
  color: #fff;
}
.shadow-primary {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.14),
    0 7px 10px -5px rgba(233, 30, 99, 0.4) !important;
}
/*.bg-gradient-primary {
    background-image: linear-gradient(195deg, #4ea162 0%, #75de8e 100%);
}*/
.border-radius-lg {
  border-radius: 0.5rem;
}
.bg-gradient-primary {
  background-image: linear-gradient(
    195deg,
    #4ea162 0%,
    #125826 100%
  ) !important;
  box-shadow: 0 4px 20px 0 rgb(0 0 0 / 14%),
    0 7px 10px -5px rgb(88 178 249 / 40%) !important;
}
.btn {
  display: inline-block;
  font-weight: 700;
  line-height: 1.667;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.15s ease-in;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 0.375rem 1rem !important;
  font-size: 0.75rem !important;
  border-radius: 0.5rem !important;
}
.btn {
  margin-bottom: 0;
  letter-spacing: 0;
  text-transform: uppercase;
  background-size: 150%;
  background-position-x: 25%;
  position: relative;
  overflow: hidden;
}
.bg-gradient-success {
  background-image: linear-gradient(195deg, #66bb6a 0%, #43a047 100%);
}
.btn-success,
.bg-gradient-success {
  color: #fff;
  box-shadow: 0 3px 3px 0 rgba(76, 175, 80, 0.15),
    0 3px 1px -2px rgba(76, 175, 80, 0.2), 0 1px 5px 0 rgba(76, 175, 80, 0.15);
  box-shadow: 0 3px 3px 0 rgb(76 175 80 / 15%),
    0 3px 1px -2px rgb(76 175 80 / 20%), 0 1px 5px 0 rgb(76 175 80 / 15%) !important;
}
.bg-gradient-info {
  color: #fff;
  background-image: linear-gradient(195deg, #49a3f1 0%, #1a73e8 100%);
}
.bg-gradient-secondary {
  background-image: linear-gradient(195deg, #747b8a 0%, #495361 100%);
}
.bg-gradient-danger {
  background-image: linear-gradient(195deg, #ef5350 0%, #e53935 100%);
}
.font-weight-bolder {
  font-weight: 700;
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #7b809a;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #7b809a;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #7b809a;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #7b809a;
  vertical-align: top;
  border-color: #f0f2f5;
}

.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table > tbody {
  vertical-align: inherit;
}

.table > thead {
  vertical-align: bottom;
}

.table > :not(:first-child) {
  border-top: 2px solid currentColor;
}
/*.table td {
    white-space: nowrap;
}*/

.table.align-items-center td {
  vertical-align: middle;
}

.table tbody tr:last-child td {
  border-width: 0;
}

.table > :not(:last-child) > :last-child > * {
  border-bottom-color: #f0f2f5;
}

.table > :not(:first-child) {
  border-top: 1px solid currentColor;
}
.table > thead > tr > td {
  font-size: 14px !important;
  letter-spacing: 0rem !important;
  color: #344767 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  opacity: 1 !important;
}

.table > :not(caption) > * > * {
  padding: 15px !important;
}
.default-form-holder {
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
  padding: 15px;
}
.btn-primary {
  color: #fff;
  background-color: #165a29;
  border-color: #165a29;
}
.btn-primary:hover {
  color: #fff;
  background-color: #4ea162;
  border-color: #4ea162;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #495057;
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid #d2d6da;
  appearance: none;
  border-radius: 0.375rem;
  transition: 0.2s ease;
}
.form-control {
  border: 1px solid #dee2e6 !important;
  border-radius: 0.5rem;
  padding: 10px 10px;
}
select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/down_arrow_icon.png);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: auto 7px;
  padding-right: 24px !important;
}
span.alert {
  position: relative;
  padding: 3px 6px !important;
  margin-bottom: 0px !important;
  font-size: 12px !important;
  column-gap: 5px !important;
}
.nav_arrow_icon {
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  right: 20px;
}
.nav_arrow_icon img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.15s ease-in;
  transform: rotate(180deg);
}
.dashboard-left-panel .nav-link.collapsed span img {
  transform: rotate(0deg);
}

.square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.square {
  width: 100%;
  height: 0;
  padding-top: 100%;

  position: relative;
}
.square > span {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 0px;
  background-color: #ccc;
}
.round-corner-full {
  border-radius: 50% !important;
  overflow: hidden;
}
.product_up.company-photo {
  height: 34px !important;
  border-radius: 5px;
  margin-top: 10px !important;
}
.supplier-header .desktop-nav > ul > li {
  position: relative;
}
.supplier-header .desktop-nav > ul > li > ul {
  position: absolute;
  z-index: 999;
  left: 0px;
  top: 100%;
  background-color: #1a582a;
  color: #fff;
  width: 100%;
  opacity: 0;
  min-width: 250px;
}
.supplier-header .desktop-nav > ul > li > ul > li {
  border-top: #fff 1px solid;
}
.supplier-header .desktop-nav > ul > li > ul > li > a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  padding: 10px 25px;
  width: 100%;
  display: block;
}
.supplier-header .desktop-nav > ul > li > ul > li > a:hover {
  background-color: #4ea162;
}
/*.supplier-header .desktop-nav > ul > li:hover > ul{
    display: block;
}*/
.supplier-header .desktop-nav > ul.text-normal > li > a {
  text-transform: inherit !important;
}

/*.main-nav nav > ul > li:hover > ul {
    opacity: 1;
    transition-delay: 0.1s;
    visibility: visible;
}*/

/*.supplier-header .desktop-nav > ul > li > ul {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
}
.supplier-header .desktop-nav > ul > li:hover > ul {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
}
*/

.supplier-header .desktop-nav > ul > li > ul {
  top: 100%;
  display: none;
}
.supplier-header .desktop-nav > ul > li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
}

.widget-chart {
  text-align: center;
  padding: 1rem;
  position: relative;
}
.widget-chart.text-left {
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
}
.bg-transparent {
  background: transparent !important;
}
.no-shadow {
  box-shadow: 0 0 0 transparent !important;
}
.rm-border {
  border-width: 0 !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.icon-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
}
.icon-wrapper {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.widget-chart.text-left .icon-wrapper {
  min-width: 54px;
  margin: 0 1rem 0 0;
}
.bg-warning {
  background-color: #f7b924 !important;
}
.opacity-10 {
  opacity: 1 !important;
}
.icon-wrapper .icon-wrapper-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 3;
  opacity: 1;
}
.icon-wrapper i {
  margin: 0 auto;
  font-size: 1.7rem;
  position: relative;
  z-index: 5;
  color: #fff;
}
.widget-chart .widget-chart-content {
  position: relative;
  z-index: 5;
}
.widget-chart.text-left .widget-chart-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
.widget-chart .widget-subheading {
  margin: 0;
  display: block;
  text-align: left;
  color: #fff;
}
.widget-chart .widget-subheading:first-child {
  margin-top: 0;
}
.widget-chart .widget-numbers {
  font-weight: bold;
  font-size: 2.5rem;
  display: block;
  line-height: 1;
  margin: 1rem auto;
  color: #fff;
}
.widget-chart .widget-subheading + .widget-numbers {
  margin-top: 0.5rem;
}
.widget-chart.text-left .widget-numbers {
  margin-left: 0;
}
.text-focus {
  color: #444054 !important;
}
.opacity-8 {
  opacity: 0.8 !important;
}
.widget-chart .widget-description {
  margin: 1rem 0 0;
}
.widget-chart .widget-numbers + .widget-chart-flex,
.widget-chart .widget-numbers + .widget-description,
.widget-chart .widget-numbers + .widget-subheading {
  margin-top: -0.5rem;
}
.widget-chart.text-left .widget-chart-content .widget-description {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.text-danger {
  color: #d92550 !important;
}
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}
.d-inline {
  display: inline !important;
}
.bg-gradient-pink {
  background-image: linear-gradient(
    195deg,
    #ec407a 0%,
    #d81b60 100%
  ) !important;
  /*    background-image: linear-gradient(195deg, #79D7FB 0%, #5CC4ED 100%) !important;*/
}
.bg-gradient-blue {
  background-image: linear-gradient(
    195deg,
    #4ea162 0%,
    #1a582a 100%
  ) !important;
  /*    background-image: linear-gradient(195deg, #79D7FB 0%, #5CC4ED 100%) !important;*/
}
.bg-gradient-orange {
  background-image: linear-gradient(
    195deg,
    #f8ce7a 0%,
    #da8a0c 100%
  ) !important;
}
/*.bg-gradient-success {
    background-image: linear-gradient(195deg, #66BB6A 0%, #43A047 100%);
    background-image: linear-gradient(195deg, #79D7FB 0%, #5CC4ED 100%) !important;
}*/
.bg-gradient-green {
  /*background-image: linear-gradient(195deg, #49a3f1 0%, #1A73E8 100%);*/
  background-image: linear-gradient(
    195deg,
    #79d7fb 0%,
    #5cc4ed 100%
  ) !important;
}
.bg-gradient-deep-green {
  background-image: linear-gradient(195deg, #49a3f1 0%, #1a73e8 100%);
}
.plr-25 {
  padding: 25px !important;
}
.ptb-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.mb-25 {
  margin-bottom: 35px;
}
.mb-55 {
  margin-bottom: 55px;
}
.lh-50 {
  display: inline-block;
  line-height: 50px;
  font-weight: 700;
}
.wf-20 {
  width: 30px !important;
}
.wf-20 + .form_last {
  width: calc(100% - 30px);
}
.pl-30 {
  box-sizing: border-box;
  padding-left: 30px;
}
.text-right {
  text-align: right;
}
.secification-action {
  width: 100%;
  display: inline-block;
  margin: 10px 0 0 0;
}
.form-title {
  font-size: 18px !important;
  line-height: normal;
  margin: 0 0 10px 0;
}

.login-body {
  padding: 10px 20px 10px 10px !important;
}
.w-695 .modal-dialog {
  max-width: 695px;
}
.modal-content {
  border-radius: 10px !important;
}
.left-log-bg {
  height: 500px;
  background: #7ad3d0;
  background: linear-gradient(180deg, #79d7fb, #5cc4ed);
  border-radius: 10px;
  position: relative;
  box-sizing: border-box;
  padding: 10px;
}
.left-log-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.7;
}
.btn-default {
  background-color: #1a582a;
  border: #1a582a 1px solid;
}
.login-form h2 {
  font-size: 18px;
  margin: 0 0 25px 0;
}

.login-divi {
  color: #002c3e;
  font-size: 12px;
  margin-top: 0px;
  margin-bottom: 10px;
  font-weight: 600;
  position: relative;
  text-align: center;
}
.login-divi:before {
  content: "";
  width: 30% !important;
  height: 1px;
  background: #ccc;
  position: absolute;
  top: 50%;
  left: 10%;
}
.login-divi:after {
  content: "";
  width: 30% !important;
  height: 1px;
  background: #ccc;
  position: absolute;
  top: 50%;
  right: 10%;
}
.login-divi span {
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding: 0 5px;
}
.dropdown-toggle {
  position: relative;
  padding-right: 30px !important;
}
.dropdown-toggle:after {
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: #1a582a 0.3em solid !important;
}
ul.dropdown-menu {
  padding: 0px !important;
  margin: 0xpx !important;
}
ul.dropdown-menu a {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 6px 15px;
}
.vertica-tab {
  width: 100%;
  display: flex !important;
  background-color: #f2f3f7;
  border: 1px solid #dee2e6 !important;
  box-sizing: border-box;
}
.resp-vtabs.vertica-tab ul.resp-tabs-list {
  float: left;
  width: 265px !important;
}
.resp-vtabs.vertica-tab .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  border: none;
  float: left;
  width: calc(100% - 265px);
  min-height: 250px;
  border-radius: 0px;
  clear: none;
  border-left: 1px solid #dee2e6 !important;
  box-sizing: border-box;
}
.resp-vtabs.vertica-tab > ul > li {
  border-bottom: 1px solid #dee2e6 !important;
  font-size: 16px !important;
  font-weight: 500;
}
.resp-vtabs.vertica-tab > ul > li.resp-tab-active {
  border: none;
  border-right: none;
  background-color: #fff;
  position: relative;
  z-index: 1;
  margin: 0px !important;
  padding: 15px !important;
}
.vertica-tab .resp-tab-content {
  padding: 30px;
}
.form-loop {
  width: 100%;
  display: inline-block;
  margin-bottom: 30px;
  border: 1px solid #dee2e6;
  box-sizing: border-box;
  padding: 15px 30px;
  position: relative;
}
.form-loop .form-title:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #dee2e6;
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 48px;
}
.form-loop .form-title i:not(.fa-plus) {
  display: none;
}
.sp_flag {
  width: 28px !important;
  height: 28px !important;
  background: #fff !important;
  box-shadow: none !important;
}
.sp_flag img {
  width: 100%;
  height: 28px;
  object-fit: cover;
  border-radius: 50%;
}
.iti__country,
.iti--separate-dial-code .iti__selected-dial-code {
  font-family: "Roboto", sans-serif !important;
  font-style: normal !important;
}
.awa-title {
  font-size: 16px;
  color: #000;
}
.awa-txt {
  font-size: 14px;
}
.pl-0 {
  padding-left: 0px !important;
}
.pr-0 {
  padding-right: 0px !important;
}
.table {
  width: 100%;
}
.pl-10 {
  padding-left: 10px !important;
}
.pr-10 {
  padding-right: 10px !important;
}
.title-btn {
  margin-top: -7px;
}
.awa-pic {
  width: 115px;
  display: block;
}
.cata-pic {
  width: 90px;
  height: auto;
}
.max-info {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.dropdown-display {
  white-space: nowrap;
  padding: 6px 20px 6px 12px;
  height: 50px;
  border-radius: 0.5rem;
  border: 1px solid #dee2e6 !important;
}
.dropdown-display .dropdown-chose-list {
  line-height: 38px;
  height: 38px !important;
  display: inline-block;
  position: relative;
}
.dropdown-display-label:after,
.dropdown-display:after {
  top: 21px !important;
}
.dropdown-clear-all {
  top: 12px !important;
}
.dropdown-main {
  padding: 15px;
}
.dropdown-main .dropdown-group,
.dropdown-main .dropdown-option {
  margin: 0;
  list-style: none;
  line-height: 26px;
  word-wrap: break-word;
  padding: 10px !important;
}
.blue-link {
  color: #1a582a !important;
}
.left-log-bg.small {
  height: 200px;
}
#modalLRForm .login-form {
  margin-top: 15px;
  box-sizing: border-box;
  padding: 15px;
}
.left-log-bg.small-otp {
  height: 330px !important;
}
.award_photo_preview {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 5;
  left: 0px;
  top: 0px;
}
.award_photo_preview img {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ddd;
  object-fit: contain;
}
.change-photo {
  width: 100%;
  height: 30px;
  display: block;
  position: absolute;
  z-index: 6;
  left: 0px;
  bottom: 0px;
  box-sizing: border-box;
  padding: 5px 15px;
  text-align: center;
  color: #fff;
  background-color: rgba(93, 196, 237, 0.8);
}
.remove_award_photo_preview {
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  z-index: 6;
  right: 0px;
  top: 0px;
  box-sizing: border-box;
  padding: 0px;
  text-align: center;
  color: #fff;
  line-height: 20px;
  background-color: rgba(255, 0, 0, 0.8);
  cursor: pointer;
}
.hide {
  display: none !important;
}
.default-upload-holder {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
}
.default-upload-holder .default-preview-holder {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 5;
  left: 0px;
  top: 0px;
}
.del-pro-pic {
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  z-index: 6;
  right: 19px;
  top: 3px;
  border-radius: 50%;
  border: #fff 2px solid;
  box-sizing: border-box;
  padding: 0px;
  text-align: center;
  color: #fff;
  line-height: 22px;
  background-color: rgba(255, 0, 0, 0.8);
  cursor: pointer;
}
.show:not(.dropdown-toggle) {
  display: block !important;
}
.video_album_parent .product_photo_preview span,
.image_album_parent .product_photo_preview span {
  padding: 0;
  overflow: hidden;
  margin: 0;
}
.video_album_parent .product_photo_preview span img,
.image_album_parent .product_photo_preview span img {
  width: 100%;
  height: 98px;
  display: block;
  object-fit: contain;
}
.video-modal .modal-content {
  border-radius: 0px !important;
}
.video-modal .modal-body {
  padding: 0px !important;
}
#videoPreviewModal .modal-body video {
  width: 100%;
  height: auto;
  display: block;
}
.temp-video {
  position: absolute;
  z-index: -1;
  opacity: 0;
  width: 10px;
  height: 10px;
}
.play-btn {
  width: 34px;
  height: 34px;
  position: absolute;
  z-index: 2;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.video_album_parent .product_photo_preview span .play-btn img {
  width: 100%;
  height: 34px;
  display: block;
  object-fit: contain;
}
.switch {
  position: relative;
  display: block;
  width: 60px;
  height: 34px;
  margin: 0px !important;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
  display: none;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch input:checked + .slider {
  background-color: #2196f3;
}

.switch input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.switch .slider.round {
  border-radius: 34px;
}

.switch .slider.round:before {
  border-radius: 50%;
}
.video-url > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.video-url > li:last-child {
  margin: 0px;
}
.secification-loop {
  margin-bottom: 15px;
}
.secification-loop:last-child {
  margin-bottom: 0px;
}
.add-video-action {
  width: calc(100% - 50px);
  display: inline-block;
  margin: 10px 0 0 0;
}
.video-url > li > div:nth-child(1) {
  width: calc(100% - 50px);
}
.video-url > li > div:nth-child(2) {
  width: auto;
  height: auto;
  display: block;
}
.video-url > li:nth-child(1) > div:nth-child(2) .remove_video {
  display: none;
}
.video-url > li > div:nth-child(2) a {
  font-size: 22px;
  color: #ff0000;
}

.secification-loop .col-lg-6:nth-child(2) .form_last {
  width: calc(100% - 30px);
}
.secification-holder .secification-loop:nth-child(1) .remove_secif {
  display: none;
}
.ml-20px {
  margin-left: 20px;
}
.border-right-white {
  border-right: #dee2e6 1px solid;
}
.position-relative {
  position: relative;
}
.reg-drop {
  width: 300px;
  height: auto;
  display: none;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 100%;
  border-top: #fff 1px solid;
}
.reg-drop > a {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 12px 25px;
  background-color: #165a29;
  border-radius: 0px;
  transition: all 0.3s;
  color: #fff;
  border-bottom: #fff 1px solid;
}
.reg-drop > a:hover {
  background-color: #4ea162;
}
.reg-drop > a:last-child {
  border: none;
}
.registration-hover:hover .reg-drop {
  display: block;
}
/*footer{
    background-color: #212121 !important;
}
.footer-section {
    background-color: #212121;
    min-height: 50px;
    float: left;
    width: 100%;
    margin-top: 15px;
}
.footer-site-links li {
    padding: 0px 25px;
    margin-bottom: 8px;
    margin-top: 9px;
}
.footer-site-links li {
    border-right: 1px solid #4f4f4f;
}
.footer-site-links li:last-child {
    border-right: 0px solid #4f4f4f;
}*/
.inner-section {
  margin-top: 45px;
  margin-bottom: 45px;
}
.border-top {
  border-top: 1px solid #dee2e6 !important;
  border-bottom: 1px solid #dee2e6 !important;
}
.hide {
  display: none !important;
}

/* The container */
.default-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 !important;
  font-size: 14px;
  font-weight: 700;
  height: 25px;
  line-height: 25px;
}

/* Hide the browser's default checkbox */
.default-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.default-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.default-checkbox input[type="radio"] ~ .checkmark {
  border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.default-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.default-checkbox input:checked ~ .checkmark {
  background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.default-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.default-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.default-checkbox .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.banner-search {
  width: 100%;
  text-align: center;
  display: block;
  position: absolute;
  z-index: 3;
  left: 0px;
  bottom: 0px;
}
.banner-search .search-section {
  padding: 10px 15px !important;
  background: rgba(22, 90, 41, 0.9);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.btn-light-green {
  color: #fff !important;
  padding: 6px 15px;
  border: #4ea162 1px solid;
  background-color: #4ea162;
}
.banner-search .search-section .btn {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.default-padding {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}
.sub-title {
  text-transform: uppercase;
  color: #1a582a;
  font-weight: 800;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.title {
  font-weight: 800;
}
.product-features-style-one {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 70px;
  position: relative;
  z-index: 1;
}
.product-feature-item {
  text-align: center;
}
.product-feature-item .thumb {
  margin: auto auto 20px;
  position: relative;
  z-index: 1;
}
.product-feature-item .thumb img {
  height: 120px;
}
.product-feature-item .thumb::after {
  position: absolute;
  left: 50%;
  top: -23px;
  content: "";
  height: 150px;
  width: 150px;
  transform: translateX(-50%);
  background: url(../images/39.png);
  z-index: -1;
  border-radius: 50%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
}
.product-feature-item h4 {
  margin: 0;
}
.product-feature-item a {
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.pl-100 {
  padding-left: 100px;
}
.product-features-style-one::after {
  position: absolute;
  left: 0;
  top: -50%;
  content: "";
  height: 300%;
  width: 400%;
  background: #165a29;
  z-index: -1;
}
.site-heading {
  margin-bottom: 60px;
}
.sub-title {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 800;
  display: inline-block;
  position: relative;
  z-index: 1;
  font-family: var(--font-secondary);
}
.site-heading .title {
  margin-bottom: 0;
}
.site-heading .devider {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  position: relative;
  z-index: 1;
  left: 10px;
}
.site-heading .devider:before {
  position: absolute;
  left: -15px;
  top: 0;
  content: "";
  height: 2px;
  width: 10px;
  background: var(--color-primary);
}
.site-heading .title span {
  color: var(--color-primary);
}
.light-green-bg {
  background-color: #f5fff7 !important;
}
.default-padding-bottom {
  padding-bottom: 120px;
}
ul.vt-products {
  margin: 0 -15px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.vt-products .product {
  padding-left: 15px;
  padding-right: 15px;
  float: left;
  margin-bottom: 30px;
}

.vt-products.columns-4 .product {
  width: 25%;
}
.vt-products.columns-3 .product {
  width: 33.3333%;
}
.vt-products .product .product-contents ul {
  margin-left: 0;
  padding: 0;
  list-style: none;
}

.product .product-contents {
  border: 1px solid #e7e7e7;
  padding: 25px 15px;
  background-color: #fff;
  position: relative;
}

.vt-products .product .product-image {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  overflow: hidden;
  padding-top: 10px;
}

.vt-products .product .product-image > a {
  display: block;
}

.product-contents .shop-action ul {
  position: absolute;
  right: 0;
  top: 55px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 9;
}

.shop-action li {
  display: block;
  text-align: right;
  margin-bottom: 10px;
  transition: all 0.35s ease-in-out;
  position: relative;
  z-index: 1;
}
.shop-action li.wishlist {
  display: none;
}
.shop-action li a {
  max-width: 40px;
  height: 40px;
  position: relative;
  white-space: nowrap;
  padding: 0 18px;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
  color: #ffffff;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  font-size: 14px;
  border: none;
  letter-spacing: 0;
  border-radius: 30px;
  font-weight: 600;
  right: 0px;
  opacity: 0;
}

.shop-action li a span {
  transition: all ease-in-out 0.3s;
}

.shop-action li a:hover span {
  z-index: 1;
}

.shop-action li:nth-child(2) a {
  transition: all 0.4s ease-in-out;
}

.shop-action li:nth-child(3) a {
  transition: all 0.5s ease-in-out;
}

.vt-products .product .product-contents:hover .shop-action li a {
  opacity: 1;
  right: 5px;
}

.shop-action li a::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: var(--color-primary);
  text-align: center;
  border-radius: 50%;
  font-weight: 400;
  transition: all ease-in-out 0.3s;
  overflow: hidden;
  z-index: 9999;
  border: 1px solid transparent;
}

.shop-action li.wishlist a::after {
  content: "\f004";
}

.shop-action li.cart a::after {
  content: "\f07a";
}

.shop-action li.quick-view a::after {
  content: "\f002";
}

.shop-action li.wishlist a::before {
  display: none !important;
}

.shop-action li a:hover::after {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.shop-action ul li a:hover {
  background-color: var(--color-primary);
  max-width: 260px;
  color: #ffffff;
  padding: 0 50px 0 15px;
  transition: all ease-in-out 0.5s !important;
}

.product-tags a {
  display: inline-block;
  margin-right: 5px;
  position: relative;
  z-index: 1;
}

.product-tags a::after {
  position: absolute;
  right: -4px;
  bottom: 0;
  content: ",";
}

.product-tags a:last-child::after {
  display: none;
}

.product-tags a {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: #666666;
  line-height: 1;
}

.product-tags a:hover {
  color: var(--color-primary);
}

.product-tags a:last-child {
  margin-right: 0;
}

.vt-products .product .product-contents .product-title {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 5px;
}
.vt-products .product .product-contents .sell-by {
  margin-bottom: 15px;
  width: 100%;
  display: inline-block;
}

.vt-products .product .product-contents .product-title a {
  font-weight: 900;
}

.vt-products .product .product-contents .product-title a:hover {
  color: var(--color-primary);
}

.rating {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #999999;
  line-height: 1;
}

.text-center .rating {
  justify-content: center;
}

.review-count {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
}

.text-center .review-count {
  justify-content: center;
}

.review-count > span {
  display: none;
  line-height: 1;
  margin-left: 10px;
}

.vt-products .product .product-contents .review-count i {
  color: #ffb300;
}

.vt-products .product .product-caption .price span {
  font-weight: 800;
  font-size: 20px;
}

.vt-products .product .product-caption .price {
  line-height: 1;
  margin: 0;
}

.price {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 15px;
}
.vt-products .product .product-image > img,
.vt-products .product .product-image > a img {
  width: 100%;
  height: 182px;
  object-fit: contain;
  display: block;
}
.min-qnt {
  margin-top: 6px;
  font-size: 12px;
  margin-bottom: 0px !important;
}
.hamburger {
  display: none;
}

/*.banner-section .owl-item .item{
position:relative;
z-index:99;
display:flex;
align-items:flex-end;
background-size:cover;
background-position: 50% 50% !important;
min-height: 500px;
}
.banner-section .owl-item .item{
z-index: 9;
position: relative;
animation: shrinkeven 6s infinite alternate;
}
.banner-section .owl-item.active,
.banner-section .owl-item.active .item{

z-index: 9;

}
@keyframes fadeOut {
0% {
  opacity: 1;
}
100% {
  opacity: 0;
}
}

@-webkit-keyframes fadeOut {
0% {
  opacity: 1;
}
to {
  opacity: 0;
}
}

@keyframes fadeOut {
0% {
  opacity: 1;
}
to {
  opacity: 0;
}
}

@-webkit-keyframes fadeIn {
0% {
  opacity: 0;
}
to {
  opacity: 1;
}
}

@keyframes fadeIn {
0% {
  opacity: 0;
}
to {
  opacity: 1;
}
}

@keyframes shrinkeven {
from {
  transform: scale(1);
}
to {
  transform: scale(1.3);
}
}*/
.dd-right .reg-drop {
  width: 250px;
  left: auto;
  right: 0;
  top: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .vt-products.columns-4 .product {
    width: 50%;
  }
}
.dashboard-section {
  margin-top: 0px;
}
.products-wapper label.error {
  color: #ff0000 !important;
  font-size: 12px !important;
}
.supplier-header .desktop-nav > ul.text-normal > li > a .nav_arrow_icon {
  width: 16px;
  height: 16px;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  right: 5px;
  color: #000;
  align-items: center;
  justify-content: center;
}
.supplier-header .desktop-nav > ul.text-normal > li:hover > a .nav_arrow_icon {
  color: #fff;
}
.default-input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0px 10px;
  font-size: 14px;
  font-weight: 400;
  color: #495057;
  background-color: #fff;
  border: 1px solid #d2d6da;
  border-radius: 6px;
  transition: 0.2s ease;
}
.default-input[type="file"] {
  padding-top: 8px;
  line-height: normal !important;
}
.up-icon {
  column-gap: 15px;
  align-items: center;
  width: 100%;
}
.btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.img-preview {
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  border: #ddd 1px solid;
  border-radius: 6px;
  padding: 6px;
  background-color: #fff;
}
.img-preview .remove-preview {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  z-index: 4;
  right: 0px;
  top: 0px;
  font-size: 14px;
  text-align: center;
  line-height: 10px;
  color: #fff;
  padding: 4px;
  background-color: #ff0000;
  border-radius: 50%;
}
.img-preview img {
  width: 100%;
  height: 32px;
  display: block;
  object-fit: contain;
}
.min-width-50 {
  min-width: calc(50% - 15px);
}

.shopping-cart li {
  margin-bottom: 5px;
  width: 100%;
  box-sizing: border-box;
  padding: 5px;
  border-bottom: 1px solid #e7e7e7;
}
.shopping-cart li:last-child {
  margin-bottom: 0px;
  border: none;
}
.shopping-cart li img {
  float: left;
  margin-right: 12px;
  max-width: 70px;
  max-height: 70px;
}
.shopping-cart li .item-name {
  display: block;
  font-size: 16px;
}
.shopping-cart li .item-detail {
  display: block;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.shopping-cart li .item-price {
  color: #165a29;
  margin-right: 8px;
}
.shopping-cart li .item-quantity {
  color: #abb0be;
}

.shopping-cart:after {
  bottom: 100%;
  left: 89%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: white;
  border-width: 8px;
  margin-left: -8px;
}

.cart-icon {
  color: #515783;
  font-size: 24px;
  margin-right: 7px;
  float: left;
}

/*.button {
  background: #f8770c;
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  display: block;
  border-radius: 3px;
  font-size: 16px;
  margin: 25px 0 15px 0;
  text-transform: uppercase;
}*/
.shopping-cart {
  min-width: 300px !important;
  margin-top: 0px !important;
}
.mb-5px {
  margin-bottom: 5px;
}
.page-title {
  font-family: var(--font-default);
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 125%;
  color: #165a29;
  margin: 35px 0 25px;
}
/* cart css start */
.cart-table {
  margin-bottom: 0;
  font-family: var(--font-poppins);
  border: rgba(238, 238, 238, 1) 1px solid !important;
  box-sizing: border-box;
}
.cart-table thead td,
.cart-table tfoot td {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(238, 238, 238, 1);
}
.cart-table td {
  vertical-align: middle;
}
.cart-table tbody td {
  border-bottom: rgba(238, 238, 238, 1) 1px solid;
}
.cart-table .td-image {
  display: table-cell;
}
.cart-table .td-image img {
  width: auto;
  height: 80px;
  display: block;
  object-fit: contain;
  background: rgba(238, 238, 238, 1);
  margin-left: auto;
  margin-right: auto;
}
.cart-table tbody .td-qty .input-group {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-table tbody .td-qty .form-control {
  border-radius: 0 !important;
  border-color: transparent;
  line-height: 1.3;
  color: #555;
  background-color: #fff;
  transition: all 0.07s ease-out;
  box-sizing: border-box;
  box-shadow: none;
}

.cart-table tbody .td-qty input.form-control {
  min-width: 35px;
  transition: all 0.075s ease-out;
  width: auto;
  flex-grow: 1;
}

.cart-table tbody .td-qty .input-group {
  display: flex;
  align-items: center;
}

.cart-table tbody .td-qty .input-group input.form-control {
  height: 100%;
  display: flex;
}

.cart-table tbody .td-qty .input-group .input-group-btn {
  width: auto;
  height: 100%;
}

.cart-table tbody .td-qty .input-group .btn {
  height: 100%;
}

.cart-table tbody .td-qty .input-group .btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cart-table tbody .td-qty .input-group-btn:last-child > .btn {
  margin: 0;
}

.stepper {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 70px;
  height: 100%;
  border-width: 1px;
  min-height: 30px;
  font-size: 15px;
  transition: all 0.05s ease-out;
}
.stepper {
  width: 70px;
  height: 35px;
  border-style: solid;
  border-color: rgba(41, 41, 43, 1);
  border-radius: 0px;
}
.stepper .form-control {
  width: 100%;
  height: 100%;
  min-height: 28px;
  border-radius: inherit !important;
  border-width: 0;
  text-align: center;
  padding: 0 20px 0 2px;
  font-size: 13px;
  transition: all 0.05s ease-out;
}

.stepper span {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-width: 0 0 0 1px;
  border-color: inherit;
  border-style: inherit;
  z-index: 10;
}

.stepper span i {
  cursor: pointer;
  width: 100%;
  min-width: 18px;
  background: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50%;
  transition: all 0.05s ease-out;
}

.stepper span i:hover {
  background: #d3d3d3;
}

.stepper span i:active {
  box-shadow: inset 0 0 7px 0 rgba(0, 0, 0, 0.3);
}

.stepper span i:first-of-type {
  border-width: 0 0 1px 0;
  border-color: inherit;
  border-style: inherit;
}

.cart-table tbody .input-group-btn {
  width: auto;
}
.cart-table tbody .input-group-btn .btn {
  background: rgba(41, 41, 43, 1);
  padding: 5px;
  width: 35px;
  height: 35px;
  border-radius: 0px;
  color: #fff;
  display: inline-block;
}
.cart-table tbody .btn-remove.btn {
  background: rgba(208, 30, 36, 1);
}
.br-0 {
  border-radius: 0px !important;
}
.br-8 {
  border-radius: 8px !important;
}
.cart-table tfoot .btn {
  padding-top: 3px;
  padding-bottom: 3px;
  height: 38px;
}
.cart-grey-block {
  width: 100%;
  background: rgba(238, 238, 238, 1);
  box-sizing: border-box;
  padding: 15px;
}
.cart-total {
  margin-top: 10px;
  align-items: flex-start;
}
.cart-total .table {
  border-color: transparent;
}
.cart-total table td {
  background: rgb(255 255 255);
  border-width: 0 !important;
  border-top-width: 1px !important;
  border-style: solid !important;
  border-color: rgba(238, 238, 238, 1) !important;
  font-family: var(--font-poppins);
}
.coupon-footer {
  width: 100%;
  display: inline-block;
  margin-top: 10px;
}
.col-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-inter);
  font-weight: 700 !important;
  font-size: 16px;
  color: rgba(41, 41, 43, 1);
  text-transform: uppercase;
  padding: 5px 15px;
  box-sizing: border-box;
  border: #020000 1px solid;
}
.coupon-body-dic {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: #020000 1px solid;
  position: relative;
  margin-top: -1px;
}
.coupon-body-dic ul {
  display: flex;
}
.coupon-body-dic ul li {
  position: relative;
}
.coupon-body-dic ul li:nth-child(1) {
  width: calc(100% - 110px);
}
.coupon-body-dic ul li:nth-child(2) {
  width: 110px;
}
.coupon-body-dic .btn,
.coupon-body-dic input {
  height: 38px;
  width: 100%;
}
.coupon-body-dic input {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
}
.stepper input[type="number"]::-webkit-inner-spin-button,
.stepper input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.stepper input[type="number"] {
  -moz-appearance: textfield;
}
.red {
  color: #ff0000;
}
.mt-25 {
  margin-top: 25px;
}
.mt-15 {
  margin-top: 15px !important;
}
.pb-75 {
  padding-bottom: 75px !important;
}
.cart-table tbody td {
  border-right: none !important;
  border-left: none !important;
}
/* cart css end */
.btn-black {
  border-color: #18191a !important;
  background-color: #18191a !important;
  color: #fff !important;
}
.btn-red {
  background-color: #e3242f !important;
  color: #fff !important;
}
.btn-green {
  color: #fff !important;
  /*    padding: 6px 15px;*/
  border: #165a29 1px solid;
  background-color: #165a29;
}
.product-details-block {
  width: 100%;
  height: auto;
  display: block;
}
.product-details-block .product-top-block {
  width: 100%;
  height: auto;
  display: flex;
}
.product-details-block .product-top-block .product-gallery-block {
  width: 35%;
  height: auto;
  display: block;
}
.product-details-block
  .product-top-block
  .product-gallery-block
  .product-gallery-image
  img:not(.img-organic) {
  width: calc(100% - 10px);
  height: 417px;
  object-fit: contain;
  position: absolute;
  z-index: 1;
  left: 5px;
  top: 5px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-details-block
  .product-top-block
  .product-gallery-block
  .product-gallery-image
  img.show {
  opacity: 1;
  z-index: 2;
}
.product-details-block .product-top-block .product-describtion-block {
  width: 65%;
  height: auto;
  display: block;
  box-sizing: border-box;
  padding-left: 25px;
}

.product-details-block .product-top-block .product-describtion-block h2 {
  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 125%;
  text-transform: capitalize;
  color: #020000;
  margin: 0 0 8px 0;
}
.product-details-block .product-top-block .product-describtion-block .stock {
  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  text-transform: capitalize;
  color: #208210;
  margin: 0 0 30px 0;
}

.product-details-block .product-top-block .product-describtion-block .note {
  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 125%;
  color: #dc3545;
}
.product-price {
  width: 100%;
  display: flex;
  column-gap: 15px;
  font-family: var(--font-inter);
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 125%;
  color: #165a29;
  margin: 0 0 12px 0;
  align-items: flex-end;
}
.product-price .old {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 125%;
  text-decoration-line: line-through;
  color: #898282;
}
.product-price .discount {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 125%;
  color: #165a29;
}
.product-grey-box {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 12px;
  background: #d9d9d9;
  border-radius: 8px;
  max-width: 400px;
  margin: 25px 0 15px;
}
.product-grey-box ul {
  width: 100%;
  display: block;
}
.product-grey-box ul > li {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.product-grey-box ul > li:last-child {
  margin-bottom: 0px;
}
.product-grey-box ul > li .pro-det-icon {
  width: 18px;
}
.product-grey-box ul > li .pro-det-icon img {
  width: 100%;
  height: auto;
  display: block;
}
.product-grey-box ul > li .pro-det-txt {
  width: calc(100% - 18px);
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 125%;
  color: #000000;
  box-sizing: border-box;
  padding-left: 10px;
}

.product-read-box {
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin: 0 0 12px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 125%;
  color: #000000;
}
.product-read-box span img {
  width: 100px;
  height: auto;
  display: block;
}
.book-play-link {
  width: 100%;
  display: inline-block;

  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 125%;
  text-decoration-line: underline;
  color: #24aae3;
}
.product-describtion-block hr {
  max-width: 715px;
}
.product-action-block {
  width: 100%;
  display: flex;
  /*  column-gap: 22px;*/
  align-items: center;
  justify-content: space-between;
}
.product-action-block .product-qty-block {
  width: 135px;
  position: relative;
  display: flex;
  align-items: center;
}

.quantity {
  position: relative;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  border: 1px solid #a09e9e;
  border-radius: 5px;
  overflow: hidden;
}

.quantity input[type="number"]::-webkit-inner-spin-button,
.quantity input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity input[type="number"] {
  -moz-appearance: textfield;
}

.quantity input {
  width: calc(100% - 25px);
  height: 40px;
  float: left;
  display: block;
  padding: 0;
  margin: 0;
  padding-left: 10px;
  padding-left: 10px;
  text-align: center;
  border: none;
  background-color: transparent;

  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;

  color: #000000;
}

.quantity input:focus {
  outline: 0;
}

.quantity-nav {
  width: 25px;
  position: absolute;
  height: 100%;
  z-index: 4;
  top: 0;
  right: 0;
}

.quantity-button {
  height: 50%;
  position: absolute;
  left: 100%;
  cursor: pointer;
  border-left: 1px solid #a09e9e;
  width: 25px;
  text-align: center;
  color: #333;
  font-size: 13px;
  line-height: 1.7;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-button.quantity-up {
  top: 0;
  border-bottom: 1px solid #a09e9e;
}

.quantity-button.quantity-down {
  bottom: 0px;
}
.product-quantity-block {
  margin-top: 10px;
  width: 100%;
  display: inline-block;
}
.product-quantity-block label {
  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 125%;
  color: #000000;
  display: inline-block;
  margin: 0 0 10px 0;
}
.product-quantity-block .btn {
  border-radius: 5px !important;
}
.product-infos-block {
  width: 100%;
  display: inline-block;
  padding: 55px 0;
  text-align: center;
}
.product-infos-block h2 {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  padding: 0 0 10px 0;
  margin: 0 0 25px 0;

  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  text-transform: uppercase;
  color: #000000;
}
.product-infos-block h2:after {
  content: "";
  width: 149px;
  height: 2px;
  background-color: #e3242f;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.product-infos-block p {
  width: 100%;
  box-sizing: border-box;
  padding: 0 5%;
  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  text-transform: capitalize;
  color: #898282;
}
.product-section h4.title-center {
  font-family: var(--font-inter);
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 125%;
  color: #cc2d2d;
  margin: 0 0 35px 0;
  text-align: center;
}
.product-section h4.title-center span {
  color: #000;
}
/*.product-action-block {
    width: 100%;
    display: flex;
    column-gap: 22px;
    align-items: center;
}*/
.btn-white-boder {
  background-color: #fff !important;
  color: #000 !important;
  border-color: #e3242f !important;
}
.btn-green-boder {
  background-color: #fff !important;
  color: #000 !important;
  border-color: #165a29 !important;
}
.min-w-134 {
  min-width: 134px !important;
}
.pro-cata {
  margin-bottom: 5px;
  color: #898282;
  font-size: 14px;
}
.product-gallery-block .product-gallery-image {
  width: 100%;
  height: 430px;
  display: block;
  position: relative;
  box-sizing: border-box;
  padding: 5px;
  border: #ddd 1px solid;
}
.product-gallery-block .product-gallery-thum {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 15px;
}
.product-gallery-block .product-gallery-thum ul {
  width: 100%;
  height: auto;
  display: flex;
  column-gap: 15px;
}
.product-gallery-block .product-gallery-thum ul > li {
  width: 20%;
  height: auto;
  display: block;
}
.product-gallery-block .product-gallery-thum ul > li a {
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
  padding: 5px;
  border: #ddd 1px solid;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-gallery-block .product-gallery-thum ul > li.active a {
  border-color: #165a29;
}
.product-gallery-block .product-gallery-thum ul > li img {
  width: 100%;
  height: 73px;
  object-fit: contain;
  display: block;
}
.align-center-menu {
  align-items: center;
  height: 45px;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.align-center-menu img {
  width: 26px;
  height: auto;
  display: block;
}
.not-relative {
  position: static !important;
}
.mega-menu .sub-cata-list .pro-thum > a {
  box-shadow: none !important;
  border: #ddd 1px solid;
  background-color: #fff;
}
/*.mega-menu{
    display: block !important;
}*/
.chils-m-tb-15 > .col-lg-3 {
  margin-top: 15px;
  margin-bottom: 15px;
}
.mega-menu h2 {
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  border-bottom: #fff 1px solid;
  padding-bottom: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mega-menu a {
  color: #fff;
}
.fixed-wrapper {
  flex-grow: 1;
  flex-basis: 300px;
  align-self: start;
  position: sticky;
  top: 65px;
  z-index: 3;
}
.white-box-block {
  box-sizing: border-box;
  padding: 15px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #fdf7f7;
  border-radius: 10px;
}
.filter-loop {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}
.filter-loop:last-child {
  margin: 0px;
}
.filter-loop h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: #1e2f49;
  border-bottom: #ddd 1px solid;
  padding-bottom: 5px;
  margin: 0 0 10px 0;
}
.filter-body {
  position: relative;
}
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}
.filter-body ul > li {
  margin-bottom: 5px;
}
.filter-body label {
  margin: 0px;
}
header.sticky-shadow {
  width: 100%;
  box-shadow: 0 2px 4px 0px rgb(0 0 0 / 40%);
  background-color: #fff;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
}

.thank-u-holder {
  width: 100%;
  height: auto;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  padding: 35px;
}
.thank-u-holder figure {
  width: 100%;
  height: auto;
  display: inline-block;
  text-align: center;
}
#otp {
  width: 100%;
  max-width: 380px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 25px;
}
.product-details-block
  .product-top-block
  .product-describtion-block
  .seller-top
  h2 {
  font-size: 18px;
  margin: 0px;
}
.enq-details {
  box-sizing: border-box;
  padding: 35px 0.75rem;
}
#image_captcha {
  display: inline-block;
}
.captcha-refresh {
  width: 45px;
  height: 45px;
  display: inline-block;
}
.captcha-refresh img {
  width: 100%;
  height: 45px;
  object-fit: contain;
}
.inner-banner-section {
  position: relative;
  height: 360px;
  background-size: cover !important;
  align-items: center;
  display: inline-flex;
  width: 100%;
  background-position: center !important;
}
.inner-banner-section .titlebar {
  position: relative;
}
.inner-banner-section .titlebar h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 10px;
}
#breadcrumbs {
  display: inline-block;
  font-size: 14px;
  margin-top: 15px;
  transform: translateY(-51%);
  font-weight: 600;
  border-radius: 4px;
  color: #ffc107;
}
#breadcrumbs ul {
  padding: 0;
}
#breadcrumbs ul li {
  display: inline-block;
  list-style: none;
  margin: 0 0 0 7px;
}
#breadcrumbs ul li:first-child {
  margin-left: 0;
}
#breadcrumbs ul li:before {
  content: "";
  display: inline-block;
  height: 0;
  width: 0;
  border-top: 4px solid #fff;
  /* border-bottom: 4px solid transparent; */
  border-left: 4px solid #ffffff;
  font-size: 14px;
  margin-right: 6px;
}
#breadcrumbs ul li a {
  color: #fff;
  font-weight: 600;
}
.common-section {
  padding-top: 45px;
  padding-bottom: 45px;
  position: relative;
}

nav.desktop-nav > ul > li:not(:first-child) {
  position: relative;
}
.desktop-nav > ul > li > ul {
  width: 275px;
  height: auto;
  display: none;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 100%;
  border-top: #fff 1px solid;
}
.desktop-nav > ul > li > ul > li > a {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 12px 15px;
  background-color: #165a29;
  border-radius: 0px;
  transition: all 0.3s;
  color: #fff;
  font-size: 14px;
  border-bottom: #fff 1px solid;
  text-transform: uppercase;
}
.desktop-nav > ul > li > ul > li > a:hover {
  background-color: #4ea162;
}
.desktop-nav > ul > li:hover > ul {
  display: block;
}
.rit-box.who-who .card {
  padding: 25px;
  border: solid 1px #ddd;
  height: auto;
  transition: all 0.6s;
}
.rit-box.who-who .card > .row {
  min-height: 205px;
}
.rit-box.who-who .card:nth-child(odd) {
  background: #d8e1e4;
  border-radius: 6px;
}
.pf-img img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  object-fit: cover;
}
.rit-box .card-title {
  font-weight: 600;
  color: #222;
  font-size: 18px;
  margin-bottom: 0.5rem;
}
.rit-box.who-who p.card-text {
  font-size: 15px;
  color: #6c737e;
  line-height: 24px;
}
.phone-ul li {
  color: #204276;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.startup-box-icon {
  width: 34px;
  height: 34px;
  background: #ececec;
  border-radius: 33px;
  display: inline-block;
  text-align: center;
  /* box-shadow: 1px 1px 11px #a6b2c5; */
  margin-right: 14px;
}
.startup-box-icon i {
  line-height: 2.2;
  color: #ff9800;
}
.square-img {
  position: relative;
}

.square-img::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.square-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 50%;
}

.demo-gallery li {
  margin-bottom: 25px;
}
.demo-gallery li a {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.demo-gallery li a::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.demo-gallery li a img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.quantity-unit {
  white-space: nowrap;
  margin-left: 8px;
  font-size: 16px;
  font-weight: 500;
}
.default-form-txt {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5rem;
  color: #495057;
  background-color: transparent;
  background-clip: padding-box;
  border-bottom: 1px solid #d2d6da;
  appearance: none;
  border-radius: 0;
  transition: 0.2s ease;
  padding: 10px 0 4px;
  box-sizing: border-box;
  height: auto;
  display: flex;
  align-items: center;
}

.empty-block {
  width: 100%;
  height: auto;
  display: flex;
  box-sizing: border-box;
  position: relative;
  flex-wrap: wrap;
  margin: 25px 0;
  align-items: center;
}
.empty-block .empty-img {
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 25px;
}
.empty-block .empty-img img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.empty-block .empty-txt {
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
  text-align: center;
  margin: 0;
  font-size: 26px;
  font-weight: 500;
  color: #165a29;
}
.pro-thum figure img {
  width: 100%;
  height: 90px;
  object-fit: contain;
}
.pro-cata {
  display: flex;
  align-items: center;
}
img.small-icon-cat {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.seller-top .companies-infos {
  justify-content: center;
}
/*header img.navbar-brand {
    display: block;
    height: 82px;
    width: auto;
}*/
.header .header-top .navbar-brand {
  padding: 0px;
  margin: 0px;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  height: 70px !important;
  width: auto !important;
}
img.g20-logo {
  box-sizing: border-box;
  padding: 15px;
  height: 85px;
  object-fit: contain;
}

.organic-watermark {
  width: 47px;
  height: auto;
  display: block;
  position: absolute;
  z-index: 33;
  right: 5px;
  top: 5px;
}
.organic-watermark img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
}
.organic-watermark.pos-right{
  left: auto;
  right: 5px;
}
.banner-search .search-section .form-control {
  color: #fff !important;
}
.trader-form-action {
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  border-top: #ddd 1px solid;
  margin-top: 10px;
}


.owl-theme.arrow-carousel .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 0px;
  padding: 0px;
  background: transparent;
  display: block;
  border-radius: 0px;
  position: absolute;
  z-index: 88;
  top: 50%;
  transform: translateY(-50%);
}
.owl-theme.arrow-carousel .owl-nav .owl-prev {
  left: 0;
}
.owl-theme.arrow-carousel .owl-nav .owl-next {
  right: 0;
}


.vt-products .owl-carousel .product {
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 0px;
    width: 100%;
}


.alert {
  width: auto;
  display: inline-flex;
  position: relative;
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
}
.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}
.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}
.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}
.custom-tooltip{
  font-size: 18px;
}
.order-details-section .card .card{
  border-radius: 0px !important;
  box-shadow: none !important;
}
.mr-8px{
  margin-right: 8px !important;
}
.stamp-mark{
  width: 47px;
  height: auto;
  display: block;
  position: absolute;
  z-index: 4;
  left: 5px;
  top: 5px;
}
.stamp-mark img{
  width: 100%;
  height: auto;
  display: block;
}
.seller-type-icon{
  width: 20px !important;
  height: auto !important;
  display: inline-block !important;
}
.align-ob-center{
  align-items: center;
  justify-content: center;
}
.align-ob-center img{
  margin-right: 4px;
}
.ver-org-seller{
  margin-bottom: 6px;
}
.ver-org-seller > span{
  margin: 0px !important;
  font-size: 14px !important;
}
.order-details-action{
  align-items: center;
  column-gap: 15px;
}
.seller-order-details .form-group label{
  font-weight: 600;
  width: 100%;
  display: inline-block;
  margin: 0 0 6px 0;
}
.grand-summery.table-borderless tr td {
    text-align: right;
    box-sizing: border-box;
    padding: 7px 15px;
}
.grand-summery.table-borderless tr td:nth-child(2) {
    border: 1px #ddd solid !important;
    background-color: #FFF !important;
}
.organic-icon-watermark {
  width: 95px;
  height: auto;
  display: block;
  position: absolute;
  z-index: 5;
  right: 5px;
  top: 5px;
}
.organic-icon-watermark img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
}
body{
  padding-top: 149px;
}
/* ================== Badge Overlay CSS ========================*/
.badge-overlay {
    position: absolute;
    left: 0%;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 100;
    -webkit-transition: width 1s ease, height 1s ease;
    -moz-transition: width 1s ease, height 1s ease;
    -o-transition: width 1s ease, height 1s ease;
    transition: width 0.4s ease, height 0.4s ease
}

/* ================== Badge CSS ========================*/
.badge {
    margin: 0;
    padding: 0;
    color: white;
    padding: 5px 3px;
    font-size: 12px;
/*    font-family: Arial, Helvetica, sans-serif;*/
    text-align: center;
    line-height: normal;
    text-transform: uppercase;
    background: #ed1b24;
    border-radius: 0px !important;
    min-width: 70px !important;
}

.badge::before, .badge::after {
    content: '';
    position: absolute;
    top: 0;
    margin: 0 -1px;
    width: 100%;
    height: 100%;
    background: inherit;
    min-width: 55px
}

.badge::before {
    right: 100%
}

.badge::after {
    left: 100%
}

/* ================== Badge Position CSS ========================*/
.top-left {
    position: absolute;
    top: 0;
    left: 0;
    -ms-transform: translateX(-30%) translateY(0%) rotate(-45deg);
    -webkit-transform: translateX(-30%) translateY(0%) rotate(-45deg);
    transform: translateX(-30%) translateY(0%) rotate(-45deg);
    -ms-transform-origin: top right;
    -webkit-transform-origin: top right;
    transform-origin: top right;
}

.top-right {
    position: absolute;
    top: 0;
    right: 0;
    -ms-transform: translateX(30%) translateY(0%) rotate(45deg);
    -webkit-transform: translateX(30%) translateY(0%) rotate(45deg);
    transform: translateX(30%) translateY(0%) rotate(45deg);
    -ms-transform-origin: top left;
    -webkit-transform-origin: top left;
    transform-origin: top left;
}

.bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    -ms-transform: translateX(-30%) translateY(0%) rotate(45deg);
    -webkit-transform: translateX(-30%) translateY(0%) rotate(45deg);
    transform: translateX(-30%) translateY(0%) rotate(45deg);
    -ms-transform-origin: bottom right;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
}

.bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    -ms-transform: translateX(30%) translateY(0%) rotate(-45deg);
    -webkit-transform: translateX(30%) translateY(0%) rotate(-45deg);
    transform: translateX(30%) translateY(0%) rotate(-45deg);
    -ms-transform-origin: bottom left;
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.top-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.middle-full {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    -ms-transform: translateX(0%) translateY(-50%) rotate(0deg);
    -webkit-transform: translateX(0%) translateY(-50%) rotate(0deg);
    transform: translateX(0%) translateY(-50%) rotate(0deg);
}

.bottom-full {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

/* ================== Badge color CSS ========================*/
.badge.red {
    background: #ed1b24;
}

.badge.orange {
    background: #fa7901;
}

.badge.pink {
    background: #ee2b8b;
}

.badge.blue {
    background: #00adee;
}

.badge.green {
    background: #529b43;
}
.product-infos-block ul{
  list-style: inside !important;
  padding-left: 0px !important;
}
.product-infos-block ol{
  list-style: inside !important;
  padding-left: 0px !important;
}
