/* Common */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*,
::before,
::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: "Nunito Sans", sans-serif;
  color: #282828;
  margin: 0;
  padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
iframe {
  border: 0;
  width: 100%;
  display: block;
}
a {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #282828;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s;
}
a:hover {
  color: #001642;
  outline: 0;
  text-decoration: none;
  transition: all 0.4s;
}
button,
button:hover {
  transition: all 0.4s;
}
svg:not(:root) {
  overflow: hidden;
}
ol,
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

/* End Common */

/* Typography */
h1,
.heading-one {
  font-size: 55px;
  line-height: 75px;
  font-weight: 800;
  color: #030303;
}
h2,
.heading-two {
  font-size: 44px;
  line-height: 60px;
}
h3,
.heading-three {
  font-size: 32px;
  line-height: 44px;
}
h4 {
  font-size: 26px;
  line-height: 38px;
}
h5 {
  font-size: 20px;
  line-height: 27px;
}
h6 {
  font-size: 18px;
  line-height: 25px;
}
h2,
h3,
h4,
h5,
h6 {
  color: #030303;
  font-weight: 700;
}
h1,
h2,
h3,
h4,
h5,
h6,
address,
p,
pre,
blockquote,
dl,
dd,
menu,
table,
caption,
hr {
  margin: 0 0 16px 0;
}
p {
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  color: #5c5c5c;
}
p:last-child {
  margin-bottom: 0;
}
svg {
  display: inline-block;
}
:focus-visible {
  outline: none !important;
}
img {
  max-width: 100%;
  display: block;
  margin: 0;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
}
hr {
  border-top: 1px solid #eaeaea;
  opacity: 1;
  margin: 16px 0 !important;
}
/* End Typography */

/* Form Field */
input,
button,
select,
textarea {
  font-family: "Nunito Sans", sans-serif;
  background: transparent;
  border: 1px solid #cecece;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
  color: #202020;
  border-radius: 8px;
}
input:focus,
input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  outline: none;
  border-color: #001642;
}
input,
select,
textarea {
  width: 100%;
  font-size: 14px;
  box-shadow: none;
  -webkit-box-shadow: none;
  padding: 10px 16px;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #001642;
}
input,
select {
  height: 44px;
  text-overflow: ellipsis;
}
input::placeholder {
  color: #cecece;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("assets/images/icon-down-arrow.svg") !important;
  background-repeat: no-repeat !important;
  background-position: right 6px center !important;
  background-size: 24px !important;
  font-size: 14px;
  line-height: 19px;
  text-indent: 0.01px;
  cursor: pointer;
  padding: 8px 28px 8px 10px;
  border: 1px solid #cecece;
  height: 44px;
  color: #ebeaea;
}
select option {
  color: #282828;
}
input::placeholder,
textarea::placeholder {
  font-size: 14px;
  color: #ebeaea;
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  font-size: 14px;
  color: #ebeaea;
  opacity: 1;
}
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  height: auto;
}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: 0;
  box-shadow: none;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  background: url("assets/images/icon-search-close.svg") no-repeat center;
  background-size: cover;
  width: 16px;
  height: 16px;
  opacity: 1;
  cursor: pointer;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 2px;
  color: #202020;
  display: block;
}
.form-group label .required,
.form-group .error-text {
  color: #ff0303;
}
.form-group .error-text {
  font-size: 14px;
  line-height: 24px;
}
.aligncenter {
  margin: 0 auto;
}
.alignleft {
  margin: 0 0 auto auto;
}
.alignright {
  margin: auto auto 0 0;
}
/* Common Button */
.primary-btn,
.secondary-btn {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  padding: 14px 34px;
  border-radius: 8px;
  text-transform: uppercase;
}
.primary-btn {
  background: #009933;
  color: #fff;
}
.secondary-btn {
  background: #fff;
  color: #001642;
}
.primary-btn:hover,
.secondary-btn:hover {
  background: #001642;
  color: #fff;
}
/* End Common Button */

/* Spacing Style */
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.pt-70 {
  padding-top: 70px;
}
.mt-70 {
  margin-top: 70px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-20 {
  margin-bottom: 20px;
}
/* End Spacing Style */

/* Header */

/* Top Header */
.top-header {
  padding: 10px 0;
  border-bottom: 1px solid #f4f4f4;
}
.top-header-left ul {
  display: flex;
  align-items: center;
}
.top-header-left ul li {
  margin-right: 24px;
}
.top-header-left ul li:last-child {
  margin-right: 0;
}
.top-header-left ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #282828;
  display: block;
  padding-left: 24px;
  position: relative;
  left: 0;
  transition: 0.4s;
}
.top-header-left ul li a:hover {
  text-decoration: underline;
  transition: 0.4s;
}
.top-header-left ul li.phone a {
  background: url("assets/images/icon_call.svg") no-repeat left center;
  background-size: 15px;
}
.top-header-left ul li.email a {
  background: url("assets/images/icon_email.svg") no-repeat left center;
  background-size: 15px;
}
.top-header-left ul li a:hover {
  color: #001642;
  transition: 0.4s;
}
.top-header-right ul {
  display: flex;
  justify-content: flex-end;
  white-space: nowrap;
}
.top-header-right ul li {
  position: relative;
  margin-right: 10px;
  padding-right: 10px;
}
.top-header-right ul li:before {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  background-color: #cecece;
  width: 1px;
  height: 11px;
}
.top-header-right ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #001642;
  transition: 0.4s;
}
.top-header-right ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.top-header-right ul li:last-child::before {
  display: none;
}
.top-header-right ul li a:hover {
  color: #009933;
  transition: 0.4s;
}
/* End Top Header */

/* Middle Header */
.middle-header {
  padding: 10px 0 11px;
}
.middle-header-last-col-wrap > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.middle-header-last-col-wrap ul li {
  margin-right: 19px;
}
.middle-header-last-col-wrap ul li:last-child {
  margin-right: 0;
}
.middle-header-last-col-wrap ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #282828;
  display: block;
  padding-left: 30px;
  position: relative;
  left: 0;
}
.middle-header-last-col-wrap ul li.login-link a {
  background: url("assets/images/icon_user.svg") no-repeat left center;
  background-size: 24px;
  padding-left: 26px;
}
.middle-header-last-col-wrap ul li.login-link a:hover {
  color: #009933;
}
.middle-header-last-col-wrap ul li .cart-link {
  background: url("assets/images/icon_cart.svg") no-repeat left center;
  background-size: 24px;
  appearance: none;
}
.middle-header-last-col-wrap ul li .cart-link > span {
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #009933;
  color: #fff;
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  font-family: "Kulim Park";
}
.header-search .mobile-search {
  display: block;
}
.header-search .mobile-search .dgwt-wcas-sf-wrapp {
  padding: 0;
}
.header-search
  .mobile-search
  .dgwt-wcas-sf-wrapp
  input[type="search"].dgwt-wcas-search-input {
  padding: 12px 36px 12px 16px;
  font-size: 14px;
  line-height: 18px;
  border: 1px solid #cecece;
  border-radius: 8px;
  height: auto;
  font-family: inherit;
  background-color: transparent;
}
.header-search
  .mobile-search
  .dgwt-wcas-sf-wrapp
  input[type="search"].dgwt-wcas-search-input::placeholder {
  color: #5c5c5c;
}
.header-search .mobile-search .dgwt-wcas-sf-wrapp .dgwt-wcas-preloader {
  display: none;
}
.header-search
  .mobile-search
  .dgwt-wcas-sf-wrapp
  button.dgwt-wcas-search-submit {
  background: url(assets/images/icon_search.svg) no-repeat right center;
  background-size: contain;
  border-radius: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  position: absolute;
  min-height: inherit;
  min-width: inherit;
  height: 20px;
  width: 20px;
  left: auto;
  top: 12px;
  pointer-events: none;
  transition: none;
  right: 16px;
}
.header-search
  .mobile-search
  .dgwt-wcas-sf-wrapp
  button.dgwt-wcas-search-submit
  svg {
  display: none;
}
.middle-header-last-col-wrap .header-search {
  display: none;
}

.cart-link::after {
  display: none;
}
.top-cart {
  border: none;
  box-shadow: 0 4px 16px rgb(0 0 0 / 8%);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  transform: none !important;
  inset: initial !important;
  position: absolute;
  left: 0 !important;
  right: auto !important;
  top: 200% !important;
  margin: auto !important;
  visibility: hidden;
  display: block;
  opacity: 0;
  min-width: 90px;
  transition: all 0.1s;
  background: #fff;
  z-index: 9;
  border-top: 3px solid #001642;
  width: 100%;
}
.cart-dropdown .top-cart {
  min-width: 340px;
  padding: 20px;
  left: auto !important;
  right: -40px !important;
}
.open .top-cart {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  top: 150% !important;
}
.cart-dropdown .item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-bottom: 1px solid #dfdfdf;
  padding: 0 0 12px;
  margin: 0 0 12px;
}
.cart-dropdown .item:last-child {
  border-bottom: none;
  padding: 0;
  margin: 0;
}
.woocommerce ul.cart_list li a p {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: #001642;
  margin: 0 0 0 65px;
}
.woocommerce ul.cart_list li a {
  padding-right: 25px;
  padding-left: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #001642;
}
.woocommerce ul.cart_list li a:hover {
  color: #009933;
}
.woocommerce.widget_shopping_cart .cart_list li a.remove {
  position: absolute;
  top: 0;
  left: inherit;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #001642 !important;
  width: 20px;
  height: 20px;
  background: transparent;
  border-radius: 6px;
  line-height: 1;
  font-size: 20px;
  border: 1px solid #001642;
  padding: 0;
  z-index: 9;
}
.woocommerce.widget_shopping_cart .cart_list li a.remove:hover {
  background-color: #009933;
  color: #fff !important;
  border-color: #009933;
}
.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li {
  padding: 8px 0;
}
.woocommerce.widget_shopping_cart .cart_list li:first-child {
  padding-top: 0;
}
span.quantity {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  margin: 0 0 0 65px;
  display: block;
}
.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  float: left;
  margin: 0 15px 0 0;
  box-shadow: none;
}
.cart_list li a:hover {
  color: #009933;
}
.cart_list li a img {
  width: 50px !important;
  height: 50px !important;
  object-fit: cover;
}
.top-cart
  .widget_shopping_cart
  .widget_shopping_cart_content
  p.woocommerce-mini-cart__total.total {
  font-weight: 500;
  color: #001642;
}
.top-cart .woocommerce-mini-cart__total.total strong {
  color: #009933;
}
.top-cart
  .widget_shopping_cart
  .widget_shopping_cart_content
  p.woocommerce-mini-cart__total.total
  span.woocommerce-Price-amount {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #001642;
}
.woocommerce-mini-cart__buttons.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.woocommerce-mini-cart__buttons.buttons a {
  border: none;
  border-radius: 8px;
  background-color: #001642;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  color: #ffffff;
  padding: 8px 12px;
  margin: 0 !important;
  transition: 0.4s;
  width: auto !important;
  text-transform: uppercase;
}
.woocommerce-mini-cart__buttons.buttons a:hover {
  background-color: #009933;
  color: #fff;
  transition: 0.4s;
}
.cart_list {
  padding: 0 12px 0 0 !important;
  margin: 0;
  width: 100%;
  max-height: 248px;
  overflow-y: auto;
  /* Fire Fox */
  scrollbar-color: #009933 transparent;
  scrollbar-width: thin;
}
.cart_list::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
  border-radius: 8px;
}
.cart_list::-webkit-scrollbar-thumb {
  background: #009933;
  border-radius: 8px;
  background-color: #009933;
}
.cart_list::-webkit-scrollbar-track {
  background: transparent;
}
/* End Middle Header */

/* Bottom Header */
.bottom-header {
  background: #f4f4f4;
  padding: 12px 0 0;
}
.main-navigation {
  padding: 0;
}
.main-navigation .menu-toggle {
  display: none;
}
.main-navigation .site-nav {
  display: flex;
  align-items: center;
}
.main-navigation .site-nav > .menu-item {
  margin-right: 37px;
  position: relative;
  padding-bottom: 12px;
}

.mobile {
  display: none;
}
body .offcanvas {
  max-width: 90%;
}
body .offcanvas-header {
  justify-content: flex-end;
}

.main-navigation .site-nav .menu-item > a {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #001642;
  transition: 0.4s;
  position: relative;
  display: flex;
  align-items: center;
}
.main-navigation .site-nav .menu-item > a:hover {
  color: #009933;
  transition: 0.4s;
}
.main-navigation .site-nav .menu-item:last-child {
  margin-right: 0;
}
.main-navigation .site-nav .menu-item-has-children > a:after {
  content: "";
  background: url("assets/images/icon_drop_down.svg");
  display: block;
  width: 12px;
  height: 12px;
}
.main-navigation .site-nav li .sub-menu {
  position: absolute;
  top: 100%;
  left: inherit;
  right: 0;
  width: 380px;
  border-radius: 0 0 10px 10px;
  /* opacity: 0;
    visibility: hidden; */
  /* transform: translate(0, 10px); 
    transition: 0.4s; */
  background: #fff;
  box-shadow: none;
  z-index: 4;
  column-count: 2;
  padding-bottom: 12px;
  border: 1px solid #eaeaea;
  border-top: 0;
  display: none;
}
.main-navigation .site-nav li:hover .sub-menu {
  /* opacity: 1;
    visibility: visible; */
  /* transform: translate(0,0);
    transition: 0.4s; */
  display: block;
}
body:not(.loaded) ul.sub-menu {
  display: none;
}
.main-navigation .site-nav .menu-item:last-child > a {
  grid-gap: 4px;
}
.main-navigation .site-nav li .sub-menu li {
  width: 100%;
  /* border-bottom: 1px solid #F4F4F4; */
}
.main-navigation .site-nav li .sub-menu li a {
  display: block;
  border-bottom: none;
  padding: 12px 16px 0 16px;
  line-height: 20px;
  position: relative;
  transition: 0.4s;
  left: 0;
  color: #001642;
  font-weight: 400;
}
.main-navigation .site-nav li .sub-menu li:last-child {
  border: none;
}
.main-navigation .site-nav li .sub-menu li a:hover {
  color: #009933;
  transition: 0.4s;
}
.main-navigation .site-nav li.current-menu-item a {
  color: #009933;
  transition: 0.4s;
}
span.arw {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}
span.arw i:before {
  display: none;
}
/* End Bottom Header */

.site-header.smaller .top-header,
.site-header.smaller .middle-header {
  padding: 0;
}
.site-header.smaller .bottom-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  left: 0;
  transition: all 0.1s linear 0s;
  box-shadow: 0px 15px 20px rgb(3 3 3 / 5%);
}
.site-header.smaller .site-content {
  padding-top: 146px;
}
/* End Header */

/* Banner */
.banner {
  background: url("assets/images/banner-bg.jpg") no-repeat center #83c8df;
  position: relative;
  background-size: cover;
}
.banner .banner-left-image {
  transform: translateY(370px);
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.banner .banner-left-image .image {
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  margin-right: 0px;
  padding-top: 102px;
}
.banner .content .title {
  margin: 0;
  color: #030303;
  transform: translateY(370px);
  transition: all 0.8s ease-in-out;
  opacity: 0;
}
.banner .content p {
  margin: 0 0 16px;
  transform: translateY(370px);
  transition: all 1.2s ease-in-out;
  opacity: 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #030303;
  max-width: 314px;
}
.banner .content .subtitle {
  font-weight: 900;
  margin: 0 0 40px 0;
  transform: translateY(370px);
  transition: all 1.6s ease-in-out;
  opacity: 0;
  font-size: 44px;
  line-height: 60px;
  text-transform: uppercase;
}
.banner .content .subtitle span {
  font-weight: 300;
  display: inline-block;
}
.banner-btn-group {
  transform: translateY(370px);
  transition: all 1.8s ease-in-out;
  opacity: 0;
}
.banner .banner-right-image {
  transform: translateX(1000px);
  transition: all 2.4s;
  opacity: 0;
}
.banner .banner-right-image .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner .swiper-slide-active .content .title,
.banner .swiper-slide-active .content p,
.banner .swiper-slide-active .content .subtitle,
.banner .swiper-slide-active .banner-btn-group,
.banner .swiper-slide-active .banner-left-image {
  transform: translateY(0px);
  opacity: 1;
}
.banner .swiper-slide-active .banner-right-image {
  transform: translateX(0);
  opacity: 1;
}
.banner-content,
.banner-btn-group {
  display: flex;
  align-items: center;
}
.banner .banner-button-next,
.banner .banner-button-prev {
  position: absolute;
  width: 35px;
  height: 35px;
  background-color: rgb(255 255 255 / 20%);
  border: 1px solid transparent;
  border-radius: 0;
  transition: all 0.4s;
  z-index: 2;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: auto;
  color: #fff;
}
.banner .banner-button-prev {
  left: 24px;
}
.banner .banner-button-next {
  right: 24px;
}
.banner .banner-button-next:hover,
.banner .banner-button-prev:hover {
  transition: all 0.4s;
}
.banner .banner-button-next::after,
.banner .banner-button-prev::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url("assets/images/slider-right-arrow.svg") no-repeat center;
  background-size: contain;
  width: 16px;
  height: 16px;
  transition: all 0.4s;
  opacity: 0.5;
}
.banner .banner-button-prev::after {
  right: 0;
  left: 0;
  transform: rotate(180deg);
  transition: all 0.4s;
}
.banner .banner-button-next.swiper-button-disabled,
.banner .banner-button-prev.swiper-button-disabled {
  background-color: rgb(255 255 255 / 20%);
  cursor: auto;
  pointer-events: none;
}
.banner .banner-button-next:hover::after,
.banner .banner-button-prev:hover::after {
  transition: all 0.4s;
  opacity: 1;
}
/* .banner .banner-button-next.swiper-button-disabled, 
.banner .banner-button-prev.swiper-button-disabled {
    opacity: 0.2;
    cursor: auto;
    pointer-events: none;
} */
.banner .swiper-slide {
  overflow: hidden;
}
.banner .banner-content {
  padding: 106px 0 106px 40px;
}
.banner .banner-right-image .image {
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  right: 0px;
  padding-top: 126px;
}
/* End Banner */

