/* 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;
}

:root {
  scroll-behavior: unset;
}

body {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Readex Pro", sans-serif;
  color: #363636;
  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: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #000;
  text-decoration: none;
  display: block;
  transition: all 0.4s;
}

a:hover {
  color: #2F5CCE;
  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: 52px;
  line-height: 65px;
}

h2,
.heading-two {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
}

h3,
.heading-three {
  font-size: 34px;
  line-height: 44px;
}

h4,
.heading-four {
  font-size: 28px;
  line-height: 42px;
}

h5,
.heading-five {
  font-size: 24px;
  line-height: 36px;
}

h6,
.heading-six {
  font-size: 20px;
  line-height: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6,
address,
p,
pre,
blockquote,
dl,
dd,
menu,
table,
caption,
hr {
  margin: 0 0 16px 0;
}

p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #363636;
}

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;
  padding: 0;
}

/* End Typography */

/* Form Field */
input,
button,
select,
textarea {
  background: transparent;
  border: 1px solid #D3D3D3;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
  color: #000000;
}

input:focus,
input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  outline: none;
  border-color: #2F5CCE;
}

input,
select,
textarea {
  width: 100%;
  font-size: 14px;
  line-height: 21px;
  box-shadow: none;
  -webkit-box-shadow: none;
  padding: 10px 16px;
}

input::placeholder,
textarea::placeholder {
  color: #969696;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #969696;
  opacity: 1;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("assets/images/icon-down-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 24px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  cursor: pointer;
  padding: 7px 28px 7px 16px;
  border: 1px solid #D3D3D3;
  height: 38px;
  color: #969696;
  text-transform: capitalize;
}

input[type="checkbox"],
input[type="radio"] {
  width: 16px;
  height: 16px;
  border: 1px solid #D3D3D3;
  font-size: 16px;
  line-height: 24px;
  color: #565656;
  font-weight: 300;
}

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: 13px;
  line-height: 20px;
  margin: 0 0 10px;
  color: #565656;
  display: block;
}

.form-group label .required,
.form-group .error-text {
  color: #dc3232;
}

.form-group .error-text {
  font-size: 14px;
  line-height: 24px;
}

/* Common Button */
.primary-btn,
.secondary-btn,
.blue-border-btn,
.disable-btn {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 0;
  text-transform: capitalize;
  transition: all 0.4s;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.primary-btn.small-btn,
.secondary-btn.small-btn,
.blue-border-btn.small-btn,
.disable-btn.small-btn {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  padding: 12px 26px;
}

.primary-btn {
  /* background: #2F5CCE; */
  color: #FFFFFF;
}

.secondary-btn {
  background: #000000;
  color: #FFFFFF;
}

.blue-border-btn {
  background: #fff;
  border: 1px solid #2F5CCE;
  color: #2F5CCE;
}

.disable-btn {
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  color: #969696;
}

.primary-btn:hover {
  /* background: #000; */
  color: #fff;
}

.secondary-btn:hover {
  background: #2F5CCE;
  color: #fff;
}

.blue-border-btn:hover {
  background: #2F5CCE;
  color: #fff;
}

.primary-btn::before,
.primary-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.25s ease;
}

.primary-btn::before {
  background: #2F5CCE;
  border-color: #2F5CCE;
  box-shadow: inset 0 0 0 60px #2F5CCE;
  z-index: -1;
}

.primary-btn::after {
  box-shadow: inset 0 0 0 1px #2F5CCE;
}

.primary-btn:hover::before {
  box-shadow: inset 0 0 0 1px #000;
}

/* End Common Button */

/* Spacing Style */
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

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

.pb-50 {
  padding-bottom: 50px;
}

.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;
  background-color: #2F5CCE;
}

.top-header-left ul li a {
  display: flex;
  align-items: center;
}

.top-header-left ul li span {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #FFFFFF;
  display: block;
}

.first-text {
  padding-right: 6px;
}

.review-text {
  padding-left: 10px;
  padding-right: 4px;
}

.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: #2F5CCE;
  transition: 0.4s;
}

.top-header-right,
.top-header-right ul {
  display: flex;
  justify-content: flex-end;
  white-space: nowrap;
}

.top-header-right-inner {
  display: flex;
  align-content: center;
}

.top-header-right ul li {
  position: relative;
  margin-right: 8px;
  padding-right: 8px;
}

.top-header-right ul li:before {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  background-color: #fff;
  width: 1px;
  height: 12px;
}

.top-header-right ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  transition: all 0.4s;
}

.top-header-right ul li a:hover {
  color: #000000;
  transition: all 0.4s;
}

.hours-block p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #FFFFFF;
}

.exclusive-offers-btn {
  padding: 0;
  border: 0;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #fff;
  position: relative;
  margin-right: 8px;
  padding-right: 8px;
}

.exclusive-offers-btn:hover {
  color: #000;
  transition: all 0.4s;
}

.btn.exclusive-offers-btn:focus-visible {
  color: #2f5cce;
  background-color: transparent;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.exclusive-offers-btn:after {
  content: '';
  position: absolute;
  top: 6px;
  right: 0;
  background-color: #fff;
  width: 1px;
  height: 12px;
}

.offers-block-wrapper {
  position: relative;
}

.offers-modal .modal-content {
  border: none;
  border-radius: 0;
  outline: 0;
}

.offers-modal .btn-close:focus {
  outline: 0;
  box-shadow: none;
  opacity: 1;
}

.offers-modal .primary-btn {
  background-color: #2F5CCE;
}

.offers-modal .primary-btn:hover {
  background-color: #000;
}

.offers-modal .primary-btn:hover:before,
.offers-modal .primary-btn:hover:after {
  box-shadow: none;
}

.offers-modal .emaillist .es_subscription_form .es-form-field-container input[type="email"] {
  color: #363636 !important;
}

.offers-modal .modal-dialog {
  max-width: 700px;
}

.offers-modal .btn-close {
  position: relative;
  box-sizing: content-box;
  width: 18px;
  height: 18px;
  padding: 0;
  color: #000;
  background: transparent;
  border: 0;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 16px;
  right: 16px;
}

.offers-modal .btn-close:after {
  content: "";
  display: block;
  -webkit-mask-image: url(assets/images/icon_close_filter.svg);
  mask-image: url(assets/images/icon_close_filter.svg);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background: #363636;
  transition: all 0.4s;
  -webkit-mask-size: cover;
}

.offers-modal .btn-close:hover:after {
  background: #2F5CCE;
  transition: all 0.4s;
}

.offers-modal .modal-title {
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 0 20px 0;
  color: #2f5cce;
}

.offers-content {
  height: 100%;
  background-color: rgb(47 92 206 / 10%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
}

.offers-modal .es_subscription_message.success {
  color: #2f5cce;
  font-size: 16px;
}

img.rating-img {
  height: 21px;
}

/* End Top Header */

/* Middle Header */
.site-branding a {
  display: inline-block;
}

.middle-header {
  padding: 24px 0;
  border-bottom: 1px solid #EEEEEE;
}

.middle-header-last-col-wrap>ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.middle-header-last-col-wrap ul li {
  margin-right: 10px;
}

.middle-header-last-col-wrap ul li:last-child {
  margin-right: 0;
}

.middle-header-last-col-wrap ul li a {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  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: 30px;
}

.middle-header-last-col-wrap ul li.login-link a:hover {
  color: #2F5CCE;
}

.middle-header-last-col-wrap ul li .cart-link {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  gap: 4px;
}

.middle-header-last-col-wrap ul li .cart-link:before {
  content: '';
  background: url("assets/images/icon_cart.svg") no-repeat left center;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.middle-header-last-col-wrap ul li .cart-link>span.cart-value {
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  text-overflow: ellipsis;
  max-width: 55px;
}

.middle-header-last-col-wrap ul li .cart-link>span.count {
  position: absolute;
  top: -6px;
  left: 8px;
  right: 0;
  background-color: #000;
  color: #fff;
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  line-height: 12px;
  font-weight: 400;
}

.header-search .mobile-search {
  display: block;
}

.header-search .mobile-search .dgwt-wcas-sf-wrapp {
  padding: 0;
}

.header-search .ywcas-input-field-wrapper,
.header-search .mobile-search .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
  padding: 10px 20px 9px 16px;
  font-size: 14px;
  line-height: 18px;
  border: 1px solid #D3D3D3;
  border-radius: 0;
  height: auto;
  font-family: inherit;
  background-color: transparent;
}

.header-search .ywcas-input-field-wrapper .lapilliUI-Input__field::placeholder,
.header-search .mobile-search .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input::placeholder {
  color: #969696;
}

.header-search .wp-block-yith-search-block .ywcas-classic-search.ywcas-small input {
  padding: 0 !important;
  font-size: 14px !important;
  line-height: 21px !important;
  font-weight: 400 !important;
  color: #969696 !important;
}

.header-search .mobile-search .dgwt-wcas-sf-wrapp .dgwt-wcas-preloader {
  display: none;
}

.header-search .ywcas-submit-icon {
  background-image: url(assets/images/icon_search.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  position: absolute;
  top: 0;
  right: -4px;
  color: inherit;
}

.header-search .ywcas-submit-icon path {
  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 .ywcas-input-field-wrapper:focus-within {
  background-color: rgb(255, 255, 255) !important;
  border-color: #2f5cce !important;
}

.header-search .ywcas-popover-results {
  margin-top: 0 !important;
}

body .ywcas-popover-results .popover-content .wp-block-yith-filled-block .ywcas-search-results .search-result-item .search-result-item__thumbnail {
  width: 50px !important;
  height: 50px !important;
}

body .ywcas-popover-results .popover-content {
  background: #fff !important;
  padding: 20px !important;
  border-radius: 0 !important;
  border: none !important;
  max-height: 600px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  box-shadow: 3px 0 15px rgba(0, 0, 0, 0.15) !important;
}

body .ywcas-popover-results .popover-content .wp-block-yith-filled-block .ywcas-search-results.list .ywcas-search-results-grid {
  gap: 10px !important;
}

body .ywcas-popover-results .popover-content .wp-block-yith-filled-block .ywcas-search-results.list {
  margin-top: 0 !important;
  margin-left: 0 !important;
}

body .ywcas-badge {
  display: none !important;
}

body .ywcas-popover-results .popover-content .wp-block-yith-filled-block .ywcas-search-results .search-result-item .search-result-item__thumbnail img {
  border: 1px solid #d3d3d3 !important;
}

body .mobile-search .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit svg {
  display: none !important;
}

.mobile-search-block {
  display: none;
}

.dgwt-wcas-si img {
  border: 1px solid #EEE;
}

.cart-link::after {
  display: none;
}

.top-cart {
  border: none;
  box-shadow: 0 4px 16px rgb(0 0 0 / 8%);
  border-radius: 0;
  overflow: hidden;
  padding: 0;
  transform: none !important;
  inset: initial !important;
  position: absolute;
  left: 0 !important;
  right: auto !important;
  top: 200% !important;
  margin: auto !important;
  display: block;
  min-width: 90px;
  transition: all 0.1s;
  background: #fff;
  z-index: 99;
  border-top: 3px solid #2f5cce;
  width: 100%;
  visibility: hidden;
  opacity: 0;
}

.cart-dropdown .top-cart {
  min-width: 340px;
  padding: 20px;
  left: auto !important;
  right: 0 !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: #363636;
  margin: 0;
}

.woocommerce ul.cart_list li a {
  padding-right: 30px;
  padding-left: 60px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #363636;
  overflow: hidden;
  white-space: normal;
}

.woocommerce ul.cart_list li a:hover {
  color: #2F5CCE;
}

.woocommerce.widget_shopping_cart .cart_list li a.remove {
  position: absolute;
  top: 6px;
  left: inherit;
  right: 6px;
  display: flex;
  justify-content: center;
  color: #2f5cce !important;
  width: 100%;
  height: 100%;
  max-width: 20px;
  max-height: 20px;
  background: transparent;
  border-radius: 0;
  line-height: 16px;
  font-size: 20px;
  border: 1px solid #2f5cce;
  padding: 0;
  z-index: 9;
  text-align: center;
}

.woocommerce.widget_shopping_cart .cart_list li a.remove:hover {
  background-color: #2f5cce;
  color: #fff !important;
  border-color: #2f5cce;
}

.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li {
  padding: 8px 0;
  border-top: 1px solid #eee;
}

.woocommerce.widget_shopping_cart .cart_list li:first-child {
  padding-top: 0;
  border-top: none;
}

span.quantity {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  margin: 0 0 0 60px;
  display: block;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  float: none;
  margin: 0;
  box-shadow: none;
}

.cart_list li a:hover {
  color: #2F5CCE;
}

.cart_list li a img {
  width: 50px !important;
  height: 50px !important;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.top-cart .woocommerce-mini-cart__total.total strong {
  font-weight: 500;
  color: #2f5cce;
}

.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: #363636;
}

.woocommerce-mini-cart__buttons.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.woocommerce-mini-cart__buttons.buttons a {
  border: none;
  border-radius: 0;
  background-color: #2f5cce;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #ffffff;
  padding: 8px 12px;
  margin: 0 !important;
  transition: all 0.4s;
  width: auto !important;
}

.woocommerce-mini-cart__buttons.buttons a:hover {
  background-color: #000;
  color: #fff;
  transition: all 0.4s;
}

.cart_list {
  padding: 0 5px 0 0 !important;
  margin: 0;
  width: 100%;
  max-height: 248px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #2f5cce transparent;
  scrollbar-width: thin;
}

.cart_list::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
  border-radius: 0;
}

.cart_list::-webkit-scrollbar-thumb {
  background: #363636;
  border-radius: 0;
  background-color: #363636;
}

.cart_list::-webkit-scrollbar-track {
  background: transparent;
}

.bottom-header-right-wrapper,
.bottom-header-right-wrapper>ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
}

.bottom-header-right-wrapper ul {
  margin-left: 16px;
}

.header-contact-btn .primary-btn {
  text-transform: inherit !important;
  padding: 11px 18px !important;
}

/* End Middle Header */

/* Bottom Header */
.bottom-header {
  background: #fff;
  padding: 10px 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: 26px;
  position: relative;
  padding-bottom: 10px;
}

.mobile {
  display: none;
}

body .offcanvas {
  max-width: 90%;
  z-index: 9999;
}

body .offcanvas-header {
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}

.main-navigation .site-nav .menu-item>a {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #363636;
  transition: all 0.4s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-navigation .site-nav .menu-item>a:hover {
  color: #2F5CCE;
  transition: all 0.4s;
}

.main-navigation .site-nav .menu-item:last-child {
  margin-right: 0;
}

.main-navigation .site-nav .menu-item-has-children>a:after {
  content: "";
  display: block;
  -webkit-mask-image: url(assets/images/icon_down_arrow.svg);
  mask-image: url(assets/images/icon_down_arrow.svg);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background: #363636;
  transition: all 0.4s;
  -webkit-mask-size: cover;
}

.main-navigation .site-nav li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 240px;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  z-index: 4;
  border: 0;
  border-top: 0;
  display: none;
  transform: translate(0, 10px);
  transition: 0.4s;
}

.main-navigation .site-nav li:hover .sub-menu {
  transform: translate(0, 0);
  transition: 0.4s;
  display: block;
}

body:not(.loaded) ul.sub-menu {
  display: none;
}

.main-navigation .site-nav li .sub-menu li {
  width: 100%;
}

.main-navigation .site-nav li .sub-menu li a {
  display: block;
  border-bottom: none;
  padding: 12px 16px;
  position: relative;
  transition: 0.4s;
  left: 0;
  color: #363636;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  border-bottom: 1px solid #cecece;
}

.main-navigation .site-nav li .sub-menu li:last-child a {
  border: none;
}

.main-navigation .site-nav li .sub-menu li a:hover {
  color: #2F5CCE;
  transition: 0.4s;
}

.main-navigation .site-nav li.current-menu-item a {
  color: #2F5CCE;
  transition: 0.4s;
}

span.arw {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}

span.arw i:before {
  display: none;
}

/* End Bottom Header */

/* Header Slider */
.header-slider-wrapper {
  display: none;
}

.home .header-slider-wrapper {
  display: block;
  padding: 8px 0;
  background-color: #EEEEEE;
}

.header-slider-content {
  gap: 10px;
}

.header-slider-content p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.header-slider .header-button-prev,
.header-slider .header-button-next {
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: none;
  border-radius: 0;
  transition: all 0.4s;
  z-index: 2;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  color: #fff;
}

.header-slider .header-button-prev {
  left: 0;
}

.header-slider .header-button-next {
  right: 0;
}

.header-slider .header-button-prev::after,
.header-slider .header-button-next::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url("assets/images/icon_right_arrow.svg") no-repeat center;
  background-size: contain;
  transition: all 0.4s;
}

.header-slider .header-button-prev::after {
  background: url("assets/images/icon_left_arrow.svg") no-repeat center;
}

.header-slider .header-button-prev:hover:after {
  background: url("assets/images/icon_left_blue_arrow.svg") no-repeat center;
  transition: all 0.4s;
}

.header-slider .header-button-next:hover:after {
  background: url("assets/images/icon_right_blue_arrow.svg") no-repeat center;
  transition: all 0.4s;
}

/* End Header Slider */

/* .site-header.smaller .middle-header { display: none;} */
.site-header .site-header-wrapper {
  transition: all 0.1s linear 0s;
}

.site-header .site-header-wrapper {
  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%);
}

