/* Layouts */
.gradient-text {
  background: linear-gradient(90deg, #FE0000 3.5%, #FE47CD 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.is-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  z-index: 3;
  box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.1254901961);
  display: flex;
  align-items: center;
}

.container, .site-main {
  max-width: 1440px !important;
  margin: 0 auto;
  width: 100%;
}

#site-header {
  display: flex;
  align-items: center;
  padding: 4px 16px;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
  height: 64px;
}
#site-header .container {
  display: flex;
  width: 100%;
}
#site-header .site-logo {
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
#site-header .site-logo img {
  object-fit: contain;
}
#site-header .contact-btn {
  margin-left: auto;
  padding: 0 16px;
  min-width: 64px;
  height: 36px;
  border-radius: 4px;
  border: thin solid rgb(211, 211, 211);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: darkblue;
  transition: all 0.3s ease;
}
#site-header .contact-btn:hover {
  background-color: rgba(211, 211, 211, 0.3);
}
#site-header .switcher-wrp .trp-language-switcher {
  z-index: 20;
}
#site-header .switcher-wrp .trp-ls-shortcode-current-language {
  padding: 0;
  border: thin solid rgb(211, 211, 211);
  border-radius: 16px;
}
#site-header .switcher-wrp .trp-ls-shortcode-language {
  border: thin solid rgb(211, 211, 211);
  border-radius: 16px;
}

.footer {
  background: #f1f4f8;
  padding-bottom: 40px;
  padding-top: 40px;
}
.footer .container {
  padding-top: 12px;
}
.footer ul {
  list-style: none !important;
  display: flex;
  justify-content: center;
  gap: 50px;
  font-size: 14px;
}
.footer ul a {
  color: #c2c2c2;
}
.footer ul a:hover {
  text-decoration: underline;
}

#home-page #swiper-hero-home img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#home-page .container {
  padding: 12px 12px 0 12px;
}
#home-page .products-box {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 50px;
}
#home-page .products-box .product-card {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  max-width: 500px;
  border-radius: 10px;
  padding: 8px;
  width: 100%;
  transition: transform 0.1s linear;
}
#home-page .products-box .product-card h2 {
  font-size: 24px;
}
#home-page .products-box .product-card .product-description {
  font-size: 16px;
}
#home-page .products-box .product-card .price {
  margin-top: auto;
}
#home-page .products-box .product-card:hover {
  transform: scale(1.03);
}
#home-page .products-box .product-card .img-wrp {
  display: flex;
  justify-content: center;
  align-items: center;
}
#home-page .products-box .product-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #000000;
}
#home-page .products-box .product-card a:hover > h2 {
  color: #00008B;
}
@media screen and (max-width: 768px) {
  #home-page .products-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
#home-page #bestsellers-section .banner {
  display: flex;
}
#home-page #bestsellers-section .banner img {
  object-fit: cover;
}
#home-page .support-line {
  width: 100%;
  display: flex;
  justify-content: space-around;
  background: linear-gradient(253.77deg, rgba(255, 255, 255, 0.3) -1.6%, rgba(255, 255, 255, 0) 167.37%), rgb(46, 46, 46);
  color: #ffffff;
}
#home-page .support-line .item {
  padding: 16px;
}

.single-product {
  background: #f1f4f8;
}
.single-product .site-header {
  display: none;
}
.single-product .woocommerce-form-coupon-toggle {
  display: none;
}
.single-product .container {
  max-width: 1140px !important;
  margin: 0 auto;
  padding: 0 40px;
}

.product-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #ffffff;
  padding: 40px 0;
}
.product-header .company-logo {
  max-width: 440px;
}
.product-header .company-logo img {
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .product-header .company-logo {
    max-width: 70%;
  }
}