/* Brand slider */
.brand {
  padding: 60px 0;
}
.brand-slider .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #ebeaea;
  border-radius: 4px;
  padding: 18px 30px;
  max-width: 166px;
}
.brand-slider .swiper-slide {
  height: auto;
}
/* End Brand slider */

/* New Arrivals */
.section-title {
  text-align: center;
  position: relative;
}
.section-title h2 {
  display: inline-block;
}
.woocommerce
  .tinv-wishlist
  .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
  position: absolute;
  width: 20px;
  height: 20px;
  vertical-align: sub;
  top: 16px;
  right: 16px;
  margin: 0;
  z-index: 9;
  transition: 0.4s;
}
.woocommerce
  .tinv-wishlist
  .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before,
.woocommerce
  .tinv-wishlist
  .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:after {
  content: "";
  cursor: pointer;
  background-image: url(assets/images/icon_wishlist.svg);
  background-size: cover;
  height: 20px;
  width: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3D(-50%, -50%, 0);
  margin: 0;
  font-family: inherit !important;
  font-size: 0;
  transition: 0.4s;
}
.woocommerce
  .tinv-wishlist
  .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:after {
  opacity: 0;
  background-image: url(assets/images/icon_wishlist_fill.svg);
}
.woocommerce
  .tinv-wishlist
  .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:hover:after {
  opacity: 1;
  transition: 0.4s;
}
.woocommerce
  .tinv-wishlist
  .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt.tinvwl-product-make-remove:before {
  background-image: url(assets/images/icon_wishlist_fill.svg);
}
.woocommerce
  .tinv-wishlist
  .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt.tinvwl-product-make-remove:after {
  -webkit-animation: ascend ease-in-out 800ms;
  animation: ascend ease-in-out 800ms;
}
@-webkit-keyframes ascend {
  0% {
    transform: translate3D(-50%, -50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate3D(-50%, -200%, 0);
    opacity: 0;
  }
}
@keyframes ascend {
  0% {
    transform: translate3D(-50%, -50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate3D(-50%, -200%, 0);
    opacity: 0;
  }
}

.woocommerce ul.products {
  margin: 0;
}
.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 12px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ebeaea;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  max-width: 267px;
  width: 100%;
  float: none;
}
.woocommerce ul.products li.product:hover {
  border-color: transparent;
  box-shadow: 0px 0px 20px rgba(206, 206, 206, 0.3);
}
.woocommerce ul.products.columns-4 li.product {
  width: calc(100% / 4 - 24px) !important;
}
.woocommerce ul.products li.product a img {
  height: 157px;
  object-fit: contain;
}
.woocommerce ul.products li.product .product-box-wrapper a.thumbnail {
  display: block;
  transition: 0.4s;
  padding: 30px;
}
.woocommerce ul.products li.product .product-box-wrapper a.thumbnail img {
  transition: 0.4s;
}
.woocommerce ul.products li.product:hover .product-box-wrapper a.thumbnail img {
  transform: rotateY(180deg);
  transition: 0.4s;
}
.woocommerce ul.products li.product .woocommerce-loop-product_title {
  padding: 0;
  text-align: left;
  margin: 0;
}
.woocommerce ul.products li.product .woocommerce-loop-product_title a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #030303;
  text-align: left;
  margin: 8px 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}
.woocommerce ul.products li.product .woocommerce-loop-product_title a:hover {
  color: #009933;
}
.inner-content {
  display: flex;
  flex-direction: column;
}
.woocommerce ul.products li.product .price-rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.woocommerce ul.products li.product .price {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #030303;
  margin: 0;
  order: 1;
}
.woocommerce ul.products li.product .star-rating {
  font-size: 12px;
  line-height: normal;
  margin: 0;
  order: 2;
  height: 18px;
}
.woocommerce .star-rating span {
  height: 100%;
}
.woocommerce .star-rating span::before {
  color: #ffc107;
}
.woocommerce ul.products li.product .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  gap: 12px;
  width: 100%;
  order: 2;
}
.woocommerce ul.products li.product .btn-wrapper .add_to_cart_button,
a.button.wp-element-button.product_type_simple {
  background: transparent;
  padding: 10px 20px;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #5c5c5c;
  text-transform: uppercase;
  border: 1px solid #cecece;
  border-radius: 8px;
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
.woocommerce ul.products li.product .btn-wrapper .add_to_cart_button:hover,
a.button.wp-element-button.product_type_simple:hover {
  background: #001642;
  color: #fff;
  border-color: #001642;
  transition: 0.4s;
}
.woocommerce ul.products li.product .btn-wrapper .add_to_cart_button.added {
  padding: 10px 18px;
}
a.button.wp-element-button.product_type_simple {
  margin-top: 0 !important;
}
.woocommerce
  ul.products
  li.product
  .btn-wrapper
  .woocommerce-products-compare-compare-button {
  margin: 0;
  border: 1px solid #cecece;
  border-radius: 8px;
  padding: 0;
  font-size: 0;
  line-height: normal;
  transition: 0.4s;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  position: relative;
}
.woocommerce
  ul.products
  li.product
  .btn-wrapper
  .woocommerce-products-compare-compare-button:hover {
  background: #ebeaea;
  color: #fff;
  border-color: #ebeaea;
  transition: 0.4s;
}
.woocommerce
  ul.products
  li.product
  .btn-wrapper
  .woocommerce-products-compare-compare-button
  label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.woocommerce
  ul.products
  li.product
  .btn-wrapper
  .woocommerce-products-compare-compare-button
  label
  .woocommerce-products-compare-checkbox {
  background: url(assets/images/icon_compare.svg) no-repeat center;
  background-size: 20px;
  font-size: 0;
  cursor: pointer;
  appearance: none;
  border: none;
  border-radius: 0;
  flex-shrink: 0;
  padding: 21px;
}
/* .woocommerce ul.products li.product .btn-wrapper .woocommerce-products-compare-compare-button label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(assets/images/icon_compare.svg) no-repeat center;
    background-size: contain;
    font-size: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
} */
/* .woocommerce-products-compare-compare-button label input[type="checkbox"] {display: none;} */
.woocommerce
  ul.products
  li.product
  .btn-wrapper
  .woocommerce-products-compare-compare-button.checked
  label
  .woocommerce-products-compare-checkbox {
  background: none;
  display: none;
}
.woocommerce-products-compare-compare-link {
  display: none;
}
p.woocommerce-products-compare-compare-button.checked
  .woocommerce-products-compare-compare-link {
  padding: 9px 11px;
}
.woocommerce-products-compare-compare-link .dashicons,
.woocommerce-products-compare-compare-link .dashicons-before:before {
  width: 20px;
  height: 20px;
  font-size: 22px;
  position: static;
}
.woocommerce-products-compare-compare-link .dashicons-external:before {
  color: #5c5c5c;
}
.woocommerce
  ul.products
  li.product
  .woocommerce-products-compare-compare-button.checked
  label:before {
  display: none;
}
.woocommerce
  ul.products
  li.product
  .btn-wrapper
  .woocommerce-products-compare-compare-button.checked
  .woocommerce-products-compare-compare-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.woocommerce
  ul.products
  li.product
  .woocommerce-products-compare-compare-button.checked
  .woocommerce-products-compare-compare-link {
  visibility: visible;
}
.woocommerce
  ul.products
  li.product
  .btn-wrapper
  .woocommerce-products-compare-compare-button.checked {
  background-color: #ebeaea;
}
.product-compare p {
  text-align: center;
}
.new-arrival,
.feature-product {
  margin-bottom: -20px;
}
.new-arrival-slider,
.featured-products-slider {
  padding: 20px 0;
}
.new-arrival-slider-col,
.featured-products-slider-col {
  position: relative;
}
.new-arrival .new-arrival-button-next,
.new-arrival .new-arrival-button-prev,
.feature-product .feature-product-button-next,
.feature-product .feature-product-button-prev {
  position: absolute;
  width: 35px;
  height: 35px;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: all 0.4s;
  z-index: 2;
  top: 15px;
  right: 18px;
  left: auto;
  opacity: 0.2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
.new-arrival .new-arrival-button-next::after,
.new-arrival .new-arrival-button-prev::after,
.feature-product .feature-product-button-next::after,
.feature-product .feature-product-button-prev::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url("assets/images/slider-right-arrow.svg") no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  transition: all 0.4s;
  filter: brightness(0);
}
.new-arrival .new-arrival-button-prev,
.feature-product .feature-product-button-prev {
  left: auto;
  right: 50px;
  transform: rotate(180deg);
}
.new-arrival .new-arrival-button-next:hover,
.new-arrival .new-arrival-button-prev:hover,
.feature-product .feature-product-button-next:hover,
.feature-product .feature-product-button-prev:hover {
  transition: all 0.4s;
  opacity: 1;
}
.woocommerce ul.products li.product .btn-wrapper a.added_to_cart {
  display: none;
}

/* End New Arrivals */

/* Shop By Category */
.shop-by-category {
  position: relative;
  text-align: center;
}
.shop-by-category:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(235 234 234 / 40%);
}
.shop_by_category_content {
  position: relative;
  z-index: 2;
}
.shop_by_category_box {
  background: #ffffff;
  border: 1px solid #ebeaea;
  border-radius: 8px;
  padding: 14px 32px;
  min-height: 230px;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop_by_category_box img {
  margin: 0 auto;
  transition: 0.4s;
}
.shop_by_category_box:hover img {
  transform: rotateY(180deg);
  transition: 0.4s;
}
.shop_by_category_col h5 a {
  font-size: 20px;
  line-height: 30px;
}
.shop_by_category_col h5 a:hover {
  color: #009933;
}
/* End Shop By Category */

/* Top Selling Products */
.best-selling .view-all-btn {
  text-align: center;
  margin-top: 50px;
}
.best-selling .woocommerce ul.products {
  margin: 0 -12px;
  display: flex;
}
/* End Top Selling Products */

/* Mobility Scooter */
.mobilityscooterbox {
  background: linear-gradient(90deg, #f4f4f4 16.89%, #e3e3e3 90.13%);
  padding: 33px 60px;
  border-radius: 24px;
}
.mobilityscooterbox-content h2 {
  font-size: 30px;
  line-height: normal;
  margin-bottom: 10px;
}
.mobilityscooterbox-content span {
  display: block;
}
.mobilityscooterbox-content p {
  font-size: 20px;
  font-weight: 400;
  color: #030303;
  line-height: 30px;
  margin-bottom: 20px;
}
.mobilityscooterbox-content p:last-child {
  margin-bottom: 0;
}
.mobilityscooterbox-content .mobility-small-img a {
  margin-top: 10px !important;
}
.mobilityscooterbox-content p br {
  display: none;
}
.mobilityscooterbox-content ul {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
/* .mobilityscooterbox-content ul li {
    margin-right: 20px;
    position: relative;
} */
.mobilityscooterbox-content ul li h3 {
  font-size: 20px;
  line-height: normal;
  margin: 0;
}
.img-btn-wrapper .mobility-small-img {
  border-radius: 8px;
  overflow: hidden;
}
.img-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
/* .mobilityscooterbox-content ul li:last-child:after {
    content: '';
    background-color: #5C5C5C;
    width: 126px;
    height: 1px;
    position: absolute;
    top: 50%;
    right: -140px;
} */

@-webkit-keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.hvr-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-push:hover,
.hvr-push:focus,
.hvr-push:active {
  -webkit-animation-name: hvr-push;
  animation-name: hvr-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* End Mobility Scooter */

/* Free Guide */
.free-guide {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.free-guide-content {
  position: relative;
  z-index: 5;
}
.free-guide-content h2 {
  margin-bottom: 14px;
  max-width: 457px;
}
.free-guide-content p {
  color: #030303;
  margin-bottom: 14px;
  max-width: 624px;
}
.free-guide-content span {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #030303;
  display: block;
  margin-bottom: 56px;
}
.free-guide-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
}
.free-guide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* End Free Guide */

/* Testimonial */
.testimonial {
  padding: 60px 0 0;
}
.testimonial-box {
  background: #f4f4f4;
  border-radius: 24px;
  padding: 60px 60px 84px 60px;
  text-align: center;
}
.testimonial-content {
  max-width: 752px;
  margin: 0 auto;
}
.testimonial-slider {
  position: relative;
}
.testimonial-inner-box {
  border: 1px solid #cecece;
  border-radius: 10px;
  padding: 50px 40px 30px;
  max-width: 752px;
  margin: 54px auto 30px;
}
.testimonial-inner-box span.quote-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: url("assets/images/icon_quote.svg") no-repeat center;
  background-size: contain;
  width: 52px;
  height: 52px;
  margin: 25px auto 0;
  display: block;
}
.testimonial-inner-box h6 {
  font-weight: 600;
  margin-bottom: 15px;
}
.testimonial-inner-box p {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 12px 0;
  color: #030303;
}
.testimonial-inner-box span {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #009933;
}
.testimonial-box {
  position: relative;
}
.testimonial-box .testimonial-button-next,
.testimonial-box .testimonial-button-prev {
  position: absolute;
  top: inherit;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: all 0.4s;
  z-index: 2;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 60px;
}
.testimonial-box .testimonial-button-next {
  left: 30px;
}
.testimonial-box .testimonial-button-prev {
  right: 30px;
}
.testimonial-box .testimonial-button-next:hover,
.testimonial-box .testimonial-button-prev:hover {
  transition: all 0.4s;
}
.testimonial-box .testimonial-button-next::after,
.testimonial-box .testimonial-button-prev::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url("assets/images/icon_right_arrow_black.svg") no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  transition: all 0.4s;
  opacity: 0.2;
}
.testimonial-box .testimonial-button-prev::after {
  transform: rotate(180deg);
}
.testimonial-box .testimonial-button-next.swiper-button-disabled,
.testimonial-box .testimonial-button-prev.swiper-button-disabled {
  opacity: 1;
}
.testimonial-box .testimonial-button-next:hover::after,
.testimonial-box .testimonial-button-prev:hover::after {
  opacity: 1;
}
/* End Testimonial */

/* Mobility Shop */
.mobility-shop {
  text-align: center;
}
.mobility-shop h3 {
  margin: 0 0 24px 0;
}
.mobility-shop p {
  margin: 0 0 14px 0;
}
.mobility-shop p:last-child {
  margin: 0;
}
/* End Mobility Shop */

/* Footer */
.site-footer {
  background: #282828;
  padding-top: 30px;
}
.site-footer .site-branding a {
  filter: brightness(0) invert(100);
}
.emaillist .es_subscription_form .es-form-field-container {
  display: flex;
  align-items: center;
}
.emaillist .es_subscription_form p {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
}
.emaillist .es_subscription_form .es-form-field-container .gjs-row:first-child {
  display: none;
}
.emaillist .es_subscription_form .es-form-field-container .gjs-row {
  width: 100%;
  margin: 0;
}
.emaillist .es_subscription_form .es-form-field-container input[type="email"] {
  height: 50px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  width: 100%;
  min-width: 386px;
  padding: 16px;
}
.emaillist .es_subscription_form .es-form-field-container input[type="submit"] {
  width: auto;
  background: #009933;
  border-radius: 8px;
  padding: 14px 34px;
  color: #fff;
  height: 50px;
  border: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
  margin-left: 16px;
  transition: 0.4s;
}
.emaillist
  .es_subscription_form
  .es-form-field-container
  input[type="submit"]:hover {
  background: #fff;
  transition: 0.4s;
  color: #282828;
}
.footer-top {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}
.footer-middle {
  padding-bottom: 18px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}
.footer-middle h5,
span.footer-title {
  color: #fff;
  margin-bottom: 15px;
}
.footer-middle .contact-info li {
  margin-bottom: 14px;
}
.footer-middle .contact-info li:last-child {
  margin-bottom: 0;
}

.footer-middle .footer-title {
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer-middle .contact-info li p,
.footer-middle .contact-info li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  display: block;
  padding-left: 34px;
  position: relative;
  left: 0;
  transition: 0.4s;
}
.footer-middle .contact-info li.address {
  background: url("assets/images/icon_pin.svg") no-repeat left top 2px;
  background-size: 20px;
}
.footer-middle .contact-info li p br {
  display: none;
}
.footer-middle .contact-info li.email a {
  background: url("assets/images/icon_email_green.svg") no-repeat left center;
  background-size: 20px;
  filter: brightness(0) invert(1);
}
.footer-middle .contact-info li.phone a {
  background: url("assets/images/icon_call_green.svg") no-repeat left center;
  background-size: 20px;
  filter: brightness(0) invert(1);
}
.footer-middle .contact-info li.email a:hover,
.footer-middle .contact-info li.phone a:hover {
  filter: none;
  color: #093;
}
.social-media {
  display: flex;
  align-items: center;
  margin-top: 27px;
}
.social-media li {
  margin-right: 22px;
}
.social-media li:last-child {
  margin-right: 0;
}
.social-media li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: #009933;
  border-radius: 50%;
  position: relative;
  top: 0;
  transition: 0.4s;
}
.social-media li a:hover {
  top: -5px;
  transition: 0.4s;
}
.customer-services,
.useful-information {
  display: block;
  column-count: 2;
}
.customer-services li,
.useful-information li {
  margin-bottom: 14px;
}
.customer-services li a,
.useful-information li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  transition: 0.4s;
}
.customer-services li a:hover,
.useful-information li a:hover {
  color: #009933;
  transition: 0.4s;
}
.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-bottom-left li {
  position: relative;
  padding-right: 20px;
  margin-right: 20px;
}
.footer-bottom-left li:before {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  background-color: #fff;
  width: 1px;
  height: 12px;
}
.footer-bottom-left li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.footer-bottom-left li:last-child:before {
  display: none;
}
.footer-bottom-left li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}
.footer-bottom-left li a:hover {
  color: #009933;
}
.copyright {
  background: #5c5c5c;
  padding: 12px 0;
}
.copyright p {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #ffffff;
}
.copyright-left {
  text-align: left;
}
.copyright-right {
  text-align: right;
}
.copyright-right p a {
  color: #fff;
}
.copyright-right p a:hover {
  color: #009933;
}