.page-template-template-login .site-content,
.page-template-template-registration .site-content {
  min-height: calc(100vh - 584px);
}

.site-content {
  padding-top: 184px;
}

.home .site-content {
  padding-top: 225px;
}

.btn-check:checked+.btn,
.btn.active,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  background-color: transparent;
  border-color: transparent;
}

/* End Header */

/* Banner */
.banner {
  position: relative;
  background: #CEEAF3;
}

.banner .content {
  background: #CEEAF3;
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
  padding-left: 280px;
}

.banner .content .subtitle {
  display: block;
  font-weight: 600;
  transform: translateY(370px);
  transition: all 0.8s ease-in-out;
  opacity: 0;
  font-size: 24px;
  line-height: 36px;
}

.banner .content .title {
  display: block;
  margin: 0;
  color: #000000;
  transform: translateY(370px);
  transition: all 1.2s ease-in-out;
  opacity: 0;
  font-weight: 700;
  margin-bottom: 40px;
}

.banner-btn-group {
  transform: translateY(370px);
  transition: all 1.6s ease-in-out;
  opacity: 0;
}

/* .banner .banner-right-image {
  transform: translateX(1000px);
  transition: all 2.0s;
  opacity: 0;
} */
.banner .banner-right-image .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner .swiper-slide-active .content .title,
.banner .swiper-slide-active .content .subtitle,
.banner .swiper-slide-active .banner-btn-group {
  transform: translateY(0px);
  opacity: 1;
}

/* .banner .swiper-slide-active .banner-right-image {
  transform: translateX(0);
  opacity: 1;
} */
.banner-content {
  padding-left: 0;
}

.banner .swiper-slide {
  overflow: hidden;
}

.banner .banner-right-image .image {
  /* position: absolute; */
  top: 0;
  left: 0;
  right: 0px;
  bottom: 0;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.banner .swiper-pagination.banner-pagination {
  position: absolute;
  text-align: center;
  max-width: 575px;
  margin: 0 auto;
  bottom: 145px;
  overflow: hidden;
}

.banner-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #969696;
  opacity: 1;
}

.banner-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 3px;
}

.banner-pagination .swiper-pagination-bullet-active {
  background: #000000;
}

/* End Banner */

/* Brand slider */
.brand-slider .swiper-wrapper {
  justify-content: center;
}

.brand-slider .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  padding: 31px 20px;
}

.brand-slider .swiper-slide {
  height: auto;
}

/* End Brand slider */

/* Product List Section */
.product-box-section {
  margin-bottom: -24px;
}

.product-list-box {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #D9D9D9;
  width: 100%;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
  height: 0;
}

.product-list-box:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 128px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  transition: all 0.4s;
  z-index: 1;
}

.product-list-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
}

.product-list-box h3 {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.product-list-col {
  margin-bottom: 24px;
}

.product-list-box:hover img {
  transform: scale(1.2);
  transition: all 0.4s;
}

/* End Product List Section */

/* New Arrivals */
.section-title {
  text-align: center;
  position: relative;
}

.section-title h2 {
  display: inline-block;
}

.new-arrival {
  background-color: rgb(238 238 238 / 30%);
}

.product-category-tabs .nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 0;
}

.product-category-tabs .nav-tabs .nav-link {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #969696;
  padding: 0;
  border: 0;
}

.product-category-tabs .nav-tabs .nav-link.active {
  color: #2F5CCE;
  background-color: transparent;
  border: 0;
}

.product-category-tabs .nav-tabs .nav-link:focus,
.product-category-tabs .nav-tabs .nav-link:hover {
  border: 0;
}

.onsale {
  display: none;
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
  position: absolute;
  width: 24px;
  height: 24px;
  vertical-align: sub;
  top: 16px;
  right: 28px;
  margin: 0;
  z-index: 9;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}

.product-category-tabs .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
  right: 16px;
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before,
.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: 24px;
  width: 24px;
  display: block;
  position: absolute;
  top: 0;
  left: inherit;
  right: 0;
  margin: 0;
  font-family: inherit !important;
  font-size: 0;
  transition: all 0.4s;
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:after {
  opacity: 0;
  background-image: url(assets/images/icon_wishlist_fill.svg);
}

.product:hover .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
  transition: all 0.4s;
  opacity: 1;
  visibility: visible;
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:hover:after {
  opacity: 1;
  transition: 0.4s;
}

.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);
}

.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;
  display: flex;
  margin: 0 -12px -24px;
}

.product-box-wrapper {
  overflow: hidden;
  position: relative;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: 0 !important;
  border-radius: 0;
  text-align: center;
  float: none;
  width: 25% !important;
  padding: 0 12px 24px;
  overflow: hidden;
  position: relative;
}

.woocommerce ul.products li.product a img,
.product-category-tabs li.product a img {
  height: 237px;
  object-fit: contain;
  margin-bottom: 0;
}

.woocommerce ul.products li.product .product-box-wrapper a.thumbnail,
.product-category-tabs li.product .product-box-wrapper a.thumbnail {
  display: block;
  transition: all 0.4s;
  padding: 13px;
  background-color: #fff;
  border: 1px solid #EEEEEE;
}

.woocommerce ul.products li.product .product-box-wrapper a.thumbnail img,
.product-category-tabs li.product .product-box-wrapper a.thumbnail img {
  transition: 0.4s;
}

.woocommerce ul.products li.product:hover .product-box-wrapper a.thumbnail img,
.product-category-tabs li.product:hover .product-box-wrapper a.thumbnail img {
  transform: rotateY(180deg);
  transition: 0.4s;
}