.product-features {
  display: flex;
  margin-top: 50px;
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
}
.product-features .product-img {
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-features .product-img img {
  width: 80%;
  object-fit: contain;
}
.product-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: 100%;
}
.product-features ul li {
  background: #ebebeb;
  text-align: center;
  font-size: 16px;
  padding: 4px 8px;
}
@media screen and (max-width: 768px) {
  .product-features {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .product-features .product-img {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .product-features ul {
    padding-left: 0;
  }
}

.offer-special {
  text-align: center;
  font-size: 16px;
  margin-top: 50px;
  padding: 0 50px;
}
.offer-special .green-text {
  color: rgb(53, 203, 51);
}

.checkout-wrap {
  display: flex;
  column-gap: 30px;
  min-height: 600px;
}
.checkout-wrap .billing-section {
  background: #ffffff;
  width: 60%;
}
.checkout-wrap .shipping-section {
  background: #ffffff;
  width: 40%;
}

.form-product-promo {
  display: flex;
}
.form-product-promo .promo-titles {
  font-size: 24px;
  width: 50%;
  flex-basis: 50%;
}
.form-product-promo .promo-titles h4 {
  font-weight: 700;
}
.form-product-promo .promo-img {
  width: 50%;
  flex-basis: 50%;
}
.form-product-promo .promo-img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.discount-wrp {
  display: flex;
  align-items: center;
}
.discount-wrp h3 {
  font-size: 18px;
}
.discount-wrp .red-text {
  font-size: 20px;
  font-weight: bold;
  color: #f44336 !important;
}
.discount-wrp .label-logo {
  flex-basis: 20%;
}
.discount-wrp .label-logo img {
  max-width: 100%;
  object-fit: contain;
}

#products-selector .bestseller {
  background: #ffeb3b !important;
  border: 1px solid #333 !important;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
#products-selector .bestseller .bestseller-logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
#products-selector .bestseller .label, #products-selector .bestseller .total {
  font-weight: 700;
}
#products-selector .selector-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.25em;
}
#products-selector .select-item {
  display: flex;
  gap: 20px;
  font-size: 12px;
  padding: 12px 0;
  padding-right: 12px;
  cursor: pointer;
}
#products-selector .select-item .item-wrp {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#products-selector .select-item .input-box {
  padding: 12px;
  margin-left: 12px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
#products-selector .select-item .label-wrap {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
}
#products-selector .select-item .label-wrap .label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
#products-selector .select-item .total {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

#payment, .payment_box {
  background: transparent !important;
}

#payment .payment-label {
  width: 100%;
  border: 3px solid #000 !important;
  padding: 12px;
  border-radius: 4px 4px 0 0;
}
#payment .wc_payment_methods {
  padding: 0 !important;
}
#payment .woocommerce-terms-and-conditions-wrapper {
  display: none;
}

.payment_box {
  display: flex;
  flex-direction: column;
  margin-top: 0 !important;
  padding: 12px !important;
  border: 3px solid #000 !important;
  border-top: 0 !important;
}
.payment_box .testmode-info {
  order: 3;
}
.payment_box:before {
  content: none !important;
}
.payment_box .wc-payment-form {
  border: 0 !important;
  padding: 0 !important;
}

#place_order {
  width: 100%;
  font-size: 16px !important;
  font-weight: 400 !important;
  height: auto !important;
  display: block !important;
  white-space: normal !important;
  padding: 16px !important;
  min-width: 100% !important;
  border-radius: 4px;
  background-color: rgb(31, 186, 52);
}

.woocommerce-billing-fields__field-wrapper {
  display: flex;
  gap: 20px;
}
.woocommerce-billing-fields__field-wrapper #billing_address_2_field {
  display: none !important;
}
.woocommerce-billing-fields__field-wrapper .input-text {
  min-height: 56px;
}
.woocommerce-billing-fields__field-wrapper .select2-selection {
  min-height: 56px;
  display: flex;
  align-items: center;
  border: solid 1px #666666;
}
.woocommerce-billing-fields__field-wrapper .select2-selection .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce-billing-fields__field-wrapper .col-1, .woocommerce-billing-fields__field-wrapper .col-2 {
  background: #ffffff;
  padding: 16px;
  border-radius: 20px;
  height: fit-content;
}
.woocommerce-billing-fields__field-wrapper .col-1 {
  max-width: 58.3333333%;
  flex-basis: 58.3333333%;
  width: 100% !important;
}
.woocommerce-billing-fields__field-wrapper .col-2 {
  max-width: 41.66666667%;
  flex-basis: 41.66666667%;
}
@media screen and (max-width: 768px) {
  .woocommerce-billing-fields__field-wrapper {
    flex-direction: column;
  }
  .woocommerce-billing-fields__field-wrapper .col-1, .woocommerce-billing-fields__field-wrapper .col-2 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
}

abbr.required {
  border: none !important;
  text-decoration: none !important;
}

.cursive-text {
  font-style: italic;
}