.c-go-top {
  position: fixed;
  right: 12px;
  bottom: 50px;
  display: none;
  background-color: #009933;
  padding: 10px;
  text-decoration: none;
  z-index: 999;
  border: 1px solid #009933;
  border-radius: 100%;
  transition: all 0.4s;
  width: 46px;
  height: 46px;
  text-align: center;
}
.c-go-top svg {
  width: 18px;
  height: 18px;
}
.c-go-top svg path {
  fill: #fff;
}
.c-go-top:hover {
  background-color: #001642;
  border-color: #001642;
}
.es_spinner_image {
  display: none;
}
.lock-img {
  position: fixed;
  right: 12px;
  bottom: 110px;
  z-index: 999;
}
.brands-footer-logo {
  background: #f4f4f4;
  padding: 30px 30px 15px 30px;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.logo-wrapper li {
  margin: 0 auto 15px;
}
.footer-logo-image {
  max-width: 180px;
}
/* .logo-wrapper li:nth-child(2),
.logo-wrapper li:nth-child(4) {
  pointer-events: none;
} */
/* End Footer */

/* Login Page */
.page_title {
  background: #f4f4f4;
  padding: 60px 0;
  text-align: left;
  border-top: 1px solid #ebeaea;
}
.page_title h1 {
  color: #001642;
  margin: 0;
  text-transform: capitalize;
}
.login-inner,
.registration-inner {
  margin: 60px 0;
}
.login-inner .forminator-ui.forminator-custom-form,
.registration-inner .forminator-ui.forminator-custom-form {
  padding: 20px 20px 0 20px !important;
  border: 1px solid #ebeaea !important;
  border-radius: 8px !important;
  max-width: 800px !important;
  margin: 0 auto !important;
}
.forminator-ui#forminator-module-1035.forminator-design--default
  .forminator-label,
.forminator-ui#forminator-module-1032.forminator-design--default
  .forminator-label {
  font-size: 16px;
  line-height: 24px;
  color: #001642 !important;
  font-weight: 700 !important;
  margin-bottom: 10px;
}
.forminator-ui#forminator-module-1035.forminator-design--default
  .forminator-input,
.forminator-ui#forminator-module-1032.forminator-design--default
  .forminator-input {
  border-color: #e6e6e6 !important;
  background-color: #fff !important;
  border-radius: 8px !important;
}
.forminator-ui#forminator-module-1035.forminator-design--default
  .forminator-is_hover
  .forminator-input,
.forminator-ui#forminator-module-1032.forminator-design--default
  .forminator-is_hover
  .forminator-input {
  border-color: #e6e6e6 !important;
  background-color: #fff !important;
  border-radius: 8px !important;
}
.forminator-ui#forminator-module-1035.forminator-design--default
  .forminator-has_error
  .forminator-input,
.forminator-ui#forminator-module-1032.forminator-design--default
  .forminator-has_error
  .forminator-input {
  border-color: #001642 !important;
}
.forminator-ui#forminator-module-1035.forminator-design--default
  .forminator-button-submit,
.forminator-ui#forminator-module-1032.forminator-design--default
  .forminator-button-submit {
  background-color: #009933 !important;
  color: #ffffff !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 22px !important;
  text-transform: uppercase;
  height: 50px;
  border: none;
  border-radius: 8px;
  padding: 14px 34px;
  box-shadow: none;
  transition: 0.4s;
}
.forminator-ui#forminator-module-1035.forminator-design--default
  .forminator-button-submit:hover,
.forminator-ui#forminator-module-1032.forminator-design--default
  .forminator-button-submit:hover {
  background-color: #001642 !important;
  color: #ffffff !important;
  transition: 0.4s;
}
#html-1 label.forminator-label {
  display: none;
}
.forminator-ui#forminator-module-1035.forminator-design--default
  .forminator-description
  a,
.forminator-ui#forminator-module-1032.forminator-design--default
  .forminator-description
  a {
  color: #282828 !important;
  font-weight: 700 !important;
  margin: 0;
}
.forminator-ui#forminator-module-1035.forminator-design--default
  .forminator-description
  a:hover,
.forminator-ui#forminator-module-1032.forminator-design--default
  .forminator-description
  a:hover {
  color: #009933 !important;
}
.forminator-merge-tags p,
.forminator-merge-tags p a {
  font-size: 14px;
  line-height: 20px;
  color: #001540;
  text-transform: capitalize;
}
.forminator-merge-tags p a {
  font-weight: 700;
}
.forminator-merge-tags p a:hover {
  color: #009933 !important;
}
.forminator-ui#forminator-module-1035.forminator-design--default
  .forminator-checkbox
  .forminator-checkbox-box,
.forminator-ui#forminator-module-1032.forminator-design--default
  .forminator-checkbox
  .forminator-checkbox-box {
  border-color: #cecece !important;
  background-color: transparent !important;
  color: #009933 !important;
  border-radius: 4px;
}
.forminator-ui#forminator-module-1035.forminator-design--default
  .forminator-checkbox
  input:checked
  + .forminator-checkbox-box,
.forminator-ui#forminator-module-1032.forminator-design--default
  .forminator-checkbox
  input:checked
  + .forminator-checkbox-box {
  border-color: #009933 !important;
  background-color: transparent !important;
}
.et-db
  #et-boc
  .et_pb_module
  .forminator-ui.forminator-custom-form:not(
    .forminator-size--small
  )[data-grid="open"]
  .forminator-row:not(:last-child),
.forminator-ui.forminator-custom-form:not(
    .forminator-size--small
  )[data-grid="open"]
  .forminator-row:not(:last-child) {
  margin-bottom: 20px !important;
}
.forminator-row.forminator-row-last .forminator-field {
  text-align: right;
}
.forminator-ui#forminator-module-1035.forminator-design--default
  .forminator-checkbox,
.forminator-ui#forminator-module-1035.forminator-design--default
  .forminator-checkbox__label,
.forminator-ui#forminator-module-1035.forminator-design--default
  .forminator-checkbox__label
  p {
  font-size: 14px;
  font-family: inherit !important;
  font-weight: normal;
}
.forminator-ui.forminator-custom-form[data-design="default"]
  .forminator-checkbox
  .forminator-checkbox-box
  ~ span {
  font-weight: 700 !important;
  color: #001642 !important;
  transition: 0.4s !important;
}
.forminator-ui.forminator-custom-form[data-design="default"]
  .forminator-checkbox
  .forminator-checkbox-box
  ~ span:hover {
  color: #009933 !important;
  transition: 0.4s !important;
}
.login-inner .forminator-description-password {
  margin-top: 10px !important;
}
.registration-inner .forminator-success a {
  color: #009933;
  transition: 0.4s;
}
.registration-inner .forminator-success a:hover {
  color: #fff;
  transition: 0.4s;
}
.registration-inner .forminator-checkbox__label p a {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: capitalize;
  color: #001540;
  transition: 0.4s;
}
.registration-inner .forminator-checkbox__label p a:hover {
  color: #009933;
  transition: 0.4s;
}
/* End Login Page */

/* Forgot Password */
.forgot-password form.wc-forgot-pwd-form {
  padding: 20px !important;
  border: 1px solid #ebeaea !important;
  border-radius: 8px !important;
  max-width: 600px !important;
  margin: 0 auto !important;
}
.forgot-password label {
  font-size: 14px;
  line-height: 24px;
  color: #001642;
  font-weight: 700;
  margin-bottom: 10px;
}
.forgot-password input {
  margin-bottom: 20px;
}
button.get_new_password {
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 22px !important;
  text-transform: uppercase;
  height: 50px;
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  box-shadow: none;
  transition: 0.4s;
  background-color: #009933;
  color: #ffffff;
}
button.get_new_password:hover {
  transition: 0.4s;
  background-color: #001642 !important;
  color: #ffffff !important;
}
/* End Forgot Password */

/* Listing Page */
.product-inner-content-wrapper select {
  height: 35px;
  color: #5c5c5c;
}
.vs_container {
  border: 1px solid #ebeaea;
  padding: 16px 27px 24px 16px;
  border-radius: 16px;
  margin-bottom: 24px;
}
.vs_container_inner h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  color: #030303;
  border-bottom: 1px solid #ebeaea;
  padding-bottom: 16px;
  position: relative;
  margin: 0 0 24px 0;
  text-transform: capitalize;
  position: relative;
}
.vs_container_inner h4 a.vs_front_toggle_opened {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(assets/images/icon-down-arrow.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  width: 20px;
  height: 20px;
  font-size: 0;
  transition: 0.4s;
  transform: rotate(180deg);
  float: none;
  position: absolute;
  top: 4px;
  right: 0;
}
.vs_container_inner h4 a.vs_front_toggle_closed {
  background-image: url(assets/images/icon-down-arrow.svg);
  transform: rotate(0deg);
  transition: 0.4s;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  width: 20px;
  height: 20px;
  font-size: 0;
}
.vs_list li {
  margin: 0 0 18px 0;
}
.vs_list li:last-child {
  margin: 0;
}
.vs_list li input[type="radio"] {
  display: none;
}
/* .vs_list.vs_list_radio li {
    margin: 0 0 12px 0;
} */
.vs_list.vs_list_radio li a {
  text-transform: capitalize;
  font-size: 16px;
  line-height: 24px;
  color: #5c5c5c;
}
.vs_list.vs_list_radio li:last-child {
  margin: 0;
}
.vs_list.vs_list_radio li a:hover,
.vs_list.vs_list_radio li.active a {
  color: #009933;
}
.vs_list label {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #5c5c5c;
  transition: 0.4s;
  cursor: pointer;
}
.vs_list li .vs_radio_label:hover {
  color: #009933;
  transition: 0.4s;
}
.vs_list li .vs_radio_label.vs_radio_label_selected {
  color: #009933;
}
.shop-brand .pwb-all-brands .pwb-brands-cols-outer .pwb-brands-col3 {
  margin: 0 0 18px 0;
}
.shop-brand .pwb-all-brands .pwb-brands-cols-outer .pwb-brands-col3:last-child {
  margin: 0;
}
.shop-brand .pwb-all-brands .pwb-brands-cols-outer .pwb-brands-col3 p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
}
.shop-brand .pwb-brands-col3 p a {
  font-size: 16px;
  line-height: 22px;
  color: #5c5c5c;
}
.shop-brand .pwb-brands-col3 p a:hover {
  color: #009933;
}
.vs_list li.empty-product {
  pointer-events: none;
}
.woocommerce-products-header .woocommerce-products-header__title.page-title {
  display: none;
}
.vs_radio_term_reset_visible {
  display: none !important;
}
.vs_products_top_panel {
  margin: 0;
  order: 4;
  width: 100%;
}
.vs_products_top_panel > .vs_products_top_panel_ul {
  position: static;
  margin: 30px 0 5px !important;
  background-color: #f4f4f4;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  padding: 20px !important;
  width: 100%;
  border-radius: 8px;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
.vs_products_top_panel > .vs_products_top_panel_ul > li {
  float: none;
  margin: 10px 0 0 0 !important;
  list-style: none !important;
  width: 100%;
}
.vs_products_top_panel > .vs_products_top_panel_ul > li > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.vs_products_top_panel > .vs_products_top_panel_ul > li > ul li {
  width: auto;
}
.vs_products_top_panel > .vs_products_top_panel_ul > li:last-child {
  margin: 0 !important;
}
.vs_products_top_panel ul .vs_reset_button_2 {
  padding: 10px 12px;
  background-color: #001642;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  border: none;
  border-radius: 8px;
  transition: 0.4s;
}
.vs_products_top_panel ul .vs_reset_button_2:hover {
  background-color: #009933;
  color: #fff;
  transition: 0.4s;
}
.vs_products_top_panel_ul li ul li {
  margin: 0 5px 0 0 !important;
  float: none;
  font-size: 14px;
  line-height: 20px;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  border-radius: 8px;
  background-color: #ebeaea;
  border: 0;
  height: 4px;
  margin: 0;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  border: 0;
  border-radius: 8px;
  background-color: #001642;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  background-color: #009933;
  border-radius: 20px;
  cursor: ew-resize;
  outline: 0;
  top: -6px;
  margin-left: 0;
}
.vs_price_search_container .price_slider_amount .price_label {
  text-align: left !important;
  margin-top: 24px;
  float: none !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-left: 35px;
}
.vs_price_search_container .price_slider_amount .price_label:before {
  content: "Price:";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #5c5c5c;
}
.vs_price_search_container .price_slider_amount .price_label span {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #030303;
  padding-right: 15px;
}
.vs_price_search_container .price_slider_amount .price_label span:last-child {
  padding-right: 0;
}
.vs_price_search_container .price_slider_amount .price_label span.from {
  position: relative;
}
.vs_price_search_container .price_slider_amount .price_label span.from:after {
  content: "-";
  position: absolute;
  margin-left: 5px;
}
.vs_list.vs_list_checkbox {
  max-height: 205px;
  overflow-y: auto;
}
.vs_list.vs_list_checkbox::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
  border-radius: 8px;
}
.vs_list.vs_list_checkbox::-webkit-scrollbar-thumb {
  background: #009933;
  border-radius: 8px;
  background-color: #009933;
}
.vs_list.vs_list_checkbox::-webkit-scrollbar-track {
  background: transparent;
}
.vs_list.vs_list_checkbox li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}
.vs_list.vs_list_checkbox input[type="checkbox"] {
  display: none;
}
.vs_list.vs_list_checkbox .vs_checkbox_term + .vs_checkbox_label {
  position: relative;
  cursor: pointer;
}
.vs_list.vs_list_checkbox .vs_checkbox_term + .vs_checkbox_label:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #cecece;
  border-radius: 4px;
}
.vs_list.vs_list_checkbox
  .vs_checkbox_term:checked
  + .vs_checkbox_label:before {
  background: #009933;
  border: #009933;
}
.vs_list.vs_list_checkbox .vs_checkbox_term:checked + .vs_checkbox_label:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 4px;
  background-image: url(assets/images/icon_tick.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 10px;
  height: 10px;
}