.woocommerce ul.products li.product .woocommerce-loop-product_title,
.product-category-tabs li.product .woocommerce-loop-product_title {
  padding: 0;
  text-align: left;
  margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product_title a,
.product-category-tabs li.product .woocommerce-loop-product_title a {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  text-align: left;
  margin: 16px 0 8px;
  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,
.product-category-tabs li.product .woocommerce-loop-product_title a:hover {
  color: #2f5cce;
}

.inner-content {
  display: flex;
  flex-direction: column;
}

.woocommerce ul.products li.product .price-rating-wrapper,
.product-category-tabs .product .price-rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.woocommerce ul.products li.product .price,
.product-category-tabs .product .price {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #030303;
  margin: 0;
  order: 1;
}

.woocommerce ul.products li.product .btn-wrapper,
.product-category-tabs .product .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}

.woocommerce ul.products li.product:hover .btn-wrapper,
.product-category-tabs .product:hover .btn-wrapper {
  bottom: 122px;
  transition: all 0.4s;
  opacity: 1;
  visibility: visible;
}

.product-category-tabs .product:hover .btn-wrapper {
  bottom: 98px;
}

/* .woocommerce .product-listing ul.products li.product:hover .btn-wrapper {
  bottom: 142px;
} */
.woocommerce ul.products li.product .btn-wrapper .add_to_cart_button,
a.button.wp-element-button.product_type_simple,
a.button.product_type_variable,
.product-category-tabs li.product .btn-wrapper .add_to_cart_button {
  background: transparent;
  padding: 6px 26px;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  background-color: #2F5CCE;
  text-transform: inherit;
  border: none;
  border-radius: 0;
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}

.woocommerce ul.products li.product .btn-wrapper .add_to_cart_button:hover,
a.button.wp-element-button.product_type_simple:hover,
a.button.product_type_variable:hover,
.product-category-tabs li.product .btn-wrapper .add_to_cart_button:hover {
  background: #000;
  color: #fff;
  transition: all 0.4s;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.loading,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.loading,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.loading,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.loading,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.loading,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.loading {
  opacity: 1;
}

/* .woocommerce ul.products li.product .btn-wrapper .add_to_cart_button.added {
  padding: 6px 12px;
} */
a.button.product_type_simple,
a.button.product_type_variable {
  margin-top: 0 !important;
}

.woocommerce ul.products li.product .btn-wrapper .woocommerce-products-compare-compare-button,
.product-category-tabs li.product .btn-wrapper .woocommerce-products-compare-compare-button {
  margin: 0;
  border: none;
  border-radius: 0;
  padding: 6px 35px;
  font-size: 14px;
  line-height: 21px;
  transition: all 0.4s;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  background-color: #2f5cce;
  color: #fff;
}

.woocommerce ul.products li.product .btn-wrapper .woocommerce-products-compare-compare-button:hover,
.product-category-tabs li.product .btn-wrapper .woocommerce-products-compare-compare-button:hover {
  background: #000;
  color: #fff;
  transition: all 0.4s;
}

.woocommerce ul.products li.product .btn-wrapper .woocommerce-products-compare-compare-button label,
.product-category-tabs li.product .btn-wrapper .woocommerce-products-compare-compare-button label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}

.woocommerce ul.products li.product .btn-wrapper .woocommerce-products-compare-compare-button label .woocommerce-products-compare-checkbox,
.product-category-tabs li.product .btn-wrapper .woocommerce-products-compare-compare-button label .woocommerce-products-compare-checkbox {
  display: none;
}

/* .woocommerce-products-compare-compare-button label input[type="checkbox"] {display: none;} */
.woocommerce ul.products li.product .btn-wrapper .woocommerce-products-compare-compare-button label .woocommerce-products-compare-checkbox,
.product-category-tabs li.product .btn-wrapper .woocommerce-products-compare-compare-button 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;
} */
p.woocommerce-products-compare-compare-button.checked .woocommerce-products-compare-compare-link {
  padding: 0;
}

.woocommerce-products-compare-compare-link .dashicons,
.woocommerce-products-compare-compare-link .dashicons-before:before {
  width: 18px;
  height: 18px;
  font-size: 18px;
  position: static;
  line-height: 15px;
  display: none;
}

.woocommerce-products-compare-compare-link .dashicons-external:before {
  color: #fff;
}

.woocommerce ul.products li.product .woocommerce-products-compare-compare-button.checked label:before,
.product-category-tabs 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,
.product-category-tabs 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,
.product-category-tabs li.product .woocommerce-products-compare-compare-button.checked .woocommerce-products-compare-compare-link {
  visibility: visible;
}

.product-compare p {
  text-align: center;
}

.new-arrival-pagination {
  position: inherit;
  padding-top: 40px;
}

.new-arrival-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #969696;
  opacity: 1;
}

.new-arrival-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 3px;
}

.new-arrival-pagination .swiper-pagination-bullet-active {
  background: #000000;
}

.featured-products-slider {
  padding: 20px 0;
}

.new-arrival-slider-col,
.featured-products-slider-col {
  position: relative;
}

.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;
}

.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);
}

.feature-product .feature-product-button-prev {
  left: auto;
  right: 50px;
  transform: rotate(180deg);
}

.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 */

/* Top Selling Products */
.best-selling .section-title {
  padding-left: 60px;
}

.link-text {
  font-weight: 600;
  color: #2F5CCE;
  position: relative;
  padding-right: 20px;
}

.link-text:after {
  content: '';
  position: absolute;
  top: 3px;
  right: 0;
  -webkit-mask-image: url(assets/images/icon_right_blue_arrow.svg);
  mask-image: url(assets/images/icon_right_blue_arrow.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background: #2F5CCE;
  transition: all 0.4s;
  -webkit-mask-size: cover;
}

.link-text:hover {
  color: #000;
  transition: all 0.4s;
}

.link-text:hover:after {
  background: #000;
  transition: all 0.4s;
}

/* End Top Selling Products */

/* Mobility Scooter */
.mobilityscooter {
  padding: 40px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.mobilityscooterbox-content p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.mobilityscooterbox-content p br {
  display: none;
}

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

.mobilityscooterbox-content .primary-btn {
  margin-top: 20px;
}

/* End Mobility Scooter */

/* Free Guide */
.CTA-section {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.CTA-section-content {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px;
}

.CTA-section-content h2 {
  margin-bottom: 10px;
}

.CTA-section-content span {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #363636;
  display: block;
}

.CTA-section p {
  font-size: 20px;
  line-height: 30px;
  color: #363636;
  font-weight: 400;
}

/* End Free Guide */

/* Company Info */
.company-info-inner {
  text-align: center;
}

.company-info-inner p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}

.company-info-inner .primary-btn {
  margin-top: 20px;
}

/* End Company Info */

/* Footer CTA Section */
.footer-cta {
  background-color: #2F5CCE;
  padding: 11px 0;
}

.footer-cta-inner ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-cta-inner ul li {
  position: relative;
  margin-right: 60px;
  padding-right: 60px;
}

.footer-cta-inner ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.footer-cta-inner ul li:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 20px;
  background-color: rgb(255 255 255 / 20%);
}

.footer-cta-inner ul li:last-child:before {
  display: none;
}

.footer-cta-inner ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.footer-cta-inner ul li.phone a,
.footer-cta-inner ul li.live-chat-text a {
  background: url("assets/images/icon_call.svg") no-repeat left center;
  background-size: 24px;
  padding-left: 32px;
}

.footer-cta-inner ul li.email a {
  background: url("assets/images/icon_mail.svg") no-repeat left center;
  background-size: 24px;
  padding-left: 32px;
}

/* End Footer CTA Section */

/* Footer */
.site-footer {
  background: #000000;
  padding-top: 50px;
}

.site-footer .site-branding {
  margin-bottom: 22px;
}

.site-footer .site-branding img {
  filter: brightness(100) invert(1);
}

.emaillist {
  position: relative;
}

.emaillist .es_subscription_form .es-form-field-container .gjs-row:first-child {
  display: none;
}

.emaillist .es_subscription_form .es-form-field-container .gjs-row {
  margin: 0;
}

.emaillist .es_subscription_form .es-form-field-container input[type="email"] {
  border: 1px solid #D3D3D3;
  border-radius: 0;
  width: 100%;
  min-width: 267px;
  padding: 16px;
  height: 44px;
}

.emaillist .es_subscription_form .es-form-field-container input[type="submit"] {
  background: #2F5CCE;
  border-radius: 0;
  padding: 9px;
  color: #fff;
  width: 34px;
  height: 34px;
  border: none;
  font-weight: 400;
  font-size: 0;
  line-height: normal;
  margin-left: 0;
  transition: all 0.4s;
  border: none !important;
  position: absolute;
  top: 5px;
  right: 5px;
  background-image: url(assets/images/icon_white_arrow.svg) !important;
  background-size: 16px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.es_subscription_message.success {
  color: #fff;
  font-size: 16px;
}

.footer-middle {
  padding-bottom: 30px;
  border-bottom: 1px solid #363636;
}

.footer-middle .contact-info li {
  margin-bottom: 16px;
}

.footer-middle .contact-info li:last-child {
  margin-bottom: 0;
}

.footer-middle .footer-title {
  font-weight: 400;
  display: block;
}

.footer-middle .footer-title,
.footer-middle .newsletter-title {
  color: #fff;
  margin-bottom: 35px;
  display: block;
}

.footer-middle .contact-info li p,
.footer-middle .contact-info li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  display: block;
  padding-left: 32px;
  position: relative;
  left: 0;
  transition: 0.4s;
}

.footer-middle .contact-info li.address {
  background: url("assets/images/icon_pin.svg") no-repeat left top;
  background-size: 24px;
}

.footer-middle .contact-info li p br {
  display: none;
}

.footer-middle .contact-info li.email a {
  background: url("assets/images/icon_mail.svg") no-repeat left center;
  background-size: 24px;
}

.footer-middle .contact-info li.phone a {
  background: url("assets/images/icon_call.svg") no-repeat left center;
  background-size: 24px;
}

.footer-middle .contact-info li.email a:hover,
.footer-middle .contact-info li.phone a:hover {
  color: #2F5CCE;
}

.useful-information-col ul,
.help-information-col ul {
  column-count: 2;
}

.useful-information-col li,
.help-information-col li {
  margin-bottom: 10px;
}

.useful-information-col li a,
.help-information-col li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  transition: all 0.4s;
}

.useful-information-col li a:hover,
.help-information-col li a:hover {
  color: #2F5CCE;
  transition: all 0.4s;
}

.useful-information-col li.current-menu-item a,
.help-information-col li.current-menu-item a {
  color: #2F5CCE;
  transition: all 0.4s;
}

.newsletter-col p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #fff;
}

.social-media {
  display: flex;
  align-items: center;
  margin-top: 35px;
}

.social-media li {
  margin-right: 14px;
}

.social-media li:last-child {
  margin-right: 0;
}

.social-media li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background: #2F5CCE;
  border-radius: 50%;
  position: relative;
  top: 0;
  transition: all 0.4s;
}

.social-media li a:hover {
  top: -5px;
  transition: all 0.4s;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom p,
.footer-bottom a {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #ffffff;
}

.footer-bottom p a {
  display: inline-block;
}

.footer-bottom a:hover {
  color: #2F5CCE;
}

.footer-bottom-right p {
  margin: 0;
}

.footer-bottom-right {
  gap: 10px;
  justify-content: flex-end;
}

.c-go-top {
  position: fixed;
  bottom: 80px;
  right: 160px;
  display: none;
  background-color: #2f5cce;
  padding: 5px;
  text-decoration: none;
  z-index: 999;
  border: 1px solid #2f5cce;
  transition: all 0.4s;
  width: 40px;
  height: 40px;
  text-align: center;
}

.c-go-top svg {
  width: 16px;
  height: 16px;
}

.c-go-top svg path {
  fill: #fff;
}

.c-go-top:hover {
  background-color: #000;
  border-color: #000;
}

body .tawk-min-container .tawk-button-circle.tawk-button-large {
  width: 54px;
  height: 54px;
  background-color: #2F5CCE !important;
}

.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: #EEEEEE;
  padding: 40px 0;
  text-align: left;
}

.page-title h1 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  text-transform: capitalize;
}

/* .login-inner,
.registration-inner {
  margin: 60px 0;
} */
.login-inner label,
.registration-inner label {
  font-size: 14px !important;
  line-height: 21px !important;
  font-weight: 500 !important;
  margin-bottom: 10px !important;
}

.registration-inner .forminator-checkbox__wrapper label {
  margin: 0 !important;
}

.registration-inner .forminator-ui.forminator-custom-form[data-design=default] .forminator-checkbox .forminator-checkbox-box {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 16px;
  position: relative;
  border-width: 0;
  border-style: solid;
  border-radius: 0;
}

.login-inner .forminator-ui.forminator-custom-form,
.registration-inner .forminator-ui.forminator-custom-form {
  padding: 40px 40px 20px 40px !important;
  border: 1px solid #EEEEEE !important;
  border-radius: 0 !important;
  max-width: 800px !important;
  margin: 0 auto !important;
}

.forminator-error-message {
  font-size: 12px !important;
  line-height: 20px !important;
  color: #d30202 !important;
  background-color: transparent !important;
}

.forminator-ui#forminator-module-1795.forminator-design--default .forminator-has_error .forminator-input {
  border-color: #d30202 !important;
}

.forminator-ui.forminator-custom-form[data-design=default] .forminator-error-message {
  padding: 0 !important;
  border-radius: 0 !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: #000000 !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: #EEEEEE !important;
  background-color: #fff !important;
  border-radius: 0 !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: #EEEEEE !important;
  background-color: #fff !important;
  border-radius: 0 !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: #EEEEEE !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: #2F5CCE !important;
  color: #ffffff !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 22px !important;
  text-transform: uppercase;
  height: 44px;
  border: none;
  border-radius: 0;
  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: #000000 !important;
  color: #ffffff !important;
  transition: all 0.4s;
}