.vs_list.vs_list_checkbox .vs_checkbox_label {
  padding-left: 28px;
  transition: 0.4s;
}
.vs_list.vs_list_checkbox .vs_checkbox_label:hover {
  color: #009933;
  transition: 0.4s;
}
.product-listing-wrapper .woocommerce ul.products {
  margin: 0 -18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto !important;
}
.product-listing-wrapper ul.products.columns-4 li.product {
  width: calc(100% / 3 - 24px) !important;
  margin: 0 12px 24px 12px;
}
.vs_submit_search_form_container {
  display: none;
}
.grid-list-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebeaea;
  flex-wrap: wrap;
}
.woocommerce .woocommerce-ordering {
  margin: 0 !important;
  position: absolute;
  top: -5px;
  right: 0;
  float: none;
}
.woocommerce .woocommerce-result-count {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #030303;
}
.gridlist-toggle {
  display: flex;
  clear: both;
  padding: 0;
  order: -1;
  margin-right: 8px;
}
.gridlist-toggle a {
  box-sizing: border-box;
  text-decoration: none;
  font-weight: 400;
  font-size: 0;
  line-height: 0;
  background: #f4f4f4;
  border-radius: 2px;
  padding: 5px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gridlist-toggle a#grid {
  margin-right: 8px;
}
.gridlist-toggle a:before {
  content: "";
  -webkit-mask-image: url(assets/images/icon_grid.svg);
  mask-image: url(assets/images/icon_grid.svg);
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background: #cecece;
  transition: 0.4s;
  -webkit-mask-size: cover;
}
.gridlist-toggle a:nth-child(2):before {
  content: "";
  -webkit-mask-image: url(assets/images/icon_list.svg);
  mask-image: url(assets/images/icon_list.svg);
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background: #cecece;
  transition: 0.4s;
  -webkit-mask-size: cover;
}
.gridlist-toggle a:hover,
.gridlist-toggle a.active {
  background-color: #f4f4f4;
}
.gridlist-toggle a.active:before {
  background-color: #009933;
}
.gridlist-toggle .dashicons {
  display: none;
}
ul.products
  li.product
  .product-box-wrapper
  .product-box-content
  .inner-content
  p.list-description {
  display: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #282828;
  margin-bottom: 15px;
}
.product-listing-wrapper ul.products.list li.product {
  width: 100% !important;
  flex-direction: row;
  max-width: 100%;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 35px 20px 20px;
}
.product-listing-wrapper ul.products.list li.product .product-box-wrapper {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}
.product-listing-wrapper
  ul.products.list
  li.product
  .product-box-wrapper
  a
  img {
  margin: 0;
  max-width: 235px;
  padding: 30px;
  height: auto;
}
.product-listing-wrapper ul.products.list li.product a.thumbnail {
  width: 50%;
  padding: 0 !important;
}
.product-listing-wrapper ul.products.list li.product .product-box-content {
  width: 100%;
}
.product-listing-wrapper
  ul.products.list
  li.product
  .product-box-content
  .woocommerce-loop-product_title
  a {
  min-height: 30px;
  padding: 0;
  margin: 0 0 8px 0;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}
ul.products.list
  li.product
  .product-box-wrapper
  .product-box-content
  .inner-content
  p.list-description {
  display: block;
}
.product-listing-wrapper ul.products.list li.product .btn-wrapper {
  justify-content: flex-start;
  margin-top: 35px;
}
.product-listing-wrapper ul.products.list li.product .btn-wrapper a {
  width: auto;
}
.product-listing-wrapper ul.products.list li.product .price-rating-wrapper {
  justify-content: flex-start;
  margin-bottom: 16px;
}
.product-listing-wrapper
  ul.products.list
  li.product
  .price-rating-wrapper
  .star-rating {
  margin-left: 24px;
}
.product-listing-wrapper .woocommerce nav.woocommerce-pagination {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid #ebeaea;
}
.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  margin: 0 auto;
  padding: 0;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none;
  padding: 0;
  margin-right: 6px;
  float: none;
  overflow: inherit;
}
.woocommerce nav.woocommerce-pagination ul li:last-child {
  margin-right: 0;
}
.woocommerce nav.woocommerce-pagination ul li .next.page-numbers,
.woocommerce nav.woocommerce-pagination ul li .prev.page-numbers {
  border: 1px solid #5c5c5c;
  font-size: 0 !important;
  width: 35px;
  height: 35px;
  position: relative;
}
.woocommerce nav.woocommerce-pagination ul li .next.page-numbers:after,
.woocommerce nav.woocommerce-pagination ul li .prev.page-numbers:before {
  content: "";
  -webkit-mask-image: url(assets/images/right-arrow.svg);
  mask-image: url(assets/images/right-arrow.svg);
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background: #5c5c5c;
  transition: 0.4s;
  -webkit-mask-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.woocommerce nav.woocommerce-pagination ul li .prev.page-numbers {
  transform: rotate(180deg);
}
.woocommerce nav.woocommerce-pagination ul li .next.page-numbers:hover,
.woocommerce nav.woocommerce-pagination ul li .prev.page-numbers:hover {
  border-color: #009933;
  background-color: #009933;
  transition: 0.4s;
}
.woocommerce nav.woocommerce-pagination ul li .next.page-numbers:hover:after,
.woocommerce nav.woocommerce-pagination ul li .prev.page-numbers:hover:before {
  background: #fff;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  padding: 6px 8px;
  min-width: inherit;
  display: block;
  width: 35px;
  height: 35px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  border-radius: 50%;
  background-color: #fff;
  color: #5c5c5c;
}
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #009933;
  color: #ffffff;
  border-color: #009933 !important;
}
.woocommerce nav.woocommerce-pagination ul li .next.page-numbers:focus:after,
.woocommerce nav.woocommerce-pagination ul li .prev.page-numbers:focus:before {
  border-color: #009933;
  background-color: #fff;
  transition: 0.4s;
}
.mobile-filter {
  display: none;
}
.vs_search_is_going nav.woocommerce-breadcrumb {
  display: block;
}
.vs_products_top_panel li span,
.vs_products_top_panel2 li span {
  background: none;
  position: relative;
  padding-right: 20px;
}
.vs_products_top_panel li span:after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0px;
  border: 1px solid #001642;
  border-radius: 4px;
  -webkit-mask-image: url(assets/images/icon_close.svg);
  mask-image: url(assets/images/icon_close.svg);
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background: #001642;
  transition: 0.4s;
  -webkit-mask-size: cover;
}
.vs_products_top_panel li span:hover:after {
  background: #009933;
}
.woocommerce a.button.loading::after {
  content: "";
}
/* .shop-category ul.vs_list.vs_list_radio {
    border: 1px solid #EBEAEA;
    padding: 16px 27px 24px 16px;
    border-radius: 16px;
    margin-bottom: 24px !important;
} */
/* End Listing Page */

/* Breadcrumb */
.woocommerce-breadcrumb {
  max-width: 1140px;
  margin: 0 auto !important;
  font-weight: 400;
  font-size: 14px !important;
  line-height: 19px;
  color: #5c5c5c !important;
  margin-top: 16px !important;
}
.woocommerce-breadcrumb a {
  color: #001642 !important;
}
.woocommerce-breadcrumb a:hover {
  color: #009933 !important;
}
/* End Breadcrumb */

/* Cart Page */
header.entry-header {
  background: #f4f4f4;
  padding: 60px 0;
  text-align: left;
  border-top: 1px solid #ebeaea;
}
.entry-title {
  color: #001642;
  margin: 0;
}
.woocommerce table.shop_table,
.woocommerce table.woocommerce-orders-table,
.tinv-wishlist table.tinvwl-table-manage-list {
  border: 1px solid #ebeaea;
  margin: 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 8px;
  overflow: hidden;
  border-spacing: 0;
}
.tinv-wishlist table.tinvwl-table-manage-list {
  white-space: nowrap;
}
.woocommerce table.shop_table thead th,
.woocommerce table.woocommerce-orders-table thead th,
.tinv-wishlist table th {
  text-align: center;
  border-bottom: 1px solid #001642;
  background-color: #001642;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  border-right: 0;
}
.woocommerce table.shop_table thead th:last-child,
.woocommerce table.woocommerce-orders-table thead th:last-child {
  border-right: none;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.woocommerce table.woocommerce-orders-table th,
.woocommerce table.woocommerce-orders-table td {
  padding: 12px 16px;
  vertical-align: middle;
  text-align: center;
}
.woocommerce table.shop_table td,
.woocommerce table.woocommerce-orders-table td {
  font-size: 16px;
  line-height: 26px;
}
.woocommerce table.shop_table tr td {
  border-top: 1px solid #eaeaea;
}
.product-thumbnail a,
.product-name a {
  display: inline-block;
  vertical-align: middle;
}
.woocommerce-cart table.cart .product-thumbnail {
  min-width: 100px;
}
.woocommerce-cart table.cart .product-thumbnail img {
  width: 75px;
  display: block;
}
.product-thumbnail {
  padding-right: 0 !important;
}
.product-name {
  padding-left: 10px !important;
  text-align: left !important;
}
.product-price,
.product-subtotal {
  text-align: center;
}
table.cart td.actions {
  padding-top: 30px;
  padding-bottom: 30px;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: 100%;
  margin: 0 10px 0 0;
  float: none;
  border: 1px solid #ebeaea;
  padding: 10px;
  color: #202020;
}
.woocommerce-cart table.cart td.actions .coupon .input-text::placeholder {
  color: #5c5c5c;
}
.woocommerce-cart .cart .button {
  float: none !important;
  background: #009933;
  padding: 8px 14px;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff !important;
  text-transform: uppercase;
  border: 1px solid #009933;
  border-radius: 8px;
  flex-shrink: 0;
}
.woocommerce-cart .cart .button:hover {
  background: #001642 !important;
  color: #fff !important;
  border: 1px solid #001642 !important;
}
.woocommerce-cart .woocommerce .cart .button:disabled[disabled]:hover {
  opacity: 1;
  background: #001642 !important;
  color: #fff !important;
  border: 1px solid #001642 !important;
}
.woocommerce a.remove {
  color: #001642 !important;
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 8px;
  line-height: 1;
  font-size: 26px;
  border: 1px solid #001642;
}
.woocommerce a.remove:hover {
  color: white !important;
  background: #009933;
  border-color: #009933;
}
.woocommerce-page table.cart td.actions .coupon {
  float: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
  padding: 0;
}
table.cart td.product-name a {
  font-weight: 700;
}
table.cart td.product-name p,
table.shop_table td.product-name p {
  font-size: 14px;
  line-height: 22px;
  word-break: break-all;
}
.woocommerce .quantity .qty {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
  border-top: 1px solid #ebe9eb;
  padding: 10px 0;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #282828;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.woocommerce.widget_shopping_cart .buttons::after,
.woocommerce.widget_shopping_cart .buttons::before {
  display: none;
}
.shopping-cart-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
  padding: 20px;
  position: relative;
  background-color: #fff;
  border: 1px solid #ebebee;
  border-radius: 8px;
}
.cart_totals table.shop_table {
  border: none;
}
.cart_totals > h2 {
  font-size: 24px !important;
  line-height: 28px !important;
  margin: 0 0 10px 0;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: block;
  text-align: center;
  margin-bottom: 0;
  font-size: 18px;
  padding: 16px;
  background-color: #009933;
  border-radius: 8px;
  font-weight: 400;
  text-transform: uppercase;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background-color: #001642;
}
.woocommerce-shipping-methods li {
  text-align: right;
}
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr td p {
  font-size: 16px;
  line-height: 26px;
  color: #282828;
}
.woocommerce-cart
  .cart-collaterals
  .cart_totals
  .woocommerce-shipping-destination {
  text-transform: capitalize;
  font-size: 14px;
}
.woocommerce-cart
  .cart-collaterals
  .cart_totals
  .woocommerce-shipping-destination
  strong {
  font-weight: 400;
}
.woocommerce-cart .cart-collaterals .shipping-calculator-button {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.woocommerce-cart .cart-collaterals .cart_totals table th {
  text-align: left;
}
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart
  .cart-collaterals
  .cart_totals
  .woocommerce-shipping-destination {
  text-align: right;
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #ebeaea;
  border-radius: 8px;
  height: 44px;
  position: relative;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  font-size: 14px;
  line-height: 28px;
  color: #202020;
  padding: 7px 30px 7px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("assets/images/icon-down-arrow.svg") !important;
  background-repeat: no-repeat !important;
  background-position: right 6px center !important;
  background-size: 18px !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow,
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}
.select2-dropdown {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  top: 0;
}
.select2-results__option {
  padding: 6px;
  font-size: 14px;
  line-height: 22px;
}
.select2-container--default .select2-results__option[aria-selected="true"],
.select2-container--default .select2-results__option[data-selected="true"] {
  background-color: #f4f4f4;
}
.select2-container--default
  .select2-results__option--highlighted[aria-selected],
.select2-container--default
  .select2-results__option--highlighted[data-selected] {
  background-color: #009933;
  color: #fff;
}
.shipping-calculator-form .form-row {
  padding: 5px !important;
  margin: 0 0 8px !important;
}
.woocommerce form .form-row .select2-container {
  width: 100% !important;
  line-height: 2em;
}
.woocommerce .cart-collaterals table.shop_table th,
.woocommerce .cart-collaterals table.shop_table td {
  padding: 12px 0;
}
.woocommerce .cart-collaterals table.shop_table tr.cart-subtotal td span {
  font-weight: 700;
}
.woocommerce-cart .wc-proceed-to-checkout {
  padding: 0;
}
p.return-to-shop {
  margin-top: 20px;
}
/* End Cart Page */

/*  */
.heateor_sss_sharing_container.heateor_sss_horizontal_sharing {
  display: none;
}
/*  */

/* My Account */
.account-pages nav.woocommerce-MyAccount-navigation {
  padding: 30px;
  background: #f4f4f4;
  width: 100%;
  float: none;
  border-radius: 8px;
  border: 1px solid #ebeaea;
}
nav.woocommerce-MyAccount-navigation ul li {
  margin-bottom: 8px;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}
nav.woocommerce-MyAccount-navigation ul li:before {
  display: none;
}
nav.woocommerce-MyAccount-navigation ul li:last-child {
  margin-bottom: 0;
}
nav.woocommerce-MyAccount-navigation ul li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  transition: 0.4s;
  color: #282828;
  text-transform: capitalize;
}
nav.woocommerce-MyAccount-navigation .is-active a,
nav.woocommerce-MyAccount-navigation a:hover {
  color: #009933;
  transition: 0.4s;
}
.account-pages .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
}
.woocommerce-MyAccount-content p {
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 10px 0;
}
.woocommerce-MyAccount-content a {
  color: #001642;
  font-weight: 700;
  transition: all 0.4s;
  font-size: 14px;
  line-height: 20px;
}
/* .woocommerce table.woocommerce-orders-table {
    border: none;
}
.woocommerce table.woocommerce-orders-table thead th {
    text-align: center;
    border-bottom: none;
    background-color: transparent;
    color: #282828;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    border-right: none;
} */
.woocommerce table.shop_table td .woocommerce-button,
.woocommerce-message .wp-element-button,
.woocommerce-error .wp-element-button {
  font-size: 14px !important;
  margin: 0;
  line-height: 22px !important;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: 10px 25px !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  left: auto;
  color: #ffffff !important;
  background-color: #009933 !important;
  border: 0;
  display: inline-block;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
  text-transform: uppercase;
}
.woocommerce table.shop_table td .woocommerce-button:hover,
.woocommerce-message .wp-element-button:hover,
.woocommerce-error .wp-element-button:hover {
  color: #ffffff;
  background-color: #001642 !important;
}
header.woocommerce-Address-title.title {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 20px 0;
}
.woocommerce-account .addresses .title h3,
.woocommerce-MyAccount-content h3 {
  float: none;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
}
.woocommerce-MyAccount-content a:hover {
  color: #009933;
  transition: all 0.4s;
}
.woocommerce-Address address {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #282828;
}
.woocommerce-MyAccount-content a.button,
.woocommerce-MyAccount-content form button.wp-element-button,
.tinvwl-input-group-btn .button,
.tinvwl-to-right.look_in .button,
.product-compare-wrapper .add_to_cart_button,
.shipping-calculator-form button.button.wp-element-button,
.woocommerce-checkout-review-order .place-order .wp-element-button,
.return-to-shop .wc-backward,
.shop_table .delete-line-item,
.update-shipping-addresses .button,
.set-shipping-addresses button,
.address-block .buttons .button,
.woocommerce-form-coupon .wp-element-button,
.woocommerce-form-login .woocommerce-form-login__submit {
  font-size: 16px !important;
  line-height: 24px !important;
  padding: 14px 32px !important;
  font-weight: 400 !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  background-color: #009933 !important;
  transition: 0.4s;
  text-transform: uppercase;
}
.woocommerce-MyAccount-content a.button:hover,
.woocommerce-MyAccount-content form button.wp-element-button:hover,
.tinvwl-input-group-btn .button:hover,
.tinvwl-to-right.look_in .button:hover,
.product-compare-wrapper .add_to_cart_button:hover,
.shipping-calculator-form button.button.wp-element-button:hover,
.woocommerce-checkout-review-order .place-order .wp-element-button:hover,
.return-to-shop .wc-backward:hover,
.shop_table .delete-line-item:hover,
.update-shipping-addresses .button:hover,
.set-shipping-addresses button:hover,
.address-block .buttons .button:hover,
.woocommerce-form-coupon .wp-element-button:hover,
.woocommerce-form-login .woocommerce-form-login__submit:hover {
  color: #ffffff !important;
  background-color: #001642 !important;
  transition: 0.4s;
}
.woocommerce-MyAccount-content a.button,
.woocommerce-MyAccount-content form button.wp-element-button,
.tinvwl-input-group-btn .button,
.tinvwl-to-right.look_in .button,
.woocommerce table.shop_table td .woocommerce-button,
.product-compare-wrapper .add_to_cart_button,
.shipping-calculator-form button.button.wp-element-button,
.woocommerce-checkout-review-order .place-order .wp-element-button,
.return-to-shop .wc-backward,
.shop_table .delete-line-item,
.update-shipping-addresses .button,
.set-shipping-addresses button,
.address-block .buttons .button,
.woocommerce-form-login .woocommerce-form-login__submit {
  padding: 8px 18px !important;
}
.shipping-calculator-form button.button.wp-element-button {
  text-transform: uppercase;
  font-weight: 400 !important;
}
.tinvwl-input-group .form-control {
  padding: 8px !important;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid #cecece;
  height: 40px;
  border-radius: 8px;
}
.tinvwl-input-group .form-control:focus {
  box-shadow: none;
}
.tinv-wishlist .product-remove button {
  width: 20px;
  height: 20px;
  background-color: transparent;
  color: #001642;
  font-size: 20px;
  padding: 0;
  min-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #001642;
  border-radius: 6px;
}
.tinv-wishlist .product-remove button:hover {
  background-color: #009933;
  color: #fff !important;
  border-color: #009933;
}
.tinv-wishlist .product-stock span {
  display: block;
  text-align: center;
}
.woocommerce .woocommerce-MyAccount-content form .form-row label,
.woocommerce .checkout .form-row label {
  font-size: 14px;
  line-height: 22px;
  color: #001642;
  font-weight: 700;
  margin-bottom: 10px;
}
.woocommerce .woocommerce-MyAccount-content form .form-row input.input-text,
.woocommerce .woocommerce-MyAccount-content form .form-row textarea {
  border-color: #ebeaea;
}
.woocommerce
  .woocommerce-MyAccount-content
  form
  .form-row
  input.input-text::placeholder,
.woocommerce
  .woocommerce-MyAccount-content
  form
  .form-row
  textarea::placeholder {
  color: #ebeaea;
}
.woocommerce .woocommerce-MyAccount-content form .form-row {
  padding: 0;
  margin: 0 0 20px;
}
.woocommerce
  .woocommerce-MyAccount-content
  form
  .form-row
  input.input-text:focus,
.woocommerce .woocommerce-MyAccount-content form .form-row textarea:focus {
  border-color: #001642;
}
.woocommerce-order-details h2.woocommerce-order-details__title,
h2.woocommerce-column__title {
  font-size: 22px !important;
  line-height: 30px !important;
}
.woocommerce
  .woocommerce-MyAccount-content
  .woocommerce-customer-details
  address {
  font-style: normal;
  margin-bottom: 0;
  border: 1px solid #ebeaea;
  border-bottom-width: 1px;
  border-right-width: 1px;
  text-align: left;
  width: 100%;
  border-radius: 8px;
  padding: 15px 20px;
  text-transform: capitalize;
}
legend {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: #282828;
  margin-bottom: 20px;
}
.my-account-wishlit {
  overflow-x: auto;
  scrollbar-color: #009933 transparent;
  scrollbar-width: thin;
}
.my-account-wishlit::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
  border-radius: 8px;
}
.my-account-wishlit::-webkit-scrollbar-thumb {
  background: #009933;
  border-radius: 8px;
  background-color: #009933;
}
.my-account-wishlit::-webkit-scrollbar-track {
  background: transparent;
}
.tinv-wishlist table.tinvwl-table-manage-list {
  /* border: 1px solid #EBEAEA;
    border-radius: 16px; */
  margin-bottom: 0;
}
.tinv-wishlist table.tinvwl-table-manage-list tr {
  border-bottom: 1px solid #ebeaea;
}
.tinv-wishlist table th {
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}
.tinv-wishlist table td {
  font-size: 14px;
  line-height: 20px;
  padding: 12px;
}
.tinv-wishlist .product-stock i {
  margin-right: 15px;
  color: #001642;
  font-size: 18px;
}
.product-stock .stock.out-of-stock i {
  font-size: 30px;
}
.tinv-wishlist .product-action > .button > i:after {
  content: "";
}
.woocommerce .tinv-wishlist .product-action .button {
  background: transparent;
  padding: 10px 20px;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #5c5c5c;
  text-transform: uppercase;
  border: 1px solid #cecece;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}
.woocommerce .tinv-wishlist .product-action .button:hover {
  background: #001642;
  color: #fff;
  border-color: #001642;
}
.woocommerce .tinv-wishlist .product-action .button i {
  display: flex;
  font-size: 20px;
  justify-content: center;
  align-items: center;
}
.woocommerce .tinv-wishlist .product-action .button i::after {
  display: none;
}
.woocommerce .tinv-wishlist .product-action .button i::before {
  content: "" !important;
  -webkit-mask-image: url(assets/images/icon_cart.svg);
  mask-image: url(assets/images/icon_cart.svg);
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background: #001642;
  transition: 0.4s;
  -webkit-mask-size: cover;
}
.woocommerce .tinv-wishlist .product-action .button:hover i::before {
  background: #fff;
}
.woocommerce .tinv-wishlist .product-action .button span,
footer.entry-footer {
  display: none;
}
.woocommerce table.shop_table td.product-name br {
  display: none;
}
.woocommerce .account-pages table.shop_table thead th {
  text-align: center;
  border-bottom: 1px solid #001642;
  background-color: #001642;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  border-right: 0;
  border-bottom-color: #001642 !important;
}
.woocommerce .account-pages table.shop_table td {
  border-top: 1px solid #ebeaea;
}
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,
.woocommerce
  .woocommerce-customer-details
  .woocommerce-customer-details--phone {
  margin-bottom: 0;
  padding-left: 24px;
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  color: #001642;
  text-transform: lowercase;
}
.woocommerce
  .woocommerce-customer-details
  .woocommerce-customer-details--phone {
  margin-bottom: 5px;
}
.tinvwl-table-manage-list input[type="checkbox"] {
  display: block !important;
  width: 16px;
  height: 16px;
}
p.billing_empty_message,
p.shipping_empty_message {
  display: none;
}
.woocommerce-MyAccount-content .addresses .woocommerce-Address-title .edit {
  display: none;
}
/* End My Account */

/* Order Received Page */
.thankyou-form-box {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}
.thankyou-form-box
  p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
  border: 1px solid #001642;
  background-color: #001642;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
  padding: 12px 16px;
}
.woocommerce .thankyou-form-box ul.order_details {
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 16px;
}
.woocommerce .thankyou-form-box ul.order_details li {
  float: none;
  font-size: 14px;
  line-height: 24px;
  border-right: none;
  margin: 0 0 10px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  width: 100%;
  color: #282828;
  text-transform: capitalize;
}
.woocommerce .thankyou-form-box ul.order_details li:last-child {
  margin-bottom: 0;
}
.woocommerce .thankyou-form-box ul.order_details li strong {
  display: block;
  font-size: 14px;
  text-transform: none;
  line-height: 22px;
  margin-left: 5px;
  color: #030303;
}
.woocommerce .thankyou-form-box ul.order_details li:before {
  display: none;
}
.woocommerce .thankyou-form-box .woocommerce-customer-details address {
  border: 1px solid #eaeaea;
  border-bottom-width: 1px;
  border-right-width: 1px;
  text-align: left;
  width: 100%;
  border-radius: 8px;
  padding: 20px;
  text-transform: capitalize;
}
.woocommerce
  .woocommerce-customer-details
  .woocommerce-customer-details--phone::before {
  content: "";
  -webkit-mask-image: url("assets/images/icon_call.svg");
  mask-image: url("assets/images/icon_call.svg");
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background: #001642;
  transition: 0.4s;
  -webkit-mask-size: cover;
  font-size: 0;
  line-height: 0;
  margin: 0;
  position: absolute;
  top: 5px;
  left: 0;
}
.woocommerce
  .woocommerce-customer-details
  .woocommerce-customer-details--email::before {
  content: "";
  -webkit-mask-image: url("assets/images/icon_email.svg");
  mask-image: url("assets/images/icon_email.svg");
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background: #001642;
  transition: 0.4s;
  -webkit-mask-size: cover;
  font-size: 0;
  line-height: 0;
  margin: 0;
  position: absolute;
  top: 5px;
  left: 0;
}
.woocommerce-order-details td.product-name small {
  text-transform: capitalize;
  font-size: 14px;
}
/* End Order Received Page */

/* Product Compare */
.product-compare-wrapper {
  overflow-x: auto;
}
.woocommerce-products-compare-content .remove-compare-product:hover {
  color: #001642;
}
.woocommerce-products-compare-content table td,
.woocommerce-products-compare-content table th {
  border-left: 1px dotted #c5c5c5;
}
.woocommerce-products-compare-content table thead tr:first-child {
  border-bottom: 1px solid #ebeaea;
}
.woocommerce-products-compare-content table thead .products.ratings-row td,
.woocommerce-products-compare-content table thead .products.ratings-row th,
.woocommerce-products-compare-content table thead .products.price-row td,
.woocommerce-products-compare-content table thead .products.price-row th {
  border-bottom: 1px solid #ebeaea;
  vertical-align: middle;
}
.woocommerce-products-compare-content table td,
.woocommerce-products-compare-content table th {
  vertical-align: middle;
}
.woocommerce-products-compare-content table tbody tr {
  border-top: 1px solid #c5c5c5;
}
.woocommerce-products-compare-content h3 {
  padding: 5px 0;
  margin: 0;
  font-size: 15px;
  line-height: 26px;
}
.woocommerce-products-compare-content table tbody tr td,
.woocommerce-products-compare-content table tbody tr td span,
.woocommerce-products-compare-content table tbody tr td p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #282828;
  text-align: center;
}
.woocommerce-products-compare-content
  table
  thead
  tr.products.price-row
  td.product
  p.list-description {
  display: none;
}
.woocommerce-products-compare-content
  table
  tfoot
  tr.products
  td.product
  p.list-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #282828;
  min-height: 96px;
}
.woocommerce-products-compare-content .product a.product-link img {
  margin: 0 auto 20px auto;
  width: 100%;
  max-width: 250px;
  max-height: 230px;
  object-fit: contain;
}
.woocommerce-products-compare-content table thead tr:hover,
.woocommerce-products-compare-content table tbody tr:hover {
  background-color: rgb(0 153 51 / 10%);
}
.woocommerce-products-compare-content table tbody tr:nth-child(odd) {
  background-color: #f4f4f4;
}
.woocommerce-products-compare-content .price,
.woocommerce-products-compare-content span.stock-status.in-stock {
  color: #009933;
}
.product-compare-wrapper
  .woocommerce-products-compare-content
  table
  tbody
  tr
  td,
.product-compare-wrapper
  .woocommerce-products-compare-content
  table
  tbody
  tr
  td
  span,
.product-compare-wrapper
  .woocommerce-products-compare-content
  table
  tbody
  tr
  td
  p {
  text-align: center;
}
.product-compare-wrapper .price-rating-wrapper .star-rating {
  margin: 0 !important;
  vertical-align: middle;
}
.product-compare-wrapper table thead td.product {
  position: relative;
}
.product-compare-wrapper a.remove-compare-product {
  -webkit-mask-image: url(assets/images/icon_delete.svg);
  mask-image: url(assets/images/icon_delete.svg);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background: #c5c5c5;
  transition: 0.4s;
  -webkit-mask-size: cover;
  text-align: right;
  margin-left: auto;
  margin-bottom: 0;
  font-size: 0;
  color: #001642;
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 9;
}
.product-compare-wrapper a.remove-compare-product:hover {
  background: #001642;
  transition: 0.4s;
}
/* .product-compare-wrapper .product .product-link h3{
    margin-bottom: 10px;
} */
.product-compare-wrapper .product .product-link h3 {
  margin-bottom: 0;
  min-height: 62px;
}
.woocommerce-products-compare-content table thead td,
.woocommerce-products-compare-content table thead th {
  vertical-align: bottom;
}
.woocommerce-products-compare-content table tfoot td,
.woocommerce-products-compare-content table tfoot th {
  vertical-align: top;
}
.product-compare .add_to_cart_button {
  border: none !important;
}
.product-compare-wrapper tfoot tr.products td.product .btn-wrapper {
  display: none;
}
.product-compare-wrapper a.added_to_cart.wc-forward {
  display: none;
}
/* End Product Compare */

/* Detail Page */
.product-detail-inner h1.product_title {
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #001642;
  text-transform: capitalize;
}
.product-detail-breadcrumb {
  border-bottom: 1px solid #f4f4f4;
  padding: 16px 0;
}
.product-detail-breadcrumb .woocommerce-breadcrumb {
  margin-top: 0 !important;
}
#wpgs-gallery.woocommerce-product-gallery {
  margin: 0;
  float: none;
}
#wpgs-gallery .gallery-navigation-carousel {
  margin-top: 0;
}
.product-detail-inner .wcgs-carousel.slick-slider {
  border: 1px solid #ebeaea;
  border-radius: 8px;
  margin-bottom: 20px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-detail-inner .wcgs-carousel.slick-slider .slick-slide img {
  width: 100% !important;
  height: 100% !important;
  max-width: 384px !important;
  object-fit: cover;
}
.product-detail-inner .gallery-navigation-carousel .slick-slide.wcgs-thumb {
  opacity: 1;
  min-height: inherit;
  margin: 0 8px !important;
  height: 90px;
  border: 1px solid #ebeaea;
  border-radius: 10px;
}
.product-detail-inner .gallery-navigation-carousel .slick-slide.wcgs-thumb img {
  padding: 11px;
  width: 100%;
  height: 100% !important;
  object-fit: contain;
  border: none !important;
}
.woocommerce .product-detail-inner div.product div.summary {
  margin-bottom: 0;
  width: 100%;
  float: none !important;
}
.rating-stock-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rating-stock-wrapper .woocommerce-product-rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.woocommerce div.product .rating-stock-wrapper .woocommerce-product-rating {
  margin-bottom: 0;
}
.woocommerce
  div.product
  .rating-stock-wrapper
  .woocommerce-product-rating
  .star-rating {
  margin: 0 8px 0 0;
  display: flex;
  align-items: center;
  float: none;
  order: 1;
}
.woocommerce
  div.product
  .rating-stock-wrapper
  .woocommerce-product-rating
  .star-rating
  span {
  height: 100%;
}
.woocommerce div.product .product_title {
  text-transform: capitalize;
  margin-bottom: 20px;
}
.woocommerce-tabs.wc-tabs-wrapper {
  padding-top: 70px;
}
.woocommerce .product-detail-inner div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #ebeaea;
}
.woocommerce .product-detail-inner div.product .woocommerce-tabs ul.tabs li {
  border: none;
  background-color: #fff;
  color: #5c5c5c;
  border-radius: 0;
  margin: 0 25px;
  padding: 0;
}
.woocommerce .product-detail-inner div.product .woocommerce-tabs ul.tabs li a {
  position: relative;
}
.woocommerce
  .product-detail-inner
  div.product
  .woocommerce-tabs
  ul.tabs
  li
  a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #009933;
  opacity: 0;
  visibility: hidden;
  border-radius: 8px;
}
.woocommerce
  .product-detail-inner
  div.product
  .woocommerce-tabs
  ul.tabs
  li:first-child {
  margin-left: 0;
}
.woocommerce
  .product-detail-inner
  div.product
  .woocommerce-tabs
  ul.tabs
  li:last-child {
  margin-right: 0;
}
.woocommerce
  .product-detail-inner
  div.product
  .woocommerce-tabs
  ul.tabs
  li.active
  a {
  color: #030303;
}
.woocommerce
  .product-detail-inner
  div.product
  .woocommerce-tabs
  ul.tabs
  li.active
  a:after {
  opacity: 1;
  visibility: visible;
}
.woocommerce
  .product-detail-inner
  div.product
  .woocommerce-tabs
  ul.tabs::before,