.login-inner .remember-me label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  position: relative;
  padding-left: 15px;
}

.login-inner .remember-me label:hover span {
  color: #2F5CCE;
  transition: all 0.4s;
}

#html-1 label.forminator-label {
  display: none !important;
}

.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: #2F5CCE !important;
}

.forminator-merge-tags p,
.forminator-merge-tags p a {
  font-size: 14px;
  line-height: 20px;
  color: #363636;
  text-transform: capitalize;
}

.forminator-merge-tags p a {
  font-weight: 700;
  display: inline-block;
  text-decoration: underline;
}

.forminator-merge-tags p a:hover {
  color: #2F5CCE !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: #2F5CCE !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: #2F5CCE !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: #363636 !important;
  transition: 0.4s !important;
}

.forminator-ui.forminator-custom-form[data-design="default"] .forminator-checkbox .forminator-checkbox-box~span:hover {
  color: #2F5CCE !important;
  transition: 0.4s !important;
}

.login-inner .forminator-description-password {
  margin-top: 10px !important;
}

.login-inner .forminator-description-password p a {
  font-weight: 700;
  color: #363636;
  font-size: 14px;
  line-height: 21px;
  transition: 0.4s;
}

.login-inner .forminator-description-password p a:hover {
  color: #2F5CCE;
  transition: 0.4s;
}

.registration-inner .forminator-success a {
  color: #2f5cce;
  transition: .4s;
  display: inline-block !important;
}

.registration-inner .forminator-success a:hover {
  color: #000;
  transition: 0.4s;
}

.registration-inner .forminator-checkbox__label p a {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: capitalize;
  color: #363636;
  transition: 0.4s;
  display: inline-block;
}

.registration-inner .forminator-checkbox__label p a:hover {
  color: #2F5CCE;
  transition: 0.4s;
}

.forminator-ui.forminator-custom-form.forminator-design--default .forminator-is_hover .forminator-input {
  border-color: #d3d3d3 !important;
  background-color: transparent !important;
}

.forminator-ui.forminator-custom-form.forminator-design--default .forminator-is_active .forminator-input {
  border-color: #2f5cce !important;
  background-color: transparent !important;
}

.login-inner .forminator-ui.forminator-custom-form.forminator-design--default .forminator-checkbox .forminator-checkbox-box {
  display: none !important;
}

.forminator-ui.forminator-custom-form.forminator-design--default .forminator-description a {
  color: #363636 !important;
}

.forminator-ui.forminator-custom-form.forminator-design--default .forminator-description a:hover {
  color: #2F5CCE !important;
}

.forminator-ui.forminator-custom-form.forminator-design--default .forminator-checkbox,
.forminator-ui.forminator-custom-form.forminator-design--default .forminator-checkbox__label,
.forminator-ui.forminator-custom-form.forminator-design--default .forminator-checkbox__label p {
  font-family: inherit !important;
  color: #363636 !important;
}

.forminator-ui.forminator-custom-form.forminator-design--default .forminator-button-submit,
.forminator-ui.forminator-custom-form.forminator-design--default .forminator-button-submit:hover,
.forminator-ui.forminator-custom-form.forminator-design--default .forminator-button-submit:active {
  background-color: transparent !important;
}

.forminator-ui#forminator-module-1795.forminator-design--default .forminator-checkbox.forminator-consent .forminator-checkbox-box {
  border-color: transparent !important;
  background-color: transparent !important;
  color: transparent !important;
}

.forminator-response-message,
.login-inner .remember-me input[type="checkbox"] {
  display: none;
}

.login-inner label span::before,
.registration-inner .forminator-checkbox-box::before {
  content: '' !important;
  position: absolute !important;
  display: block !important;
  top: 2px !important;
  left: 0 !important;
  width: 16px !important;
  height: 16px !important;
  background: #fff !important;
  border: 1px solid #D3D3D3 !important;
  transition: all 0.2s ease;
  transform: translate(0) !important;
  opacity: 1 !important;
}

.login-inner label span::after,
.registration-inner .forminator-checkbox-box::after {
  position: absolute;
  display: block;
  content: "";
  left: 3px;
  top: 5px;
  width: 10px;
  height: 10px;
  background-image: url(assets/images/icon_check.svg);
  background-position: center;
  background-size: 16px;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.2s ease;
}

.login-inner label input:checked~span:before,
.registration-inner input:checked~.forminator-checkbox-box::before {
  background: #2F5CCE !important;
  border: 1px solid #2F5CCE !important;
}

.login-inner label input:checked~span::after,
.registration-inner input:checked~.forminator-checkbox-box::after {
  opacity: 1;
  transition: all 0.2s ease;
}

/* .iti__flag-container {
  width: 100%;
}
.iti__country-list {
  width: 100%;
} */
body .forminator-ui#forminator-module-1795.forminator-design--default .forminator-response-message.forminator-success {
  background-color: #eeeeee;
  box-shadow: inset 2px 0 0 0 #2f5cce;
  -moz-box-shadow: inset 2px 0 0 0 #2f5cce;
  -webkit-box-shadow: inset 2px 0 0 0 #2f5cce;
}

/* End Login Page */

/* Forgot Password */
.forgot-password form.wc-forgot-pwd-form {
  padding: 40px !important;
  border: 1px solid #EEEEEE !important;
  max-width: 600px !important;
  margin: 0 auto !important;
}

.forgot-password label {
  font-size: 14px;
  line-height: 21px;
  color: #363636;
  font-weight: 500;
  margin-bottom: 10px;
}

.forgot-password input {
  margin-bottom: 20px;
}

button.get_new_password {
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 22px !important;
  border: none;
  border-radius: 0;
  padding: 9px 10px;
  box-shadow: none;
  transition: all 0.4s;
  background-color: #2F5CCE;
  color: #ffffff;
}

button.get_new_password:hover {
  transition: 0.4s;
  background-color: #000 !important;
  color: #ffffff !important;
}

/* End Forgot Password */

/* Breadcrumb */
.woocommerce-breadcrumb {
  font-weight: 300;
  font-size: 16px !important;
  line-height: 24px;
  color: #565656 !important;
  margin: 0 0 8px !important;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.woocommerce-breadcrumb a {
  color: #363636 !important;
}

.woocommerce-breadcrumb a:hover {
  color: #2F5CCE !important;
}

/* End Breadcrumb */

/* Subcategories List */
.category>a {
  display: block;
  transition: all 0.4s;
  padding: 13px;
  background-color: #fff;
  border: 1px solid #EEEEEE;
  margin-bottom: 10px;
}

.category h2 {
  margin-bottom: 0;
}

/* End Subcategories List */

/* Listing Page */
.sidebar h2 {
  font-weight: 700;
  margin-bottom: 24px;
}

.sidebar .yith-wcan-filters .yith-wcan-filter {
  margin-bottom: 24px;
}

.yith-wcan-active-filters .active-filter .active-filter-label {
  border: 1px solid #2f5cce;
  border-radius: 0;
  color: #363636;
}

.yith-wcan-active-filters .active-filter .active-filter-label:after {
  background-color: #2f5cce;
}

.filters-container-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.yith-wcan-active-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

.yith-wcan-active-filters h4,
.yith-wcan-active-filters .active-filter b {
  display: none;
}

.yith-wcan-active-filters .active-filter {
  margin-bottom: 0;
  margin-right: 0;
}

.yith-wcan-active-filters .active-filter .active-filter-label {
  border: none;
  border-radius: 0;
  color: #565656;
  background-color: #EEEEEE;
  padding: 6px 8px 6px 28px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}

.yith-wcan-active-filters .active-filter .active-filter-label:after {
  font-size: 0;
  line-height: normal;
  position: absolute;
  top: 6px;
  left: 8px;
  right: inherit;
  text-align: center;
  text-decoration: none;
  content: "";
  -webkit-mask-image: url('assets/images/icon_close_filter.svg');
  mask-image: url('assets/images/icon_close_filter.svg');
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background: #565656;
  transition: all 0.4s;
  -webkit-mask-size: cover;
}

.yith-wcan-active-filters .active-filter .active-filter-label:hover {
  color: #2F5CCE;
  transition: all 0.4s;
}

.yith-wcan-active-filters .active-filter .active-filter-label:hover:after {
  background: #2F5CCE;
  transition: all 0.4s;
}

.yith-wcan-reset-filters {
  background-color: #363636;
  border: none;
  border-radius: 0;
  padding: 6px 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.4s;
}

.yith-wcan-reset-filters:active,
.yith-wcan-reset-filters:hover {
  background-color: #2F5CCE;
  transition: all 0.4s;
}

.sidebar .yith-wcan-filters h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #363636;
  border-bottom: 1px solid #EEEEEE;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.sidebar .yith-wcan-filters .yith-wcan-filter .filter-title.collapsable:after {
  background-size: 100% auto;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

.yith-wcan-filters .yith-wcan-filter .filter-title.collapsable.closed:after,
.yith-wcan-filters .yith-wcan-filter .filter-title.collapsable:not(.opened):after,
.yith-wcan-filters .yith-wcan-filter .filter-title.collapsable:not(.open):after {
  background-image: url("assets/images/icon_filter_down_arrow.svg");
}

.sidebar .yith-wcan-filters .yith-wcan-filter .filter-title.collapsable.open:after,
.sidebar .yith-wcan-filters .yith-wcan-filter .filter-title.collapsable.opened:after {
  background-image: url("assets/images/icon_filter_up_arrow.svg");
}

.sidebar .filter-items li label {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.sidebar .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item {
  margin-bottom: 8px;
}

.sidebar .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item:last-child {
  margin-bottom: 0;
}

.sidebar .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item>a,
.sidebar .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item>label>a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #565656;
}

.sidebar .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active>a,
.sidebar .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active>label>a {
  color: #2F5CCE;
}

.sidebar input[type="checkbox"],
.sidebar input[type="radio"] {
  display: none;
}

.sidebar .filter-items li label .term-label {
  position: relative;
  display: block;
  padding-left: 26px;
}

.sidebar .filter-items li label .term-label:before {
  content: '';
  position: absolute;
  display: block;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #D3D3D3;
  transition: all 0.2s ease;
}

.sidebar .filter-items li label .term-label::after {
  position: absolute;
  display: block;
  content: "";
  left: 3px;
  top: 6px;
  width: 10px;
  height: 10px;
  background-image: url(assets/images/icon_check.svg);
  background-position: center;
  background-size: 16px;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.2s ease;
}

.sidebar .filter-items li label input:checked~.term-label:before {
  background: #2F5CCE;
  border: 1px solid #2F5CCE;
}

.sidebar .filter-items li label input:checked~.term-label::after {
  opacity: 1;
  transition: all 0.2s ease;
}

.home span.yith-wcbr-brands,
.product-listing span.yith-wcbr-brands,
.yith-wcbr-brands-logo {
  display: none;
}

.sidebar .yith-wcan-filters .yith-wcan-filter .price-slider .irs-from,
.sidebar .yith-wcan-filters .yith-wcan-filter .price-slider .irs-to,
.sidebar .yith-wcan-filters .yith-wcan-filter .price-slider .irs-single {
  background-color: #fff;
  border-radius: 0;
  color: #fff;
  cursor: initial;
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
  padding: 5px 12px 3px 12px;
  pointer-events: none;
  text-align: center;
  top: 0;
  border: 1px solid #D3D3D3;
  color: #969696;
}

.sidebar .yith-wcan-filters .yith-wcan-filter .price-slider .irs-from {
  left: 0 !important;
}

.sidebar .yith-wcan-filters .yith-wcan-filter .price-slider .irs-to {
  right: 0 !important;
  left: auto !important;
}

.sidebar .yith-wcan-filters .yith-wcan-filter .price-slider .irs-from:before,
.sidebar .yith-wcan-filters .yith-wcan-filter .price-slider .irs-to:before,
.sidebar .yith-wcan-filters .yith-wcan-filter .price-slider .irs-single:before {
  display: none;
}

.sidebar .yith-wcan-filters .yith-wcan-filter .price-slider .irs-bar,
.sidebar .yith-wcan-filters .yith-wcan-filter .price-slider .irs-line,
.sidebar .irs--round .irs-line {
  top: 39px;
  height: 4px;
  background-color: #D9D9D9;
  border-radius: 0;
}

.sidebar .yith-wcan-filters .yith-wcan-filter .price-slider .irs-bar {
  top: 39px;
  background-color: #2f5cce;
}

.sidebar .yith-wcan-filters .yith-wcan-filter .price-slider .irs-handle {
  border: 4px solid #2F5CCE;
  background-color: #2F5CCE;
  cursor: grab;
  top: 34px;
  width: 14px;
  height: 14px;
}

.woocommerce-notices-wrapper {
  display: none;
}

.grid-list-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 0;
  border-bottom: 0;
  flex-wrap: wrap;
  gap: 10px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin: 0;
  float: none;
}

.woocommerce .product-listing ul.products {
  flex-wrap: wrap;
}

.woocommerce .product-listing ul.products li {
  width: 33.33% !important;
}

.woocommerce-products-header .woocommerce-products-header__title.page-title {
  display: none;
}

.woocommerce .product-listing nav.woocommerce-pagination {
  text-align: center;
  padding-top: 50px;
}

.woocommerce .product-listing nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  margin: 0 auto;
  padding: 0;
}

.woocommerce .product-listing nav.woocommerce-pagination ul li {
  border: none;
  padding: 0;
  margin-right: 8px;
  float: none;
  overflow: inherit;
}

.woocommerce .product-listing 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 #D3D3D3;
  font-size: 0 !important;
  width: 30px;
  height: 30px;
  position: relative;
}

.woocommerce .product-listing nav.woocommerce-pagination ul li .next.page-numbers:after,
.woocommerce .product-listing 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: #565656;
  transition: 0.4s;
  -webkit-mask-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.woocommerce .product-listing nav.woocommerce-pagination ul li .prev.page-numbers {
  transform: rotate(180deg);
}

.woocommerce .product-listing nav.woocommerce-pagination ul li .next.page-numbers:hover,
.woocommerce .product-listing nav.woocommerce-pagination ul li .prev.page-numbers:hover {
  border-color: #2F5CCE;
  background-color: #2F5CCE;
  transition: all 0.4s;
}

.woocommerce .product-listing nav.woocommerce-pagination ul li .next.page-numbers:hover:after,
.woocommerce .product-listing nav.woocommerce-pagination ul li .prev.page-numbers:hover:before {
  background: #fff;
}

.woocommerce .product-listing nav.woocommerce-pagination ul li a,
.woocommerce .product-listing nav.woocommerce-pagination ul li span {
  padding: 5px 10px;
  min-width: inherit;
  display: block;
  width: 30px;
  height: 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  border-radius: 0;
  background-color: #fff;
  color: #868686;
  border: 1px solid #D3D3D3;
}

.woocommerce .product-listing nav.woocommerce-pagination ul li a:focus,
.woocommerce .product-listing nav.woocommerce-pagination ul li a:hover,
.woocommerce .product-listing nav.woocommerce-pagination ul li span.current {
  background: #2F5CCE;
  color: #ffffff;
  border-color: #2F5CCE;
}

.woocommerce .product-listing nav.woocommerce-pagination ul li .next.page-numbers:focus:after,
.woocommerce .product-listing nav.woocommerce-pagination ul li .prev.page-numbers:focus:before {
  border-color: #2F5CCE;
  background-color: #fff;
  transition: all 0.4s;
}

.woocommerce .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.filter-has-4-column {
  width: auto;
  margin: 0 4px 4px 4px;
}

.woocommerce .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color .term-color {
  border: 2px solid #EEEEEE;
  border-radius: 0;
  display: inline-block;
  height: 37px;
  overflow: hidden;
  vertical-align: middle;
  width: 37px;
  padding: 4px;
  margin: 0;
}

.woocommerce .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color .term-color:hover {
  border-color: #2F5CCE;
}

.woocommerce .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active.color:not(.no-color):not(.no-image):not(.label-right)>a:after {
  background-color: #2f5cce;
}

.grid-list-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gridlist-toggle {
  display: flex;
  clear: both;
  padding: 0;
  order: -1;
}

.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: #2F5CCE;
}

.gridlist-toggle .dashicons {
  display: none;
}

.mobile-filter {
  display: none;
}

.woocommerce a.button.loading::after {
  font-family: WooCommerce;
  content: "\e01c";
  vertical-align: top;
  font-weight: 400;
  position: absolute;
  top: 5px;
  right: 5px;
  animation: spin 2s linear infinite;
}

.list-description {
  display: none;
}

.product-listing ul.products.list li.product {
  width: 100% !important;
  max-width: 100%;
  padding: 0 12px 20px 12px;
}

.product-listing ul.products.list li.product .product-box-wrapper {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  border: 1px solid #EEE;
  padding: 20px;
}

.product-listing ul.products.list li.product a.thumbnail {
  width: 50%;
  padding: 0 !important;
  z-index: 2;
}

.product-listing ul.products.list li.product .product-box-content {
  width: 100%;
}

.product-listing ul.products.list li.product .gridlist-buttonwrap {
  margin-bottom: 0;
}

.product-listing ul.products.list li.product .product-box-content {
  padding-right: 30px;
}

.product-listing ul.products.list li.product .woocommerce-loop-product_title a {
  margin: 0 0 16px 0;
  min-height: auto;
}

.product-listing ul.products.list li.product .btn-wrapper,
.product-listing ul.products.list li.product:hover .btn-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 41px;
  opacity: 1;
  visibility: visible;
  width: auto !important;
  transition: all 0.4s;
  top: inherit;
  justify-content: center;
}

.product-listing ul.products.list li.product .btn-wrapper .add_to_cart_button,
.product-listing ul.products.list a.button.wp-element-button.product_type_simple,
.product-listing ul.products.list a.button.product_type_variable {
  padding: 6px 22px;
}

.product-listing ul.products.list li.product .btn-wrapper .woocommerce-products-compare-compare-button {
  padding: 6px 28px;
}

.product-listing ul.products.list .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt,
.product:hover ul.products.list .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
  opacity: 1;
  visibility: visible;
}

.product-listing ul.products.list .list-description {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  line-height: 22px;
}

.sidebar {
  position: sticky;
  top: 220px;
}

/* End Listing Page */

/* Detail Page */
.product-detail {
  overflow: hidden;
}

.product-detail h1.product_title {
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  color: #000000;
  text-transform: capitalize;
}

/*
#wpgs-gallery.woocommerce-product-gallery {
  margin: 0;
  float: none;
}
#wpgs-gallery .gallery-navigation-carousel {
  margin-top: 20px;
}
.product-detail .wcgs-carousel.slick-slider {
  border: 1px solid #EEEEEE;
  border-radius: 0;
  margin-bottom: 0;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-detail .wcgs-carousel.slick-slider .slick-slide img {
  width: 100% !important;
  height: 100% !important;
  max-width: 384px !important;
  object-fit: cover;
}
.product-detail .gallery-navigation-carousel .slick-slide.wcgs-thumb {
  opacity: 1;
  min-height: inherit;
  margin: 0 8px !important;
  height: 90px;
  border: 1px solid #EEEEEE;
  border-radius: 0;
}
.product-detail .gallery-navigation-carousel .slick-slide.wcgs-thumb img {
  padding: 11px;
  width: 100%;
  height: 100% !important;
  object-fit: contain;
  border: none !important;
}
*/
.woocommerce .product-detail div.product div.summary {
  margin-bottom: 0;
  width: 100%;
  float: none !important;
}

.woocommerce div.product .product_title {
  text-transform: inherit;
  margin-bottom: 20px;
}

/* .woocommerce-tabs.wc-tabs-wrapper {
  display: none;
} */

.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-bottom: 24px;
  width: 100%;
}

.woocommerce .product-detail div.product p.price,
.woocommerce .product-detail div.product span.price {
  font-size: 24px;
  line-height: 36px;
  color: #000000;
  font-weight: 600;
  margin: 0;
}

.woocommerce .product-detail div.product p.price {
  display: flex;
  align-items: center;
  margin-right: 14px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #565656;
  margin-left: 4px;
  display: inline-block;
}

.woocommerce span.woocommerce-Price-amount.amount {
  font-size: 24px;
  line-height: 36px;
  color: #000000;
  font-weight: 600;
  margin: 0;
}

.excprice {
  margin-left: 10px;
}

.woocommerce .product-detail div.product p.price span.ex-vat {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #565656;
  display: inline-block;
  margin-left: 4px;
}

.woocommerce .product-detail div.product p.price span.ex-vatfinal {
  display: none;
}

.detail-price-wrapper p.price-tax {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #565656;
  display: flex;
  align-items: center;
  display: none;
}

span.inc-vat {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #565656;
  margin-left: 4px;
  display: inline-block;
}

.view-more,
.woocommerce-variation-price,
.recent-products-wrapper ul.products li.product .price-rating-wrapper .ex-vat,
.recent-products-wrapper ul.products li.product .price-rating-wrapper .excprice,
.recent-products-wrapper ul.products li.product .price-rating-wrapper .inc-vat {
  display: none;
}

.woocommerce-product-details__short-description {
  display: none;
}

.woocommerce div.product form.cart {
  position: relative;
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  flex-direction: column;
}

.woocommerce div.product form.cart div.quantity {
  float: none;
  margin: 0;
}

.woocommerce .quantity .qty {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  border: 1px solid #565656;
  border-radius: 0;
  height: 44px;
  width: 170px;
  color: #565656;
  min-width: 170px;
  max-width: 170px;
}

.woocommerce div.product form.cart .button {
  vertical-align: middle;
  float: left;
  background: #2F5CCE;
  border-radius: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  padding: 12px 34px;
  transition: all 0.4s;
  text-transform: inherit;
  /* width: 100%; */
  min-width: 372px;
}

.woocommerce div.product form.cart .button:hover {
  background: #000;
  color: #ffffff;
  transition: all 0.4s;
}

.yith-wcbr-brands {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.yith-wcbr-brands a {
  display: inline-block;
}

.detail-btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  flex-direction: row-reverse;
}

.detail-price-wrapper p.woocommerce-products-compare-compare-button label,
.share-btn .share-text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #EEEEEE;
  border-radius: 5px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.detail-price-wrapper .tinv-wishlist .tinvwl_add_to_wishlist_button {
  padding: 0;
  width: 24px;
  height: 24px;
  margin-right: 16px;
}

.detail-price-wrapper a.tinvwl_add_to_wishlist_button {
  position: relative;
  line-height: normal;
}

.detail-price-wrapper a.tinvwl_add_to_wishlist_button:before {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-image: url(assets/images/icon_wishlist_blue.svg);
  mask-image: url(assets/images/icon_wishlist_blue.svg);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background: #D3D3D3;
  transition: all 0.4s;
  -webkit-mask-size: cover;
  margin: 0 !important;
  font-size: 0 !important;
  vertical-align: middle !important;
}

.detail-price-wrapper .tinvwl_remove_from_wishlist-text,
.detail-price-wrapper .tinvwl-product-in-list.tinvwl-product-make-remove .tinvwl_remove_from_wishlist-text,
.detail-price-wrapper .tinvwl_add_to_wishlist_button.tinvwl-product-in-list .tinvwl_remove_from_wishlist-text {
  display: block !important;
  position: relative;
  font-size: 0;
  line-height: normal;
  width: 24px;
  height: 24px;
}

.detail-price-wrapper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list.tinvwl-product-make-remove::before {
  display: none;
}

.detail-price-wrapper .tinvwl-product-in-list.tinvwl-product-make-remove .tinvwl_remove_from_wishlist-text:before {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-image: url(assets/images/icon_wishlist_blue.svg);
  mask-image: url(assets/images/icon_wishlist_blue.svg);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background: #DF2B2B;
  transition: all 0.4s;
  -webkit-mask-size: cover;
  margin: 0 !important;
  font-size: 0 !important;
  vertical-align: middle !important;
}

.detail-price-wrapper .tinv-wishlist span.tinvwl_add_to_wishlist-text {
  font-size: 0;
}

.detail-price-wrapper .tinv-wishlist .tinvwl_add_to_wishlist_button:hover:before {
  background: #DF2B2B;
  transition: all 0.4s;
}

.detail-price-wrapper .tinv-wishlist:hover span.tinvwl_add_to_wishlist-text,
.detail-price-wrapper .tinv-wishlist:hover span.tinvwl_remove_from_wishlist-text {
  color: #fff !important;
  transition: all 0.4s;
}