.woocommerce
  .product-detail-inner
  div.product
  .woocommerce-tabs
  ul.tabs
  li::before,
.woocommerce
  .product-detail-inner
  div.product
  .woocommerce-tabs
  ul.tabs
  li::after {
  display: none !important;
}
.woocommerce .product-detail-inner div.product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 0 0 10px 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #5c5c5c;
  text-transform: capitalize;
}
.woocommerce
  .product-detail-inner
  div.product
  .woocommerce-tabs
  ul.tabs
  li
  a:hover {
  text-decoration: none;
  color: #030303;
}
.woocommerce
  .product-detail-inner
  div.product
  .woocommerce-tabs
  ul.tabs
  li.active
  a {
  color: #030303;
  text-shadow: none;
}
.product-detail-inner .woocommerce-Tabs-panel--description ul li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 15px;
}
.product-detail-inner .woocommerce-Tabs-panel--description ul li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #5c5c5c;
  border-radius: 50%;
}
.rating-stock-wrapper .woocommerce-review-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #5c5c5c;
  transition: 0.4s;
  order: 2;
}
.rating-stock-wrapper .woocommerce-review-link:hover {
  color: #009933;
  transition: 0.4s;
}
.woocommerce div.product p.stock {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #282828;
  background: rgb(0 153 51 / 20%);
  border-radius: 5px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  text-align: right;
  padding: 2px 10px;
}
.detail-price-wrapper {
  display: flex;
  align-items: center;
  margin: 27px 0 20px;
  width: 100%;
}
.woocommerce .product-detail-inner div.product p.price,
.woocommerce .product-detail-inner div.product span.price {
  font-size: 24px;
  line-height: 33px;
  color: #030303;
  font-weight: 600;
  margin: 0;
}
.woocommerce .product-detail-inner div.product p.price {
  display: flex;
  align-items: center;
  margin-right: 20px;
  font-weight: 900;
}
.woocommerce .product-detail-inner div.product p.price span.ex-vat {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #030303;
  display: inline-block;
  margin-left: 6px;
}
.detail-price-wrapper p.price-tax {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #5c5c5c;
  display: flex;
  align-items: center;
}
span.inc-vat {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #5c5c5c;
  margin-left: 6px;
  display: inline-block;
}
p.prod-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #282828;
  margin-bottom: 12px;
}
.view-more {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #009933;
  transition: 0.4s;
  text-transform: uppercase;
  position: relative;
}
.view-more:after {
  content: "";
  position: absolute;
  top: 3px;
  right: -20px;
  -webkit-mask-image: url(assets/images/icon_drop_down_green.svg);
  mask-image: url(assets/images/icon_drop_down_green.svg);
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background: #009933;
  transition: 0.4s;
  -webkit-mask-size: cover;
}
.view-more:hover {
  color: #001642;
  transition: 0.4s;
}
.view-more:hover:after {
  background: #001642;
  transition: 0.4s;
}
.woocommerce-product-details__short-description {
  display: none;
}
.woocommerce div.product form.cart {
  position: relative;
  margin: 20px 0 30px;
}
.woocommerce div.product form.cart:before {
  content: "Qty";
  position: absolute;
  top: 50%;
  left: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #5c5c5c;
  transform: translateY(-50%);
}
.woocommerce div.product form.cart div.quantity {
  float: left;
  margin: 0 24px 0 40px;
}
.woocommerce .quantity .qty {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  border: 1px solid #cecece;
  border-radius: 8px;
  min-width: 130px;
  height: 50px;
  width: 100%;
}
.woocommerce div.product form.cart .button {
  vertical-align: middle;
  float: left;
  background: #009933;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  padding: 14px 34px;
  transition: 0.4s;
  text-transform: uppercase;
}
.woocommerce div.product form.cart .button:hover {
  background: #001642;
  color: #ffffff;
  transition: 0.4s;
}
.detail-btn-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  margin-top: 15px;
}
.detail-btn-wrapper .tinv-wishlist .tinvwl_add_to_wishlist_button,
.detail-btn-wrapper p.woocommerce-products-compare-compare-button label,
.share-btn .share-text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #f4f4f4;
  border-radius: 5px;
  padding: 7px 16px 8px 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.detail-btn-wrapper a.tinvwl_add_to_wishlist_button {
  position: relative;
  line-height: normal;
}
.detail-btn-wrapper a.tinvwl_add_to_wishlist_button:before {
  content: "" !important;
  position: absolute;
  top: 7px;
  left: 17px;
  -webkit-mask-image: url(assets/images/icon_wishlist_blue.svg);
  mask-image: url(assets/images/icon_wishlist_blue.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background: #001642;
  transition: 0.4s;
  -webkit-mask-size: cover;
  margin: 0 !important;
  font-size: 0 !important;
  vertical-align: middle !important;
}
.detail-btn-wrapper .tinv-wishlist .tinv-wishlist-clear {
  display: none;
}

.detail-btn-wrapper .tinv-wishlist span.tinvwl_add_to_wishlist-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #001642;
  transition: 0.4s;
}
.detail-btn-wrapper .tinv-wishlist .tinvwl_add_to_wishlist_button:hover {
  background: #001642;
  transition: 0.4s;
}
.detail-btn-wrapper .tinv-wishlist .tinvwl_add_to_wishlist_button:hover:before {
  background: #fff;
  transition: 0.4s;
}
.detail-btn-wrapper .tinv-wishlist:hover span.tinvwl_add_to_wishlist-text,
.detail-btn-wrapper .tinv-wishlist:hover span.tinvwl_remove_from_wishlist-text {
  color: #fff !important;
  transition: 0.4s;
}
.detail-btn-wrapper
  .heateor_sss_sharing_container.heateor_sss_horizontal_sharing {
  display: block;
}
.detail-btn-wrapper .woocommerce-products-compare-compare-button {
  margin: 0;
  cursor: pointer;
  font-size: inherit;
  line-height: normal;
  position: relative;
}
.detail-btn-wrapper p.woocommerce-products-compare-compare-button label {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #001642;
  position: relative;
  transition: 0.4s;
  cursor: pointer;
  padding: 7px 16px 8px 40px;
}
.detail-btn-wrapper p.woocommerce-products-compare-compare-button label:before {
  content: "" !important;
  position: absolute;
  top: 6px;
  left: 16px;
  -webkit-mask-image: url(assets/images/icon_compare_blue.svg);
  mask-image: url(assets/images/icon_compare_blue.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background: #001642;
  transition: 0.4s;
  -webkit-mask-size: cover;
  margin: 0 !important;
  font-size: 0 !important;
  vertical-align: middle !important;
  cursor: pointer;
}
.detail-btn-wrapper
  p.woocommerce-products-compare-compare-button
  label
  .woocommerce-products-compare-checkbox {
  font-size: 0;
  cursor: pointer;
  appearance: none;
  border: none;
  border-radius: 0;
  flex-shrink: 0;
  padding: 0;
}
.detail-btn-wrapper p.woocommerce-products-compare-compare-button label:hover {
  background: #001642;
  transition: 0.4s;
}
.detail-btn-wrapper p.woocommerce-products-compare-compare-button label:hover {
  color: #fff;
  transition: 0.4s;
}
.detail-btn-wrapper
  p.woocommerce-products-compare-compare-button
  label:hover:before {
  background: #fff;
}
.detail-btn-wrapper
  p.woocommerce-products-compare-compare-button.checked
  label:before {
  display: none;
}
.detail-btn-wrapper
  p.woocommerce-products-compare-compare-button.checked
  .woocommerce-products-compare-compare-link {
  display: block;
  position: absolute;
  top: 5px;
  left: 16px;
  padding: 0;
}
.detail-btn-wrapper
  p.woocommerce-products-compare-compare-button
  .woocommerce-products-compare-compare-link
  .dashicons-external:before {
  color: #001642;
}
.detail-btn-wrapper
  p.woocommerce-products-compare-compare-button:hover
  .woocommerce-products-compare-compare-link
  .dashicons-external:before {
  color: #fff;
}
/* .detail-btn-wrapper .woocommerce-products-compare-compare-button label input[type="checkbox"] {display: none;} */
.detail-btn-wrapper a.share-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #001642;
  position: relative;
}
.detail-btn-wrapper .share-text:before {
  content: "" !important;
  -webkit-mask-image: url(assets/images/icon_share.svg);
  mask-image: url(assets/images/icon_share.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background: #001642;
  transition: 0.4s;
  -webkit-mask-size: cover;
  position: absolute;
  left: 16px;
  top: 7px;
}
.product-detail-inner div.product div.summary {
  overflow: visible;
}
.share-btn-wrapper {
  position: absolute;
  max-width: 100%;
  height: 100%;
  right: 0;
  top: 36px;
  margin: 0;
  background: #fff;
  padding: 10px;
  border: 1px solid #ebeaea;
  border-radius: 8px;
  display: none;
  z-index: 9999;
}
.detail-btn-wrapper .share-btn .share-text:hover {
  background: #001642;
  transition: 0.4s;
}
.detail-btn-wrapper .share-btn .share-text:hover:before {
  background: #fff;
  transition: 0.4s;
}
.detail-btn-wrapper .share-btn .share-text:hover {
  color: #fff;
  transition: 0.4s;
}
.detail-btn-wrapper .pwb-single-product-brands {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  border-top: 1px solid #ebeaea;
  margin-top: 30px;
  margin-bottom: 8px;
  padding-top: 30px;
}
.detail-btn-wrapper .pwb-text-before-brands-links {
  margin-right: 6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #030303;
}
.detail-btn-wrapper .pwb-single-product-brands a {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #009933;
  display: block;
  transition: 0.4s;
}
.detail-btn-wrapper .pwb-single-product-brands a:hover {
  color: #001642;
  transition: 0.4s;
}
.detail-btn-wrapper .tinv-wishlist,
.detail-btn-wrapper p.woocommerce-products-compare-compare-button {
  margin-right: 10px;
}
.detail-btn-wrapper .product-code {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #030303;
}
.detail-btn-wrapper .tinv-wishlist {
  order: 1;
}
.detail-btn-wrapper p.woocommerce-products-compare-compare-button {
  order: 2;
}
.share-btn {
  order: 3;
}
.detail-btn-wrapper .pwb-single-product-brands {
  order: 4;
}
.detail-btn-wrapper .product-code {
  order: 5;
}
.wc-tabs-wrapper .woocommerce-Tabs-panel h2 {
  display: none;
}
.wc-tabs-wrapper .woocommerce-Tabs-panel p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5c5c5c;
}
.related.products ul {
  display: flex;
  flex-wrap: wrap;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  display: none;
}
.woocommerce #reviews #comments ol.commentlist li {
  margin: 0 0 18px;
}
.comment-text {
  display: flex;
  flex-direction: column;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #030303;
  display: flex;
  justify-content: space-between;
  align-items: center;
  order: 1;
  margin: 0 0 7px 0;
}
.woocommerce
  #reviews
  #comments
  ol.commentlist
  li
  .comment-text
  p.meta
  .woocommerce-review__author {
  font-weight: 600;
}
span.woocommerce-review__dash {
  display: none;
}
time.woocommerce-review__published-date {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #5c5c5c;
  position: absolute;
  top: 10px;
  right: 0;
}
.woocommerce .star-rating {
  float: none;
  order: 2;
}
.comment-text .description {
  order: 3;
  margin-top: 14px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p {
  margin: 0;
}
/* Review */
#review_form_wrapper {
  border: 1px solid #cecece;
  border-radius: 16px;
  padding: 30px;
}
.woocommerce #review_form .comment-respond {
  display: flex;
  flex-direction: column;
}
.woocommerce #review_form {
  position: relative;
}
.woocommerce #review_form .comment-respond .comment-reply-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  color: #030303;
  order: 1;
  position: absolute;
  top: 0;
}
.woocommerce #review_form .comment-respond .comment-form {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
.comment-notes {
  display: none;
}
.comment-form-rating {
  order: 1;
  margin-bottom: 18px;
}
.comment-form-rating label {
  display: none;
}
.woocommerce .comment-form-rating p.stars a {
  position: relative;
  height: 24px;
  width: 24px;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  font-size: 24px;
  line-height: 24px;
}
.woocommerce .comment-form-rating p.stars a::before {
  width: 24px;
  height: 24px;
  color: #cecece;
}
p.comment-form-author label,
p.comment-form-comment label,
p.comment-form-email label {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #5c5c5c;
  margin-bottom: 8px;
}
p.comment-form-author input,
p.comment-form-email input,
p.comment-form-comment textarea {
  border: 1px solid #cecece;
  border-radius: 8px;

  margin-bottom: 18px;
}
p.comment-form-author input,
p.comment-form-email input {
  height: 44px;
}
.comment-form p.form-submit input {
  background-color: #009933 !important;
  border-radius: 8px !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 22px !important;
  text-transform: uppercase;
  color: #ffffff !important;
  width: auto;
  padding: 14px 34px !important;
  height: 50px;
  transition: 0.4s;
}
.comment-form p.form-submit input:hover {
  background-color: #001642 !important;
  transition: 0.4s;
}
p.comment-form-author {
  order: 2;
}
p.comment-form-email {
  order: 3;
}
p.comment-form-cookies-consent {
  display: none;
}
p.comment-form-comment {
  order: 4;
}
p.form-submit {
  order: 5;
}
.woocommerce #review_form #respond p {
  margin: 0;
}
/* Review */
.product-detail-inner table {
  table-layout: fixed;
  width: 100%;
  color: #282828;
  font-size: 18px;
  margin-top: 30px;
  border-collapse: separate;
  border-spacing: 0;
  display: block;
}
.product-detail-inner table tr td {
  border-right: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
}
.product-detail-inner table tr td:first-child {
  border-left: 1px solid #cecece;
}
.product-detail-inner table tr td {
  background: #f4f4f4;
  text-align: left;
}
.product-detail-inner table tr:first-child td {
  border-top: solid 1px #cecece;
}
/* top-left border-radius */
.product-detail-inner table tr:first-child td:first-child {
  border-top-left-radius: 16px;
}

/* top-right border-radius */
.product-detail-inner table tr:first-child td:last-child {
  border-top-right-radius: 16px;
}

/* bottom-left border-radius */
.product-detail-inner table tr:last-child td:first-child {
  border-bottom-left-radius: 16px;
}

/* bottom-right border-radius */
.product-detail-inner table tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}

.product-detail-inner tbody,
.product-detail-inner td,
.product-detail-inner tfoot,
.product-detail-inner th,
.product-detail-inner thead,
.product-detail-inner tr {
  background: #f4f4f4 !important;
  border-color: #cecece;
}
.product-detail-inner tbody tr td {
  padding: 16px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #282828;
}
.product-detail-inner ol.detail-counter {
  margin-bottom: 20px;
}
.product-detail-inner ol.detail-counter li {
  margin-bottom: 10px;
  counter-increment: item;
}
.product-detail-inner ol.detail-counter li {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #282828;
  padding-left: 20px;
  position: relative;
}
.product-detail-inner ol.detail-counter li:before {
  content: counter(item);
  position: absolute;
  top: 0;
  left: 0;
}
p.woocommerce-noreviews {
  margin-bottom: 15px;
}
.related.products h2 {
  font-size: 26px;
  line-height: 34px;
  padding: 0 12px;
}
.video-box .video {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ebeaea;
}
.video-box .video iframe {
  height: 400px;
  width: 100%;
  object-fit: cover;
}
.video-text a {
  color: #009933;
}
.video-text a:hover {
  color: #001642;
}
.video-box {
  margin-bottom: 30px;
}
.video-box:last-child {
  margin-bottom: 0;
}
/* End Detail Page */

/* About Us */
.about-section p {
  font-size: 16px;
  line-height: 24px;
}
.mobile-img {
  display: none;
}
.about-img img {
  margin: 0 auto;
}
.about-us-page .row:nth-child(even) .about-section-right {
  order: 1;
}
.about-us-page .row:nth-child(odd) .about-section-left {
  order: 2;
}
.about-inner-row {
  margin-bottom: 50px;
}
.about-inner-row:last-child {
  margin: 0;
}
/* End About Us */