.detail-btn-wrapper .heateor_sss_sharing_container.heateor_sss_horizontal_sharing {
  display: block;
}

.product-detail .woocommerce-products-compare-compare-button {
  margin: 0;
  cursor: pointer;
  font-size: 0;
  line-height: normal;
  position: relative;
}

.product-detail p.woocommerce-products-compare-compare-button label {
  display: none;
}

.product-detail .detail-right-wrapper p.woocommerce-products-compare-compare-button .woocommerce-products-compare-compare-link {
  display: block;
  font-weight: 400;
  font-size: 0;
  line-height: 19px;
  position: relative;
  transition: all 0.4s;
  cursor: pointer;
  padding: 8px;
  width: 36px;
  height: 36px;
  border-radius: 5px;
  background-color: #eee;
}

.product-detail .detail-right-wrapper p.woocommerce-products-compare-compare-button .woocommerce-products-compare-compare-link:before {
  content: "" !important;
  position: absolute;
  top: 8px;
  left: 8px;
  -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: #000;
  transition: all 0.4s;
  -webkit-mask-size: cover;
  margin: 0 !important;
  font-size: 0 !important;
  vertical-align: middle !important;
  cursor: pointer;
}

.product-detail .detail-right-wrapper p.woocommerce-products-compare-compare-button .woocommerce-products-compare-compare-link .dashicons-external:before {
  display: none;
}

.detail-right-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  flex-direction: row-reverse;
  position: relative;
}

.product-detail a.share-text {
  font-weight: 400;
  font-size: 0;
  line-height: 19px;
  color: #2F5CCE;
  position: relative;
  width: 36px;
  height: 36px;
  display: block;
}

.product-detail .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: #000;
  transition: 0.4s;
  -webkit-mask-size: cover;
  position: absolute;
  left: 8px;
  top: 8px;
}

.product-detail div.product div.summary {
  overflow: visible;
}

.share-btn-wrapper {
  position: absolute;
  max-width: 100%;
  right: 0;
  top: 50px;
  margin: 0;
  background: #fff;
  padding: 10px;
  border: 1px solid #EEE;
  border-radius: 0;
  display: none;
  z-index: 9999;
  overflow: hidden;
  max-height: 140px;
  overflow-y: auto;
  height: 140px;
}

.product-detail .share-btn .share-text:hover,
.product-detail .detail-right-wrapper p.woocommerce-products-compare-compare-button .woocommerce-products-compare-compare-link:hover {
  background: #2f5cce;
  transition: 0.4s;
}

.product-detail .share-btn .share-text:hover:before,
.product-detail .detail-right-wrapper p.woocommerce-products-compare-compare-button .woocommerce-products-compare-compare-link:hover:before {
  background: #fff;
  transition: 0.4s;
}

.product-detail .tinv-wishlist {
  font-size: 0;
  line-height: normal;
}

.product-detail .product-code {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #121212;
}

.product-detail .product-code {
  margin-top: 10px;
}

.product-detail-desc {
  padding-top: 50px;
}

.product-detail-desc h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.recent-products-wrapper h2 {
  text-align: center;
}

.product-detail-desc h2 {
  position: relative;
  cursor: pointer;
}

.product-detail-desc h2:after {
  content: '';
  -webkit-mask-image: url(assets/images/icon_filter_down_arrow.svg);
  mask-image: url(assets/images/icon_filter_down_arrow.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background: #000;
  transition: 0.4s;
  -webkit-mask-size: cover;
  position: absolute;
  right: 0;
  top: 5px;
  transform: rotate(180deg);
}

.product-detail-desc h2.active:after {
  transform: rotate(0deg);
  transition: 0.4s;
}

.product-detail-desc-inner ul li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 10px;
  font-weight: 300;
}

.product-detail-desc-inner ul li:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #2F5CCE;
}

.single-product .product-box-wrapper .yith-wcbr-brands {
  display: none;
}

.recent-products-wrapper {
  padding-top: 100px;
}

.recent-products-wrapper h2 {}

.recent-products-wrapper ul {
  flex-wrap: wrap;
}

/* .product-detail table {
  table-layout: fixed;
  width: 100%;
  color: #282828;
  font-size: 18px;
  margin-top: 30px;
  border-collapse: separate;
  border-spacing: 0;
  display: block;
}
.product-detail table tr td {
  border-right: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
}
.product-detail table tr td:first-child {
  border-left: 1px solid #cecece;
}
.product-detail table tr td {
  background: #f4f4f4;
  text-align: left;
}
.product-detail table tr:first-child td {
  border-top: solid 1px #cecece;
} */
/* top-left border-radius */
/* .product-detail table tr:first-child td:first-child {
  border-top-left-radius: 16px;
} */

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

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

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

.product-detail tbody,
.product-detail td,
.product-detail tfoot,
.product-detail th,
.product-detail thead,
.product-detail tr {
  background: #f4f4f4 !important;
  border-color: #cecece;
}
.product-detail tbody tr td {
  padding: 16px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #282828;
} */
.product-detail ol.detail-counter {
  margin-bottom: 20px;
}

.product-detail ol.detail-counter li {
  margin-bottom: 10px;
  counter-increment: item;
}

.product-detail ol.detail-counter li {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #282828;
  padding-left: 20px;
  position: relative;
}

.product-detail ol.detail-counter li:before {
  content: counter(item);
  position: absolute;
  top: 0;
  left: 0;
}

p.woocommerce-noreviews {
  margin-bottom: 15px;
}

.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: #2F5CCE;
}

.video-text a:hover {
  color: #000;
}

.video-box {
  margin-bottom: 30px;
}

.video-box:last-child {
  margin-bottom: 0;
}

.rating-stock-wrapper,
.up-sells.upsells.products {
  display: none;
}

.woocommerce-variation-add-to-cart {
  display: flex;
  align-items: center;
  gap: 16px;
}

table.variations {
  width: 100%;
  margin: 16px 0 0;
}

.reset_variations {
  display: none;
}

body .tinv-wishlist .tinvwl-buttons-group button {
  width: 100% !important;
  background: #2F5CCE !important;
  color: #fff !important;
  font-size: 16px !important;
  line-height: 20px !important;
  font-weight: 600 !important;
  padding: 11px 26px !important;
  border: none !important;
  margin-top: 10px !important;
  transition: all 0.4s !important;
}

body .tinv-wishlist .tinvwl-buttons-group button:hover {
  background: #000 !important;
  color: #fff !important;
  transition: all 0.4s !important;
}

/* Style the Additional Features / Product Specifications table */
.woocommerce-product-attributes.shop_attributes {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: inherit;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}

/* Table row */
.woocommerce-product-attributes.shop_attributes tr {
  border-bottom: 1px solid #e5e5e5;
}

/* Last row - no bottom border */
.woocommerce-product-attributes.shop_attributes tr:last-child {
  border-bottom: none;
}

/* Attribute Label (th) */
.woocommerce-product-attributes-item__label {
  text-align: left;
  font-weight: 600;
  background-color: #f1f1f1;
  padding: 12px 16px;
  width: 30%;
  color: #222;
  border-right: 1px solid #e5e5e5;
}

/* Attribute Value (td) */
.woocommerce-product-attributes-item__value {
  padding: 12px 16px;
  color: #444;
}

.woocommerce table.shop_attributes td {
  font-style: normal;
  padding-left: 10px;
}

.woocommerce-product-attributes-item__value p {
  margin: 0;
}

/* .product-detail-desc-inner { display: none;} */
/* End Detail Page */

/* Cart Page */
.entry-title {
  color: #363636;
  margin: 0;
}

.woocommerce table.shop_table,
.woocommerce table.woocommerce-orders-table,
.tinv-wishlist table.tinvwl-table-manage-list {
  border: 1px solid #EEEEEE;
  margin: 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 0;
  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 #2f5cce;
  background-color: #2f5cce;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  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 #EEEEEE;
}

.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 #EEEEEE;
  padding: 10px;
  color: #202020;
}

.woocommerce-cart table.cart td.actions .coupon .input-text::placeholder {
  color: #5c5c5c;
}

.woocommerce-cart .cart .button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
  float: none !important;
  background: #2F5CCE;
  padding: 10px 14px;
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #fff !important;
  text-transform: uppercase;
  border: 1px solid #2F5CCE;
  border-radius: 0;
  flex-shrink: 0;
  text-transform: inherit;
}

.woocommerce-cart .cart .button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover {
  background: #000 !important;
  color: #fff !important;
  border: 1px solid #000 !important;
}

.woocommerce-cart .woocommerce .cart .button:disabled[disabled]:hover {
  opacity: 1;
  background: #000 !important;
  color: #fff !important;
  border: 1px solid #000 !important;
}

.woocommerce a.remove {
  color: #363636 !important;
  width: 25px;
  height: 25px;
  background: transparent;
  border-radius: 0;
  line-height: 0.8;
  font-size: 26px;
  border: 1px solid #EEEEEE;
  vertical-align: middle;
  font-weight: 600;
}

.woocommerce a.remove:hover {
  color: white !important;
  background: #2F5CCE;
  border-color: #2F5CCE;
}

.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: 600;
}

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 #EEEEEE;
  padding: 10px 0;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #363636;
  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 #EEEEEE;
  border-radius: 0;
}

.cart_totals table.shop_table {
  border: none;
}

.cart_totals>h2 {
  font-size: 22px !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: 16px;
  padding: 12px 16px;
  background-color: #2f5cce;
  border-radius: 0;
  font-weight: 600;
  text-transform: inherit;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background-color: #000;
}

.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: #363636;
}

.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 #D3D3D3;
  border-radius: 0;
  height: 40px;
  position: relative;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
  line-height: 28px;
  color: #000;
  padding: 6px 30px 6px 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 #EEEEEE;
  border-radius: 0;
  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: #2f5cce;
  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: 0;
  background: #eeeeee;
  width: 100%;
  float: none;
}

nav.woocommerce-MyAccount-navigation ul li {
  margin-bottom: 0;
  padding: 0;
  padding-bottom: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  border-bottom: 1px solid #d3d3d3;
}

nav.woocommerce-MyAccount-navigation ul li:before {
  display: none;
}

nav.woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: 0;
}

nav.woocommerce-MyAccount-navigation ul li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  transition: all 0.4s;
  color: #363636;
  text-transform: capitalize;
  padding: 10px 20px;
}

nav.woocommerce-MyAccount-navigation .is-active a,
nav.woocommerce-MyAccount-navigation a:hover {
  color: #2F5CCE;
  transition: all 0.4s;
}

.account-pages .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
}