/* Contact Us */
.contact-us-page {
  margin-bottom: -20px;
}
.contact-box {
  border: 1px solid #ebeaea;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  transition: all 0.4s;
  margin-bottom: 24px;
  border-radius: 8px;
}
.contact-box:hover {
  box-shadow: 0px 0px 20px 0px #ebeaea;
}
.contact-box-icon {
  background: #001642;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
.contact-text h5 {
  margin: 0 0 5px 0;
}
.contact-text p {
  font-size: 16px;
  line-height: 24px;
  color: #001642;
}
.contact-box a {
  font-size: 16px;
  line-height: 24px;
  color: #001642;
  transition: all 0.4s;
}
.contact-box a:hover {
  color: #009933;
  transition: all 0.4s;
}
.contact-box .location-icon {
  -webkit-mask-image: url(assets/images/icon_pin.svg);
  mask-image: url(assets/images/icon_pin.svg);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background: #ebeaea;
  transition: 0.4s;
  -webkit-mask-size: cover;
  display: block;
}
.contact-box .email-icon {
  -webkit-mask-image: url(assets/images/icon_email.svg);
  mask-image: url(assets/images/icon_email.svg);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background: #ebeaea;
  transition: 0.4s;
  -webkit-mask-size: cover;
  display: block;
}
.contact-box .call-icon {
  -webkit-mask-image: url(assets/images/icon_call.svg);
  mask-image: url(assets/images/icon_call.svg);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background: #ebeaea;
  transition: 0.4s;
  -webkit-mask-size: cover;
  display: block;
}
.contact-section-right label {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #001642;
  font-weight: 700;
}
.contact-section-right p {
  margin-bottom: 16px;
}
.contact-section-right p:last-child {
  margin-bottom: 0;
}
.contact-section-right input,
.contact-section-right textarea {
  margin-top: 10px;
  margin-bottom: 0;
}
.contact-section-right textarea {
  height: 100px;
}
.contact-section-right p input[type="submit"] {
  width: auto;
  padding: 14px 34px;
  font-size: 16px;
  line-height: 24px;
  height: 52px;
  text-transform: uppercase;
  transition: 0.4s;
  background: #009933;
  color: #fff;
  margin: 0;
  border: none;
}
.contact-section-right p input[type="submit"]:hover {
  transition: 0.4s;
  background: #001642;
  color: #fff;
}
/* End Contact Us */

/* Blog Page */
.blogList_item_inner {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.blogList_img {
  height: 200px;
  width: 100%;
  display: block;
  overflow: hidden;
  background-color: #f4f4f4;
}
.blogList_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blogList_item_inner:hover .blogList_img img {
  transform: scale(1.1);
}
.blogList_bottom {
  padding: 30px;
}
.blogList_bottom_title h3 a {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #030303;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
  transition: 0.4s;
  min-height: 52px;
}
.blogList_bottom_title h3 a:hover {
  color: #009933;
  transition: 0.4s;
}
.blogList_middle p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 10px;
}
.blogList_bottom_content p {
  font-size: 16px;
  line-height: 24px;
  color: #282828;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-col {
  margin-bottom: 30px;
}
.blogList_sec .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  padding-top: 30px;
  border-top: 1px solid #ebeaea;
}

.blogList_sec .page-numbers {
  padding: 6px 8px;
  min-width: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  border-radius: 50%;
  background-color: #fff;
  color: #5c5c5c;
  margin-right: 6px;
}
.blogList_sec .page-numbers.current,
.blogList_sec .page-numbers:hover {
  background: #009933;
  color: #ffffff;
}
.blogList_sec .pagination .next.page-numbers,
.blogList_sec .pagination .prev.page-numbers {
  border: 1px solid #5c5c5c;
  font-size: 0 !important;
  width: 35px;
  height: 35px;
  position: relative;
}
.blogList_sec .pagination .next,
.blogList_sec .pagination .prev {
  font-size: 0;
}
.blogList_sec .pagination .next.page-numbers:after,
.blogList_sec .pagination .prev.page-numbers:before {
  content: "";
  -webkit-mask-image: url(assets/images/right-arrow.svg);
  mask-image: url(assets/images/right-arrow.svg);
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background: #5c5c5c;
  transition: 0.4s;
  -webkit-mask-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blogList_sec .pagination .prev.page-numbers {
  transform: rotate(180deg);
}
.blogList_sec .pagination .next.page-numbers:hover,
.blogList_sec .pagination .prev.page-numbers:hover {
  border-color: #009933;
}
.blogList_sec .pagination .next.page-numbers:hover:after,
.blogList_sec .pagination .prev.page-numbers:hover:before {
  background: #fff;
}
/* End Blog Page */

/* Blog Detail Page */
.blogDetail_img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.blogDetail_img img {
  width: auto;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.blogDetail_title h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #030303;
  margin-bottom: 10px;
}
.blogDetail_content h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #030303;
}
.blogDetail_content p {
  font-size: 16px;
  line-height: 24px;
}
.blogDetail_content h4 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #030303;
}
.blogDetail_content ul li {
  margin: 0;
  padding: 0 0 10px 20px;
  list-style: none;
  font-size: 16px;
  line-height: 26px;
  position: relative;
}
.blogDetail_content ul li:before {
  content: "";
  background: #030303;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}
.woocommerce .product-detail-inner .star-rating span {
  line-height: normal;
}
/* End Blog Detail Page */

/* Checkout Page */
.woocommerce-checkout .woocommerce-checkout-payment {
  margin-top: 30px;
  background: #f4f4f4;
  border-radius: 8px;
}
#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  padding: 20px;
  border-bottom: 1px solid #c5c5c5;
}
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  padding: 20px;
  margin: 20px 0;
  font-size: 16px;
  border-radius: 8px;
  line-height: 24px;
  background-color: #eaeaea;
  color: #282828;
}
#opayopi-payment-data p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}
#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
  border: 1em solid #eaeaea;
}
.woocommerce form #opayopi-payment-data .form-row {
  padding: 0;
  margin: 0 0 6px;
}
.woocommerce form #opayopi-payment-data .form-row label {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 10px;
}
.checkout-page ul li:before {
  display: none !important;
}
#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
  padding: 0;
}
#address_form a.h2-link {
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  color: #282828;
  margin-bottom: 15px;
}
.woocommerce .shop_table .quantity .qty {
  height: 44px;
}
#address_form .address-select {
  height: 44px;
}
.address-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.address-block {
  float: none;
  width: 100%;
  min-height: 220px;
  margin: 10px 0px;
  position: relative;
}
.address-block .buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: auto;
}
.woocommerce-checkout-review-order
  .woocommerce
  table.shop_table
  tr:first-child
  td {
  border-top: 1px solid #eaeaea;
}
.woocommerce-checkout #payment div.payment_box input.input-text {
  border-color: #c5c5c5;
  border-top-color: #c5c5c5;
}
.woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0;
  border: 1px solid #c5c5c5;
  padding: 10px 16px !important;
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-checkout
  #payment
  div.payment_box
  .wc-credit-card-form-card-number {
  font-size: 16px;
}
.woocommerce-privacy-policy-text p {
  font-size: 16px;
  line-height: 24px;
}
.woocommerce-privacy-policy-text p a {
  font-weight: 700;
  text-transform: capitalize;
}
.woocommerce table.shop_table tfoot th {
  text-align: left;
  border-top: 1px solid #eaeaea;
}
.woocommerce table.woocommerce-checkout-review-order-table td {
  text-align: right;
}
.woocommerce-checkout-review-order thead th.product-name {
  padding-left: 16px !important;
}
.woocommerce-checkout-review-order thead th.product-total {
  text-align: right !important;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme,
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 25px;
  cursor: pointer;
}
.woocommerce-form__input.woocommerce-form__input-checkbox,
.woocommerce .input-checkbox {
  display: none !important;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme
  span:before,
.woocommerce
  label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox
  span:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #cecece;
  border-radius: 4px;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme
  span:after,
.woocommerce
  label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox
  span:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 4px;
  background-image: url(assets/images/icon_tick.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 10px;
  height: 10px;
}
.woocommerce
  .woocommerce-form-login
  .woocommerce-form-login__rememberme
  .woocommerce-form__input-checkbox:checked
  ~ span:before,
label.woocommerce-form__label.woocommerce-form__label-for-checkbox
  .input-checkbox:checked
  ~ span:before {
  background: #009933;
  border: #009933;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme
  span:before {
  top: 6px;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme
  span:after {
  top: 10px;
}
.woocommerce form.checkout .form-row {
  padding: 0 5px;
  margin: 0 0 20px;
}
.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form .form-row textarea::placeholder,
#dsabafw_billing_popup form .form-row input.input-text::placeholder,
#dsabafw_billing_popup form .form-row textarea::placeholder {
  color: #5c5c5c;
  opacity: 1;
}
/* .woocommerce form .form-row input.input-text:focus, 
.woocommerce form .form-row textarea:focus {
    color: #CECECE;
    background-color: transparent;
} */
.shipping_address .woocommerce-info {
  display: none;
}
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid #eaeaea;
}
.woocommerce-form-coupon .wp-element-button {
  padding: 10px 18px !important;
}
.woocommerce-form-coupon .woocommerce form .form-row-first,
.woocommerce-form-coupon .woocommerce form .form-row-last {
  width: 50%;
}
.woocommerce-form-coupon .woocommerce form .form-row {
  margin: 0;
  padding: 0;
}
.woocommerce form.checkout .form-row textarea {
  height: 150px;
}
.woocommerce form.checkout_coupon .form-row {
  padding: 0;
  margin: 0;
}
.woocommerce form.checkout_coupon .form-row .wp-element-button {
  margin: 0 0 0 20px;
}
.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 48%;
}
.woocommerce form.login .form-row {
  padding: 0;
  margin: 0 0 20px 0;
}
.checkout .create-account {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.checkout
  .create-account
  label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox
  span:before {
  top: 2px;
}
.checkout
  .create-account
  label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox
  span:after {
  top: 6px;
}
.woocommerce .woocommerce-form-login p {
  font-size: 16px;
  line-height: 24px;
}
.woocommerce form.woocommerce-form-login .form-row.form-row-first label,
.woocommerce form.woocommerce-form-login .form-row.form-row-last label {
  font-size: 16px;
  line-height: 24px;
  color: #001642 !important;
  font-weight: 700 !important;
  margin-bottom: 10px;
}
.woocommerce .woocommerce-form-login p.lost_password a {
  font-weight: 700;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  margin-bottom: 10px;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  margin-right: 0;
}
form.woocommerce-form.woocommerce-form-login.login p.lost_password {
  margin: 0;
}
.woocommerce-checkout-review-order-table td.product-name {
  display: flex;
  align-items: center;
}
.woocommerce-checkout-review-order-table td.product-name p {
  margin: 0 15px;
}
.dsabafw_table_bill .billing_address button.form_option_edit,
.dsabafw_table_ship .shipping_address button.form_option_ship_edit,
button.form_option_billing,
button.form_option_shipping,
#dsabafw_add_billing_form_submit,
#dsabafw_add_shipping_form_submit,
.dsabafw_table_bill .billing_address span.delete_bill_address a,
.dsabafw_table_ship .shipping_address span.delete_ship_address a,
#dsabafw_edit_billing_form_submit,
#dsabafw_edit_shipping_form_submit {
  font-size: 16px !important;
  line-height: 24px !important;
  padding: 8px 18px !important;
  font-weight: 400 !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  background-color: #009933 !important;
  transition: 0.4s;
  border: none !important;
  text-transform: uppercase;
}
.dsabafw_table_bill .billing_address button.form_option_edit:hover,
.dsabafw_table_ship .shipping_address button.form_option_ship_edit:hover,
button.form_option_billing:hover,
button.form_option_shipping:hover,
#dsabafw_add_billing_form_submit:hover,
#dsabafw_add_shipping_form_submit:hover,
.dsabafw_table_bill .billing_address span.delete_bill_address a:hover,
.dsabafw_table_ship .shipping_address span.delete_ship_address a:hover,
#dsabafw_edit_billing_form_submit:hover,
#dsabafw_edit_shipping_form_submit:hover {
  color: #ffffff !important;
  background-color: #001642 !important;
  transition: 0.4s;
}
.dsabafw_modal-content {
  border: none;
  border-radius: 8px;
  padding: 50px 20px;
}
#dsabafw_add_billing_form_submit,
#dsabafw_add_shipping_form_submit,
#dsabafw_edit_billing_form_submit,
#dsabafw_edit_shipping_form_submit {
  margin-top: 16px;
}
button.defalut_address,
button.defalt_addd_shipping {
  display: none;
}
span.billing_address_inner,
span.shipping_address_inner {
  margin-top: 20px;
  display: block;
}
.dsabafw_table_bill .billing_address,
.dsabafw_table_ship .shipping_address {
  background: #f4f4f4;
  border-radius: 8px;
}
.woocommerce form .form-row.woocommerce-validated .select2-container,
.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select {
  border-color: #eaeaea;
}
.woocommerce form .form-row.woocommerce-validated input.input-text:focus,
.woocommerce form .form-row.woocommerce-validated select:focus {
  border-color: #001642;
}

#dsabafw_add_billing_form label,
#dsabafw_add_shipping_form label,
#dsabafw_edit_billing_form label,
#dsabafw_edit_shipping_form label {
  font-size: 14px;
  line-height: 24px;
  color: #001642 !important;
  font-weight: 700 !important;
  margin-bottom: 10px;
}
#dsabafw_add_billing_form label b,
#dsabafw_add_billing_form label strong,
#dsabafw_add_shipping_form label b,
#dsabafw_add_shipping_form label strong,
#dsabafw_edit_billing_form label b,
#dsabafw_edit_billing_form label b strong,
#dsabafw_edit_shipping_form label b,
#dsabafw_edit_shipping_form label b strong {
  font-weight: 700 !important;
}
.dsabafw_close {
  transition: 0.4s;
}
.dsabafw_close:hover {
  background-color: #009933;
  transition: 0.4s;
}
#billing_country_field span.woocommerce-input-wrapper,
#shipping_country_field span.woocommerce-input-wrapper {
  font-size: 14px;
  line-height: 22px;
  color: #282828;
  border: 1px solid #eaeaea;
  width: 100%;
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
}
#billing_country_field span.woocommerce-input-wrapper strong,
#shipping_country_field span.woocommerce-input-wrapper strong {
  font-weight: 400;
}
.dsabafw_close {
  background-color: #282828;
}
select.dsabafw_select,
select.dsabafw_select_shipping {
  color: #202020;
  opacity: 1;
}
/* End Checkout Page */

/* Brand Page */
.pwb-brands-cols-outer {
  justify-content: center;
  gap: 0;
}
.pwb-all-brands .pwb-brands-cols-outer .pwb-brands-col3 {
  flex-direction: column;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 10px;
  margin: 10px;
  width: 20%;
}
.pwb-all-brands .pwb-pagination-wrapper {
  display: none;
}
.pwb-all-brands .pwb-brands-cols-outer .pwb-brands-col3 p {
  text-align: center;
}
/* End Brand Page */

/* 404 */
.not-found .page-header h1 {
  text-align: center;
  color: #001642;
}
.page-content p {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #282828;
}
/* End 404 */

/* Single Pages */
.single-pages h2,
.sitemap-list h2 {
  font-size: 26px;
  line-height: 30px;
}
.single-pages h3 {
  font-size: 22px;
  line-height: 28px;
  margin: 0 0 15px 0;
}
.single-pages ul li {
  position: relative;
  padding-left: 15px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #5c5c5c;
  margin-bottom: 10px;
}
.single-pages ul li:before,
.sitemap-list ul li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #5c5c5c;
  border-radius: 50%;
}
.comments-area {
  display: none;
}
/* End Single Pages */

/* CMS Pages */
.sidebar-wrapper {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ebeaea;
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar-wrapper:last-child {
  margin: 0;
}
.sidebar-title {
  background-color: #001642;
  padding: 8px 12px;
}
.sidebar-title h4 {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  margin: 0;
}
.sidebar-menu li {
  border-bottom: 1px solid #eaeaea;
  padding: 10px 15px;
}
.sidebar-menu li:last-child {
  border: none;
}
.sidebar-menu li.active a {
  color: #009933;
}
.sidebar-menu li a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #282828;
}
.sidebar-menu li a:hover {
  color: #009933;
}
.sidebar-menu li a.active {
  color: #009933;
}
.sidebar-content h2 {
  font-size: 26px;
  line-height: 30px;
}
.sidebar-content h3 {
  font-size: 22px;
  line-height: 28px;
  margin: 0 0 20px 0;
}
.sidebar-content ul {
  margin-bottom: 20px;
}
.sidebar-content ul li {
  position: relative;
  padding-left: 15px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #5c5c5c;
  margin-bottom: 10px;
}
.sidebar-content ul li:last-child {
  margin-bottom: 0;
}
.sidebar-content ul li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #5c5c5c;
  border-radius: 50%;
}
.sidebar-content p {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 20px 0;
}
.sidebar-content p:last-child {
  margin: 0;
}
.tax-product_cat ul.vs_list.vs_list_radio {
  border: 1px solid #ebeaea;
  padding: 16px 27px 24px 16px;
  border-radius: 16px;
  margin-bottom: 24px !important;
}
/* End CMS Pages */

/* FAQ */
.nav-pills .nav-link {
  color: #282828;
}
.nav-pills .nav-link.active {
  color: #fff;
  background-color: #001540;
}
.nav-pills {
  width: 30%;
}
.nav-pills .nav-link {
  color: #282828;
  font-size: 18px;
  line-height: 26px;
  padding: 20px;
  text-align: left;
  font-weight: 600;
  margin-bottom: 20px;
  background-color: #f4f4f4;
  position: relative;
}
.nav-pills .nav-link:last-child {
  margin-bottom: 0;
}
.nav-pills .nav-link.active:after,
.nav-pills .nav-link.active:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #001540;
  border-width: 12px;
  margin-top: -12px;
}
.tab-content {
  width: 65%;
}
.tab-content > .tab-pane {
  margin-left: 5%;
}
.tab-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #001642;
}
.faq-accordion.desktop-hide {
  display: none;
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px;
  color: #282828;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  text-align: left;
  background-color: #f4f4f4;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: 0.4s;
}
.accordion-item {
  color: #282828;
  background-color: #fff;
  border: 1px solid #eaeaea;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #001540;
  box-shadow: none;
}
.accordion-button:focus {
  border-color: #eaeaea;
  box-shadow: none;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.accordion-button:not(.collapsed)::after {
  filter: brightness(100) invert(0);
}
.accordion-body {
  padding: 20px;
}
.faq-page ul li {
  position: relative;
  padding-left: 15px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #5c5c5c;
  margin-bottom: 10px;
}
.faq-page ul li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #5c5c5c;
  border-radius: 50%;
}

/* End FAQ */

/* Mobility Scooter Scheme */
.sidebar-contact-form {
  background-color: #001642;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}
.sidebar-contact-form h5 {
  color: #fff;
}
.sidebar-contact-form form label {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  font-weight: 700;
  width: 100%;
}
.sidebar-contact-form form p span input,
.sidebar-contact-form form p span textarea {
  color: #fff;
}
.sidebar-contact-form form p span textarea {
  height: 150px;
}
.sidebar-contact-form form p span select::placeholder {
  color: #fff;
}
.sidebar-contact-form form p span input:focus,
.sidebar-contact-form form p span textarea:focus,
.sidebar-contact-form form p span select:focus,
.sidebar-contact-form form input[type="submit"]:focus {
  border-color: #fff;
}
.sidebar-contact-form form p span select {
  background-image: url("assets/images/icon-down-arrow.svg") !important;
  filter: brightness(0) invert(100);
}
.sidebar-contact-form form input[type="submit"] {
  color: #fff;
  text-transform: uppercase;
  margin-top: 12px;
}
.sidebar-contact-form form input[type="submit"]:hover {
  color: #fff;
  background-color: #009933;
  border-color: #009933;
}
.sidebar-contact-form form .wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #ffffff;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: inherit;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: -6px;
}
.sidebar-contact-form form .wpcf7 form.invalid .wpcf7-response-output,
.sidebar-contact-form form .wpcf7 form.unaccepted .wpcf7-response-output,
.sidebar-contact-form form .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffffff !important;
  color: #fff !important;
  border-radius: 8px !important;
  border: 1px solid #fff !important;
}
.wpcf7-not-valid-tip {
  font-size: 12px;
  line-height: normal;
}
/* End Mobility Scooter Scheme */

/* Image Alignment */
.cmswith-image {
  padding: 0 0 25px 0;
}
.cms-image.left {
  margin: 0 30px 20px 0;
  width: 20%;
  text-align: center;
  float: left;
}
.cms-image.right {
  margin: 0 0 20px 30px;
  width: 20%;
  text-align: center;
  float: right;
}
/* End Image Alignment */

/* Sitemap */
.sitemap-list ul {
  column-count: 3;
}
.sitemap-list ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.sitemap-list ul li a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #5c5c5c;
  transition: 0.4s;
}
.sitemap-list ul li a:hover {
  color: #001642;
  transition: 0.4s;
}
.sitemap-list h2 {
  padding: 30px 0 20px;
  margin: 0;
}
.sitemap-list h2:first-child {
  padding-top: 0;
}
/* End Sitemap */

/* Thank You Page */
.thankyou-content {
  background-color: rgb(0 153 51 / 10%);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  text-align: center;
}
.thankyou-content h1 {
  text-transform: uppercase;
  color: #001642;
}
/* End Thank You Page */

/* Categories Data Hide */
.vs_container_productcategories {
  display: none;
}
/* End Categories Data Hide */

/*  */
.shop_table ul li:before {
  display: none;
}
.shop_table ul li {
  padding: 0 !important;
  margin: 0 !important;
}
/*  */

/* Product Categories Description & Brand Description */
.term-description,
.pwb-brand-description {
  margin-top: 40px;
}
.term-description h2,
.pwb-brand-description h2 {
  font-size: 26px;
  line-height: 30px;
}
.term-description h3,
.pwb-brand-description h3 {
  font-size: 22px;
  line-height: 30px;
}
.term-description p,
.term-description p a,
.pwb-brand-description p,
.pwb-brand-description p a {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.term-description p a,
.pwb-brand-description p a {
  color: #009933;
}
.term-description p a:hover,
.pwb-brand-description p a:hover {
  color: #001642;
}
/* End Product Categories Description */

/* Loading */
div.vs_info_popup {
  background-color: rgb(0 153 51 / 77%);
}
/* End Loading */

/* Alert Messages */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  padding: 1em 2em 1em 3.5em;
  margin: 0 0 2em;
  position: relative;
  background-color: #f4f4f4;
  color: #5c5c5c;
  border-top: 3px solid #009933;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
}
.woocommerce-info {
  border-top-color: #009933;
  border-radius: 0 0 8px 8px;
}
.woocommerce-info::before,
.woocommerce-message::before {
  color: #009933;
}
.woocommerce form .form-row .woocommerce-input-wrapper .description::before {
  border-color: #009933 transparent transparent transparent;
}
.woocommerce form .form-row .woocommerce-input-wrapper .description {
  background: #009933;
}
.woocommerce-error li:before,
.woocommerce-info li:before,
.woocommerce-message li:before {
  display: none;
}
/* End Alert Messages */

/* Whatsapp */
.wa__btn_popup {
  font-family: inherit;
  right: 70px !important;
  bottom: 50px !important;
}
.wa__btn_popup .wa__btn_popup_icon {
  height: 46px;
  width: 46px;
}
.wa__btn_popup .wa__btn_popup_icon:before {
  background-size: 26px auto;
  -webkit-background-size: 26px auto;
  -moz-background-size: 26px auto;
}
.wa__btn_popup .wa__btn_popup_txt {
  color: #282828;
}
/* End Whatsapp */

body .sidebar .shop-brand li {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
}

body .sidebar .shop-brand li a {
  text-transform: capitalize;
  font-size: 16px;
  line-height: 24px;
  color: #5c5c5c;
}

body .prod_brand {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
  order: 4;
}

.alphabetical-index {
  display: flex;
}

.alphabetical-index a {
  display: inline-block;
}

/* 404 */
.error-text h1 {
  font-size: 150px;
  line-height: 1;
}
.error-text {
  text-align: center;
}
/* End 404 */

/* Paypal */
.paypal-block,
.free-shipping-block {
  border: 1px solid #009933;
  border-radius: 10px;
  display: inline-block;
  padding: 30px;
  background-color: #009933;
  max-width: 284px;
  width: 100%;
}
.paypal-block h6,
.free-shipping-block h6 {
  margin-bottom: 0;
  color: #fff;
}
.paypal-block p {
  color: #fff;
}
.paypal {
  display: block;
  padding: 10px 20px 10px 60px;
  margin: 30px 0 30px 0;
  border-radius: 8px;
  background: url(assets/images/paypal.svg) no-repeat left 20px center #f4f4f4;
}
/* Paypal End */
/* New CSS 06/01/23 */
.shop-category {
  border: 1px solid #ebeaea;
  padding: 16px 27px 24px 16px;
  border-radius: 16px;
  margin-bottom: 24px !important;
}
.shop-category h4,
.shop-brand h4 {
  border-bottom: 1px solid #ebeaea;
  padding-bottom: 16px;
}
.tax-product_cat ul.vs_list.vs_list_radio {
  border: 0;
  padding: 0;
  border-radius: 0;
  margin-bottom: 0 !important;
}
.shop-brand {
  border: 1px solid #ebeaea;
  border-radius: 16px;
  padding: 15px;
}
.pwb-brands-cols-outer {
  flex-direction: column;
}
.pwb-all-brands .pwb-brands-cols-outer .pwb-brands-col3 {
  width: 100%;
  padding: 0;
  margin: 0 0 8px 0;
  border: 0;
  border-radius: 0;
}
.pwb-all-brands .pwb-brands-cols-outer .pwb-brands-col3 {
  align-items: flex-start;
}
.pwb-all-brands .pwb-brands-cols-outer .pwb-brands-col3:last-child {
  margin-bottom: 0;
}
.pwb-brands-col3 div {
  display: none;
}
.pwb-brands-col3 p {
  margin-bottom: 0;
}
/* New CSS 06/01/23 */

/* New CSS 01/08/23 */
body .cert {
  max-width: 600px !important;
  margin: 0 !important;
}
/* New CSS 01/08/23 */

/* New CSS 10/11/2023 */
.woocommerce .woocommerce-order-details:last-child,
.woocommerce .woocommerce-table__product-table.product-total,
.woocommerce table.shop_table td:last-child {
  text-align: right !important;
}
.woocommerce-checkout #payment div.payment_box::before {
  display: none;
}
.share-btn-wrapper {
  top: 50%;
}

.brands-section ul {
  margin-top: 30px;
}

.brands-section ul li {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 16px;
}
.brands-section ul li > div {
  width: calc(33.33% - 16px);
  padding: 15px 20px;
  border: 1px solid #dfdfdf;
  background: #f4f4f4;
}

.brands-section ul li span {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 8px;
  display: block;
}

.brands-section ul li h2 {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.brands-section ul li h2 a {
  color: #001642;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-left: 12px;
}

.brands-section ul li h2 a::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #001642;
}

.brands-section ul li h2 a:hover {
  text-decoration: underline;
}

/* New CSS 10/11/2023 */

/* New CSS 16/11/2023 */
.list-advantages {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.free-shipping-block span {
  display: inline-block;
  margin-bottom: 6px;
}
.free-shipping-block p {
  display: none;
}
.product-detail-inner .woocommerce-Tabs-panel--description ul {
  padding-bottom: 10px;
}
.product-detail-inner .woocommerce-Tabs-panel--description ul li {
  margin-bottom: 5px;
}

/* New CSS 16/11/2023 */

/* Header Benefits Bar */
.benefits-bar {
  background: #001642;
  padding: 8px 0;
}
.benefits-bar-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.benefits-bar-block a,
.benefits-bar-block p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
}
.benefits-bar .swiper-slide {
  background-color: #001642;
}
/* End Header Benefits Bar */

/* New Css 31/3/2025 */
.site-header.new-site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  left: 0;
  transition: all 0.1s linear 0s;
  box-shadow: 0px 15px 20px rgb(3 3 3 / 5%);
}
.site-header.new-site-header.smaller .middle-header {
  transition: all 0.1s linear 0s;
}
.site-header.new-site-header.smaller .middle-header {
  padding: 8px 0;
}
.new-landing-page-header .main-navigation {
  justify-content: center;
}
.new-tepmplate-header-container {
  display: flex;
  align-items: center;
  position: relative;
}
.new-tepmplate-header-container .header-links-container {
  flex: 1;
}
.new-landing-page-header .main-navigation .site-nav > .menu-item {
  padding-bottom: 0;
}
/* Site Content Start*/
:target { scroll-margin-top: 100px; }
.ppc-template .site-content {
  margin-top: 100px;
}
.ppc-template .hero-section {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.ppc-template .overlay {
  border-image: linear-gradient(rgba(40, 40, 40, 0.8), rgba(40, 40, 40, 0.4))
    fill 1;
}
.ppc-template .hero-section h1,
.ppc-template .hero-section p {
  color: white;
}

.ppc-template .contact-section-right br {
  display: none;
}
.ppc-template select {
  color: #001642;
}
.ppc-template .contact-form {
  background-color: #fff;
  border-radius: 7px;
  overflow: hidden;
}

.contact-form .form-title {
  padding: 16px 20px;
  background-color: #001642;
}
.ppc-template .contact-form .form-title p {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  /* margin-bottom: 16px; */
}
.ppc-template input,
.ppc-template select{
  height: 36px;
}
.ppc-template .contact-section-right input,
.ppc-template .contact-section-right textarea {
  margin-top: 4px;
}
.form-content {
  padding: 16px 20px;
}
.contact-form form p:last-of-type {
  margin-bottom: 0;
}
.contact-form form select {
  margin-top: 10px;
}
/* Site Content End*/
/* Brand slider */
.ppc-template .brand-slider-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap:24px
}
.ppc-template .brand-slider-col {
  width: calc(100% / 4 - 18px);
}
/* .brand-wrapper{
  height: 100%;
  min-height: 138px;
} */
.brand-slider-col .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #ebeaea;
  border-radius: 4px;
  padding: 18px 30px;
}
.ppc-template .contact-section-right p input[type="submit"] {
  padding: 8px 18px;

  height: 40px;
}
/* Brand slider End */
/* Product Catalogue  */
.ppc-template .best-selling .woocommerce ul.products {
  flex-wrap: wrap;
  row-gap: 24px;
}
/* Product Catalogue  End */
/* Testimonial */
.ppc-template .testimonial {
  padding: 100px 0;
}
/* Testimonial End*/
/* Benefit Start */
.benefit ul {
  flex-direction: column;
  align-items: start;
}
.benefit ul li {
  font-size: 18px;
    line-height: 24px;
  font-weight: 400;
  color: #5c5c5c;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.benefit ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #5c5c5c;
  border-radius: 50%;
}
.book-demo-btn {
  margin-top: 20px;
}
.ppc-template .products-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 24px;
}
.ppc-template .product-col {
  width: calc(100% / 4 - 24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 12px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ebeaea;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  max-width: 267px;
  float: none;
}
.product-thumbnail-wrapper {
  padding: 30px;
}
.ppc-template .product-col img {
  height: 157px;
  object-fit: contain;
}
.ppc-template .product-col .product-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #030303;
  text-align: left;
  margin: 8px 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}
/* Benefit End */
/* Footer */
.ppc-template .footer-top{
  margin-bottom: 0;
  border-bottom: 0;
}
.ppc-template .footer-middle {
  padding-bottom: 0;
  border-bottom: none;
}
.ppc-template .contact-info{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  /* max-width: 80%;
  margin: 24px auto 0; */
  margin-top: 24px;
}
.ppc-template .social-media {
  justify-content: center;
}
.ppc-template .social-media li {
  margin-right: 12px;
}
.ppc-template .footer-middle .contact-info li {
  margin-bottom: 0;
}
.ppc-template  .social-media {
  margin-top: 24px;
}
/* Footer End */
.wpcf7 form .wpcf7-response-output {
  margin: 1em 0;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
  font-size: 12px;
}
/* New Css 31/3/2025 */

/* 05/03/2025 Whatsapp Button Product Detail Page */
.woocommerce .product-detail-inner div.product form.cart .button {
  padding: 14px 18px;
}
.icon_whatsapp:before {
  content: "" !important;
  -webkit-mask-image: url(assets/images/icon_whatsapp.svg);
  mask-image: url(assets/images/icon_whatsapp.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background: #fff;
  transition: 0.4s;
  -webkit-mask-size: cover;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce .product-detail-inner div.product form.cart .whatsapp-button {
  padding: 14px 18px 14px 44px;
  margin-left: 10px;
}
.woocommerce .quantity .qty {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  border: 1px solid #cecece;
  border-radius: 8px;
  min-width: auto;
  height: 50px;
  width: auto;
  max-width: 60px;
  padding: 10px 8px;
  margin: 0 10px 0 40px;
}
.woocommerce div.product form.cart .quantity .input-text.qty{
  margin: 0 10px 0 40px;
}
.woocommerce div.product form.cart div.quantity {
    float: left;
    margin: 0;
}
/* End 05/03/2025 Whatsapp Button Product Detail Page */