/* .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: 16px !important;
  margin: 0;
  line-height: 20px !important;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: 10px 25px !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
  left: auto;
  color: #ffffff !important;
  background-color: #2F5CCE !important;
  border: 0;
  display: inline-block;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
}

.woocommerce table.shop_table td .woocommerce-button:hover,
.woocommerce-message .wp-element-button:hover,
.woocommerce-error .wp-element-button:hover {
  color: #ffffff;
  background-color: #000 !important;
}

.woocommerce-MyAccount-content .woocommerce-Address {
  border: 1px solid #eee;
  padding: 20px;
}

header.woocommerce-Address-title.title {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 0;
}

.woocommerce-account .addresses .title h3,
.woocommerce-MyAccount-content h3 {
  float: none;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
}

.woocommerce-MyAccount-content p {
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 10px 0;
}

.woocommerce-MyAccount-content p>a {
  display: inline-block;
}

.woocommerce-MyAccount-content a {
  color: #000;
  font-weight: 700;
  transition: all 0.4s;
  font-size: 14px;
  line-height: 20px;
}

.woocommerce-MyAccount-content a:hover {
  color: #2F5CCE;
  transition: all 0.4s;
}

.woocommerce-Address address {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #282828;
  margin-bottom: 0;
}

.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: 20px !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
  color: #ffffff !important;
  background-color: #2F5CCE !important;
  transition: 0.4s;
}

.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: #000 !important;
  transition: all 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: 12px 20px !important;
}

.my-account-wishlit .tinvwl-to-right.look_in .button {
  margin-right: 10px !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 #EEEEEE;
  height: 44px;
  border-radius: 0;
}

.tinvwl-input-group .form-control:focus {
  box-shadow: none;
}

.tinv-wishlist .product-remove button {
  width: 20px;
  height: 20px;
  background-color: transparent;
  color: #2f5cce;
  font-size: 20px;
  padding: 0;
  min-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2f5cce;
  border-radius: 0;
}

.tinv-wishlist .product-remove button:hover {
  background-color: #000;
  color: #fff !important;
  border-color: #000;
}

.tinv-wishlist .product-stock span {
  display: inline-block;
  text-align: center;
}

.woocommerce .woocommerce-MyAccount-content form .form-row label,
.woocommerce .checkout .form-row label {
  font-size: 14px;
  line-height: 22px;
  color: #363636;
  font-weight: 500;
  margin-bottom: 10px;
}

.woocommerce .woocommerce-MyAccount-content form .form-row input.input-text,
.woocommerce .woocommerce-MyAccount-content form .form-row textarea {
  border-color: #EEEEEE;
}

.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: #2f5cce;
}

.woocommerce-order-details h2.woocommerce-order-details__title,
h2.woocommerce-column__title {
  font-size: 22px !important;
  line-height: 30px !important;
}

.woocommerce .woocommerce-customer-details {
  margin-bottom: 0;
}

.woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details address {
  font-style: normal;
  margin-bottom: 0;
  border: 1px solid #EEEEEE;
  border-bottom-width: 1px;
  border-right-width: 1px;
  text-align: left;
  width: 100%;
  border-radius: 0;
  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: #2F5CCE transparent;
  scrollbar-width: thin;
}

.my-account-wishlit::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
  border-radius: 0;
}

.my-account-wishlit::-webkit-scrollbar-thumb {
  background: #2F5CCE;
  border-radius: 0;
  background-color: #2F5CCE;
}

.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 #EEEEEE;
}

.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: 6px;
  color: #2f5cce;
  font-size: 18px;
}

.tinv-wishlist .product-stock i:before {
  line-height: 30px;
}

.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: #2F5CCE;
  padding: 8px 20px;
  margin: 0;
  font-weight: 400 !important;
  font-size: 16px;
  line-height: 20px;
  color: #363636;
  border: none !important;
  border-radius: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  transition: all 0.4s;
}

.woocommerce .tinv-wishlist .product-action .button:hover {
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  transition: all 0.4s;
}

.woocommerce .tinv-wishlist .product-action .button i {
  display: none;
}

.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: #2f5cce;
  transition: 0.4s;
  -webkit-mask-size: cover; */
  display: none;
}

.woocommerce .tinv-wishlist .product-action .button:hover i::before {
  background: #fff;
}

.woocommerce .tinv-wishlist .product-action .button span,
footer.entry-footer {
  display: block;
}

.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 #2F5CCE;
  background-color: #2F5CCE;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  border-right: 0;
  border-bottom-color: #2F5CCE !important;
}

.woocommerce .account-pages table.shop_table td {
  border-color: #EEEEEE;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
  margin-bottom: 0;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  color: #2f5cce;
  text-transform: lowercase;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
  margin-bottom: 5px;
  margin-top: 10px;
}

.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;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
  font-size: 14px;
  margin: 0 !important;
  line-height: 21px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: 6px 26px;
  font-weight: 400;
  border-radius: 0;
  left: auto;
  color: #ffffff;
  background-color: #2f5cce;
  border: 0;
  display: inline-block;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover {
  background-color: #000000;
  color: #ffffff;
}

body .woocommerce-MyAccount-content .Input:focus,
body .woocommerce-MyAccount-content .p-Input--focused {
  outline: 0;
  border-color: #2f5cce;
  box-shadow: none;
}

/* End My Account */

/* Order Received Page */
.thankyou-form-box {
  border: 1px solid #EEEEEE;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 30px;
}

.thankyou-form-box p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
  border: 1px solid #2f5cce;
  background-color: #2f5cce;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  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: #363636;
  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: #000;
}

.woocommerce .thankyou-form-box ul.order_details li:before {
  display: none;
}

.woocommerce-order-received .woocommerce .woocommerce-customer-details {
  margin-bottom: 0;
}

.woocommerce .woocommerce-customer-details address {
  font-style: normal;
  margin-bottom: 0;
  border: 1px solid #D3D3D3;
  border-bottom-width: 1px;
  border-right-width: 1px;
  text-align: left;
  width: 100%;
  border-radius: 0;
  padding: 20px;
  box-sizing: border-box;
  height: 100%;
}

.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: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background: #2f5cce;
  transition: 0.4s;
  -webkit-mask-size: cover;
  font-size: 0;
  line-height: 0;
  margin: 0;
  position: absolute;
  top: 2px;
  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: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background: #2f5cce;
  transition: 0.4s;
  -webkit-mask-size: cover;
  font-size: 0;
  line-height: 0;
  margin: 0;
  position: absolute;
  top: 4px;
  left: 0;
}

.woocommerce-order-details td.product-name small {
  text-transform: capitalize;
  font-size: 14px;
  display: block;
}

/* End Order Received Page */

/* Product Compare */
.product-compare-wrapper {
  overflow-x: auto;
}

.woocommerce-products-compare-content .remove-compare-product:hover {
  color: #2F5CCE;
}

.woocommerce-products-compare-content table td,
.woocommerce-products-compare-content table th {
  border-left: 1px dotted #EEEEEE;
}

.woocommerce-products-compare-content table thead tr:first-child {
  border-bottom: 1px solid #EEEEEE;
}

.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 #EEEEEE;
  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 #EEEEEE;
}

.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: #363636;
  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: #363636;
  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(47 92 206 / 10%);
}

.woocommerce-products-compare-content table tbody tr:nth-child(odd) {
  background-color: #EEEEEE;
}

.woocommerce-products-compare-content .price,
.woocommerce-products-compare-content span.stock-status.in-stock {
  color: #2F5CCE;
}

.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: #2F5CCE;
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 9;
}

.product-compare-wrapper a.remove-compare-product:hover {
  background: #2F5CCE;
  transition: 0.4s;
}

/* .product-compare-wrapper .product .product-link h3{
    margin-bottom: 10px;
} */
.product-compare-wrapper .product .product-link h3 {
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  max-width: 310px;
  margin: 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.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;
}

.woocommerce.product-compare a.button.loading::after {
  top: 12px;
  right: 2px;
}

/* End Product Compare */

/* 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 #d3d3d3;
  padding: 21px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  transition: all 0.4s;
  margin-bottom: 24px;
}

.contact-box:hover {
  box-shadow: 0px 0px 20px 0px #d3d3d3;
}

.contact-box-icon {
  background: #2F5CCE;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.contact-text h5 {
  margin: 0 0 8px 0;
  line-height: 24px;
}

.contact-box a {
  font-size: 16px;
  line-height: 24px;
  color: #363636;
  transition: all 0.4s;
}

.contact-box a:hover {
  color: #2F5CCE;
  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: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background: #fff;
  transition: all 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: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background: #fff;
  transition: all 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: 24px;
  height: 24px;
  background-repeat: no-repeat;
  /* background: #fff; */
  transition: all 0.4s;
  -webkit-mask-size: cover;
  display: block;
}

.contact-section-right p {
  margin-bottom: 20px;
}

.contact-section-right p:last-child {
  margin-bottom: 0;
}

.contact-section-right textarea {
  height: 70px;
}

.contact-section-right p input[type="submit"] {
  width: auto;
  padding: 11px 26px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-transform: inherit;
  transition: all 0.4s;
  background: #2F5CCE;
  color: #fff;
  margin: 0;
  border: none;
}

.contact-section-right p input[type="submit"]:hover {
  transition: all 0.4s;
  background: #000;
  color: #fff;
}

.contact-section-right form {
  background-color: #EEE;
  padding: 23px;
  position: relative;
}

.contact-section-right form input,
.contact-section-right form textarea {
  background-color: #fff;
}

/* End Contact Us */

/* Blog Page */
.blogList_item_inner {
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.blogList_img {
  height: 250px;
  width: 100%;
  display: block;
  overflow: hidden;
  background-color: #f8f8f8;
}

.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: 20px;
  border-top: 1px solid #EEEEEE;
}

.blogList_bottom_title h3 a {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #363636;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
  transition: 0.4s;
}

.blogList_bottom_title h3 a:hover {
  color: #2F5CCE;
  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: #363636;
  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 #EEEEEE;
}

.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: #363636;
  margin-right: 6px;
}

.blogList_sec .page-numbers.current,
.blogList_sec .page-numbers:hover {
  background: #2F5CCE;
  color: #ffffff;
}

.blogList_sec .pagination .next.page-numbers,
.blogList_sec .pagination .prev.page-numbers {
  border: 1px solid #d3d3d3;
  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: #000;
}

.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;
  height: 400px;
  max-width: 600px;
  border: 1px solid #EEEEEE;
}

.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: #363636;
  margin-bottom: 10px;
}

.blogDetail_content h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #363636;
}

.blogDetail_content p {
  font-size: 16px;
  line-height: 24px;
}

.blogDetail_content h4 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #363636;
}

.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: #2F5CCE;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

.woocommerce .product-detail .star-rating span {
  line-height: normal;
}

/* End Blog Detail Page */

/* Checkout Page */
.woocommerce form.checkout_coupon {
  display: flex;
  flex-wrap: wrap;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid #d3d3d3;
  border-radius: 0;
}

.woocommerce form.checkout_coupon {
  display: flex;
}

.woocommerce form.checkout_coupon>p {
  width: 100%;
}

.woocommerce form.checkout_coupon .form-row.form-row-first {
  margin-bottom: 10px !important;
}

.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 #D3D3D3;
}

#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: 0;
  line-height: 24px;
  background-color: #eeeeee;
  color: #363636;
}

#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: 1px solid #D3D3D3;
}

.woocommerce-checkout .woocommerce table.shop_table thead th {
  border: 1px solid #2f5cce;
}

.woocommerce-checkout .woocommerce table.shop_table {
  border: 1px solid #eeeeee;
}

.woocommerce-checkout .woocommerce table.shop_table tr td {
  border-top: 1px solid #eeeeee;
}

.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;
}

.payment_methods .wc_payment_method.payment_method_stripe {
  display: block;
}

.woocommerce-checkout #payment div.payment_box {
  padding: 0;
}

.testmode-info a {
  display: inline-block;
}

.woocommerce-checkout #payment ul.payment_methods li img {
  display: inline-block;
}

.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 #D3D3D3;
}

.woocommerce-checkout #payment div.payment_box input.input-text {
  border-color: #D3D3D3;
  border-top-color: #D3D3D3;
}

.single-pages .woocommerce-MyAccount-content ul.payment_methods li:before {
  display: none !important;
}

.woocommerce-checkout #payment ul.payment_methods li input,
.woocommerce-MyAccount-content ul.payment_methods li input {
  margin: 0;
  border: 1px solid #D3D3D3;
  padding: 10px 16px !important;
  display: none;
}

.woocommerce-checkout #payment ul.payment_methods li label,
.woocommerce-MyAccount-content ul.payment_methods li label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}

.woocommerce-checkout #payment ul.payment_methods li label:before,
.woocommerce-MyAccount-content ul.payment_methods li label:before {
  content: '';
  position: absolute;
  display: block;
  top: 8px;
  left: 0;
  width: 16px;
  height: 16px;
  background: transparent;
  border: 1px solid #D3D3D3;
  transition: all 0.2s ease;
  border-radius: 100%;
}

.woocommerce-checkout #payment ul.payment_methods li label:after,
.woocommerce-MyAccount-content ul.payment_methods li label:after {
  position: absolute;
  display: block;
  content: "";
  top: 11px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-image: url(assets/images/icon_check.svg);
  background-position: center;
  background-size: 16px;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.2s ease;
}

.woocommerce-checkout #payment ul.payment_methods li input:checked~label:before,
.woocommerce-MyAccount-content ul.payment_methods li input:checked~label:before {
  background: #2F5CCE;
  border: 1px solid #2F5CCE;
}

.woocommerce-checkout #payment ul.payment_methods li input:checked~label::after,
.woocommerce-MyAccount-content ul.payment_methods li input:checked~label::after {
  opacity: 1;
  transition: all 0.2s ease;
}

.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;
  margin-bottom: 16px;
}

.woocommerce-privacy-policy-text p a {
  font-weight: 700;
  text-transform: capitalize;
  display: inline-block;
}

.woocommerce table.shop_table tfoot th {
  text-align: left;
  border-top: 1px solid #EEE;
}

.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,
.login-inner span.forminator-required::before {
  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 #D3D3D3;
  border-radius: 0
}

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: #2f5cce;
  border: #2f5cce;
}

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;
  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: 14px;
  line-height: 21px;
  color: #363636 !important;
  font-weight: 500 !important;
  margin-bottom: 10px;
}

.woocommerce .woocommerce-form-login p.lost_password a {
  font-weight: 500;
}

.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: #2f5cce !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: #363636 !important;
  transition: 0.4s;
}

.dsabafw_modal-content {
  border: none;
  border-radius: 0;
  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: #363636;
}

#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: #363636 !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: #2F5CCE;
  transition: 0.4s;
}

#billing_country_field span.woocommerce-input-wrapper,
#shipping_country_field span.woocommerce-input-wrapper {
  font-size: 14px;
  line-height: 22px;
  color: #363636;
  border: 0;
  width: 100%;
  display: block;
  padding: 0;
  border-radius: 0;
}

#billing_country_field span.woocommerce-input-wrapper strong,
#shipping_country_field span.woocommerce-input-wrapper strong {
  font-weight: 400;
}

.dsabafw_close {
  background-color: #363636;
}

select.dsabafw_select,
select.dsabafw_select_shipping {
  color: #363636;
  opacity: 1;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: #eeeeee;
  border-radius: 0;
}

.woocommerce form.checkout .form-row.place-order {
  margin: 0;
}

/* .StripeElement {
  display: none;
} */
/* End Checkout Page */

/* 404 */
.not-found .page-header h1 {
  text-align: center;
  color: #000;
}

.page-content p {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}

/* End 404 */

/* Single Pages */
.page-template-template-vat-exemption h2,
.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: #2F5CCE;
  border-radius: 50%;
}

.comments-area {
  display: none;
}

.order-list {
  list-style: none;
  counter-reset: item;
  margin-left: 0;
}

.order-list li {
  position: relative;
  /* display: flex; */
  align-items: start;
  gap: 5px;
  margin-bottom: 10px;
}

.order-list li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

.order-list li h2 {
  display: inline-block;
}

.single-pages ol li h3 {
  margin-bottom: 0;
}

.single-pages ul li a {
  display: inline-block;
}

/* End Single Pages */

/* CMS Pages */
.sidebar-wrapper {
  width: 100%;
  border-radius: 0;
  border: 1px solid #EEEEEE;
  overflow: hidden;
  margin-bottom: 20px;
}

.sidebar-wrapper:last-child {
  margin: 0;
}

.sidebar-title {
  background-color: #2f5cce;
  padding: 8px 12px;
}

.sidebar-title h4 {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  margin: 0;
}

.sidebar-menu li {
  border-bottom: 1px solid #EEEEEE;
  padding: 10px 15px;
}

.sidebar-menu li:last-child {
  border: none;
}

.sidebar-menu li.active a {
  color: #2F5CCE;
}

.sidebar-menu li a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #363636;
}

.sidebar-menu li a:hover {
  color: #2F5CCE;
}

.sidebar-menu li a.active {
  color: #2F5CCE;
}

.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 */
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px;
  color: #363636;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  text-align: left;
  background-color: #eeeeee;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: 0.4s;
}

.accordion-item {
  color: #363636;
  background-color: #fff;
  border: 1px solid #eeeeee;
  margin-bottom: 20px;
  border-radius: 0;
  overflow: hidden;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #2f5cce;
  box-shadow: none;
}

.accordion-button:focus {
  border-color: #eaeaea;
  box-shadow: none;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion-item:last-of-type,
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.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: #363636;
  margin-bottom: 10px;
}

.faq-page ul li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #2f5cce;
  border-radius: 50%;
}

/* End FAQ */

/* 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: #2F5CCE;
  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(47 92 206 / 10%);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thankyou-content img {
  margin: 0 auto;
}

.thankyou-content h1 {
  text-transform: capitalize;
  color: #2f5cce;
}

/* 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;
}

/*  */

/* 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: #EEEEEE;
  color: #5c5c5c;
  border-top: 3px solid #2F5CCE;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
}

.woocommerce-info {
  border-top-color: #2F5CCE;
  border-radius: 0 0 8px 8px;
}

.woocommerce-info::before,
.woocommerce-message::before {
  color: #2F5CCE;
}

.woocommerce form .form-row .woocommerce-input-wrapper .description::before {
  border-color: #2F5CCE transparent transparent transparent;
}

.woocommerce form .form-row .woocommerce-input-wrapper .description {
  background: #2F5CCE;
}

.woocommerce-error li:before,
.woocommerce-info li:before,
.woocommerce-message li:before {
  display: none;
}

/* End Alert Messages */

/* Whatsapp */
.wa__btn_popup {
  font-family: inherit;
}

.wa__btn_popup .wa__btn_popup_icon {
  height: 54px;
  width: 54px;
}

.wa__btn_popup .wa__btn_popup_icon:before {
  background-size: 26px auto;
  -webkit-background-size: 26px auto;
}

.wa__btn_popup .wa__btn_popup_txt {
  display: none !important;
}

/* End Whatsapp */

/* 404 */
.error-text {
  text-align: center;
  position: relative;
}

.error-text h1 {
  font-size: 120px;
  line-height: 1;
  color: #2F5CCE;
}

.error-text h1:nth-child(1) {
  color: transparent;
  -webkit-text-stroke: 2px #2F5CCE;
  position: relative;
}

.error-text h1:nth-child(2) {
  color: #2F5CCE;
  animation: animate 4s ease-in-out infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@keyframes animate {

  0%,
  100% {
    clip-path: polygon(0% 45%,
        16% 44%,
        33% 50%,
        54% 60%,
        70% 61%,
        84% 59%,
        100% 52%,
        100% 100%,
        0% 100%);
  }

  50% {
    clip-path: polygon(0% 60%,
        15% 65%,
        34% 66%,
        51% 62%,
        67% 50%,
        84% 45%,
        100% 46%,
        100% 100%,
        0% 100%);
  }
}

/* End 404 */

/* Paypal */
.paypal-block,
.free-shipping-block {
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  display: inline-block;
  padding: 30px;
  background-color: #2F5CCE;
  max-width: 284px;
  width: 100%;
}

.paypal-block h6,
.free-shipping-block h6 {
  margin-bottom: 0;
  color: #fff;
}

.paypal-block p {
  color: #fff;
}

.paypal {
  display: none;
}

/* Paypal End */

/* Vat Exemption */
.vat-exemption-section p>a {
  display: inline-block;
  color: #2F5CCE;
  font-weight: 600;
}

.vat-exemption-section p>a:hover {
  color: #000;
  transition: all 0.4s;
}

.exemption-form {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  background-color: #eee;
  position: relative;
}

.exemption-form input,
.exemption-form select,
.exemption-form textarea {
  background-color: #fff;
}

.exemption-form-submit {
  text-align: right;
}

.exemption-form-submit input {
  width: auto;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 0;
  text-transform: capitalize;
  transition: all 0.4s;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background-color: #2f5cce;
  color: #fff;
}

.exemption-form-submit input:hover {
  transition: all 0.4s;
  background-color: #000;
  color: #fff;
}

.exemption-form select {
  height: 43px;
}

.exemption-form textarea {
  height: 100px;
}

.wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 10px;
  border: 2px solid #000;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #2f5cce;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

/* End Vat Exemption */

/* 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%;
} */
/* 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;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.added::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.added::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.added::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.added::after {
  display: none;
}

/* New CSS 16/11/2023 */
.offers-modal .btn-close {
  z-index: 2;
}

.offers-modal {
  z-index: 9999;
}


.woocommerce div.product form.variations_form {
  display: block;
}

.single-pages p a {
  display: inline-block;
}

/* Vat Functionality 07-03-2025 */
.vat-btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.product-detail .single_variation_wrap .woocommerce-variation-add-to-cart {
  flex-direction: column;
}

.vat-btn {
  border-color: #2F5CCE !important;
  min-width: 270px;
  font-size: 15px !important;
}

.vat-btn.selected {
  background-color: #000;
  border-color: #000000 !important;
}

.vat-btn.selected:before {
  border-color: #000;
}

.vat-btn.selected:after {
  box-shadow: none !important;
}

#vat-error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

#other-vat-reason {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  display: none;
}

#vat-relief-label,
#vat-inclusive-label {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  margin-left: 5px;
}

#vat-relief-label {
  color: #268b26;
}

#vat-inclusive-label {
  color: #d50000;
}

#vat-reason-container {
  margin-bottom: 15px;
}

.woocommerce div.product form.cart .button {
  min-width: 442px;
}

.woocommerce .quantity .qty {
  height: 46px;
  width: 100px;
  min-width: 100px;
  max-width: 100px;
}

.woocommerce div.product form.cart div.quantity {
  float: none;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

#top-add-to-cart .single_add_to_cart_button,
.recent-products-wrapper #vat-relief-label {
  display: none;
}

.woocommerce #top-add-to-cart ul.cart_list li dl,
.woocommerce #top-add-to-cart ul.product_list_widget li dl {
  margin: 0;
  padding-left: 0;
  border-left: 0;
  margin: 0 0 0 60px;
}

.woocommerce #top-add-to-cart ul.cart_list li dl dt,
.woocommerce #top-add-to-cart ul.product_list_widget li dl dt {
  font-weight: 700;
  padding: 0 0 6px 0;
  margin: 0 6px 0 0;
  clear: left;
  font-size: 14px;
  line-height: 21px;
}

.woocommerce #top-add-to-cart ul.cart_list li dl dd,
.woocommerce #top-add-to-cart ul.cart_list li dl dd p,
.woocommerce #top-add-to-cart ul.product_list_widget li dl dd,
.woocommerce #top-add-to-cart ul.product_list_widget li dl dd p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 21px;
}

.woocommerce-cart .woocommerce td.product-name .wc-item-meta .wc-item-meta-label,
.woocommerce-cart .woocommerce td.product-name .wc-item-meta dt,
.woocommerce-cart .woocommerce td.product-name dl.variation .wc-item-meta-label,
.woocommerce-cart .woocommerce td.product-name dl.variation dt {
  font-size: 14px;
  line-height: 22px;
}

.woocommerce-cart .woocommerce span.woocommerce-Price-amount.amount {
  font-size: 16px;
  line-height: 26px;
}

.woocommerce-cart .woocommerce .quantity .qty {
  width: 80px;
  min-width: 80px;
  max-width: 80px;
}

.woocommerce-cart table.cart td.product-name a {
  margin-bottom: 6px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table td.product-name {
  display: block;
}

.woocommerce-checkout table.cart td.product-name p,
.woocommerce-checkout table.shop_table td.product-name p {
  margin: 0;
  display: inline-block;
}

.woocommerce-checkout .woocommerce span.woocommerce-Price-amount.amount {
  font-size: 20px;
  line-height: 30px;
}

.woocommerce-checkout .woocommerce td.product-name .wc-item-meta .wc-item-meta-label,
.woocommerce-checkout .woocommerce td.product-name .wc-item-meta dt,
.woocommerce-checkout .woocommerce td.product-name dl.variation .wc-item-meta-label,
.woocommerce-checkout .woocommerce td.product-name dl.variation dt {
  margin-right: 5px;
}

.woocommerce-checkout .product-name {
  padding-left: 12px !important;
}

/* Vat Functionality 07-03-2025 End */

/* Tooltip Detail Page 17-03-2025 */
.tooltip-wrapper {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.tooltip-icon {
  font-size: 18px;
  margin-left: 5px;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  position: absolute;
  background-color: #333;
  color: #fff;
  border-radius: 0;
  padding: 10px;
  font-size: 12px;
  line-height: 20px;
  top: 25px;
  left: 0;
  width: 100%;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s;
  min-width: 300px;
  max-width: 300px;
  display: block;
}

.tooltip-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Tooltip Detail Page End 17-03-2025 */

/* Product Detail Email CSS 17-06-2055 */

.woocommerce-product-short-description p a {
  display: inline-block;
  text-decoration: none;
}


/* Product Detail Email CSS 17-06-2055 End */

.woocommerce-product-short-description p a,
.woocommerce-product-short-description p img,
.woocommerce-Tabs-panel p a,
.woocommerce-Tabs-panel p img {
  display: inline-block;
}