/*
Theme Name: Ebot Drive
Author: Ebot Drive 
Version: 1.0
Text Domain: Ebot Drive
*/

:root {
  --primary: #1970e1;
  --primary-hover: #085cc9;
  --secondary-black: #070e16;
  --white: #ffffff;
  --black: #000000;
  --yellow: #eadb53;
  --body-font: "Poppins";
  --heading-font: "Archivo Black", serif;
  --script-font: "photograph-sign";
}
* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  font-family: var(--body-font);
}
input {
  font-family: var(--body-font);
}
a {
  color: var(--primary);
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  padding-inline: 20px;
}
div#wpadminbar {
  z-index: 999999;
}

.btn-blue {
  font-family: var(--body-font);
  background: var(--primary);
  color: var(--white);
  padding: 13px 15px;
  text-decoration: none;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.5s linear;
  z-index: 1;
}

.btn-blue:hover {
  background: var(--primary-hover);
}

.btn-large {
  padding: 13px 40px;
}

.text-center {
  text-align: center;
}

.text-white{
  color: var(--white);
}

/* Header Css */
.logged-in.admin-bar header.main-header {
  top: 32px;
}

.main-header .navbar-toggler {
  background: 0 0;
  border: none;
  padding: 0;
  position: relative;
  z-index: 11;
  display: none;
}

.main-header .navbar-toggler .menu-togglericon {
  width: 30px;
  height: 27px;
  cursor: pointer;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0;
  flex-direction: column;
  transition: linear 0.3s;
}

.main-header .navbar-toggler .menu-togglericon .line {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
}
.home .main-header:not(.scrolled) .navbar-toggler .menu-togglericon .line {
  background-color: var(--white);
}

header.menu-active .line.line-1 {
  transform: translateY(11px) rotate(45deg);
}

header.menu-active .line.line-2 {
  transform: scaleX(0);
  opacity: 0;
}

header.menu-active .line.line-3 {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-overlay {
  overflow: hidden;
}

.home header.main-header{
  position: fixed;
}

header.main-header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 9999;
  transition: all ease 0.5s;
}
header.main-header.scrolled {
  position: fixed;
  background-color: var(--white);
  box-shadow: 5px 8px 25px 4px #0000001a;
}

header .nav-primary .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
header .brandlogo a {
  display: block;
}
header .brandlogo svg {
  width: 100%;
  display: block;
  max-width: 230px;
  transition: all linear 0.5s;
}
header.main-header.scrolled .brandlogo svg {
  max-width: 170px;
}

header .navbar-nav {
  list-style: none;
  line-height: 1;
  font-weight: 500;
  margin: 0;
  padding: 0;
  display: flex;
  font-size: 16px;
  gap: 30px;
  transition: all linear 0.5s;
  align-items: center;
}
header.main-header.scrolled .navbar-nav {
  font-size: 16px;
}

.home header .navbar-nav a {
  color: var(--white);
}

header .navbar-nav a {
  text-decoration: none;
  color: var(--secondary-black);
  padding: 35px 0px;
  display: inline-block;
  transition: all ease 0.5s;
  font-size: 16px;
  font-weight: 500;
}
.home header .navbar-nav a:hover {
  color: var(--white);
  font-weight: 700;
}

header .navbar-nav a:hover{
  color: var(--primary-hover);
}

header.main-header .sub-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  background: var(--white);
  padding: 20px;
  box-shadow: 5px 8px 25px 4px #0000001a;
  max-height: 0px;
  padding-block: 0px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
  /* clip-path: polygon(88% 0, 100% 12%, 100% 100%, 0 99%, 0 0); */
  top: 67px;
}

header.main-header .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  max-height: 500px;
  padding-block: 20px;
 /* clip-path: polygon(94% 0, 100% 6%, 100% 100%, 0 100%, 0 0); */
}

header.main-header .sub-menu li a {
  color: var(--secondary-black);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-decoration-skip-ink: none;
  margin-bottom: 10px;
  display: inline-block;
  padding: 0px;
}
header.main-header .sub-menu li a:hover {
  color: var(--primary);
}
header.main-header .navbar-nav .current-menu-item a {
  color: var(--primary);
}
.main-header .right_nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.home .main-header:not(.scrolled) .right_nav .btn-blue {
  background: var(--white);
  color: var(--primary);
}
header.main-header:not(.scrolled) .right_nav .btn-blue:hover {
  background: var(--primary);
  color: var(--white);
}

.home header.main-header:not(.scrolled) .navbar-nav > .current-menu-item > a {
  color: var(--white);
}

header.main-header:not(.scrolled) .navbar-nav > .current-menu-item > a {
  color: var(--primary);
  font-weight: 700;
}

header path[fill="white"]{
  fill: var(--black);
}

.home header path[fill="white"] {
  fill: var(--white);
}

header.scrolled path[fill="white"] {
  fill: var(--black);
}

header.scrolled a.menu-link {
  color: var(--secondary-black);
}

header.scrolled a.menu-link:hover {
  color: var(--primary);
}

header.scrolled .navbar-nav a {
  padding: 25px 0px;
}

/* cart dropdown */

.header-cart-dropdown {
  position: relative;
  display: inline-block;
}

.cart-icon {
  cursor: pointer;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  position: relative;
  display: flex;
}

.home .header-cart-dropdown a.cart-icon svg {
  fill: var(--white);
}

.header-cart-dropdown a.cart-icon svg {
  width: 20px;
  fill: var(--secondary-black);
  opacity: 70%;
}

header.scrolled .header-cart-dropdown a.cart-icon svg {
  fill: var(--primary);
}

.cart-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: var(--white);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
  width: 400px;
  border-radius: 5px;
  padding: 25px;
  border-radius: 0;
}

.header-cart-dropdown:hover .cart-dropdown-content {
  display: block;
}

.cart-dropdown-content h3 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.cart-dropdown-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #cdcdcd;
  margin: 28px 0 0;
  padding-top: 42px;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 20px;
}

.cart-item-thumbnail img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
}

.cart-item-details {
  margin-left: 10px;
  flex-grow: 1;
}

.cart-item-name {
  margin: 0;
  font-size: 14px;
  color: #000;
}

.cart-item-name a{
  font-weight: 400;
  font-family: var(--secondary-black);
  color: var(--secondary-black);

}

.cart-item-quantity {
  margin: 5px 0 0;
  font-size: 12px;
  color: #555;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin: 50px 0 22px;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--body-font);
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(7, 14, 22, 0.5);
}

.cart-subtotal span {
  font-family: var(--body-font);
  font-weight: 400;
  color: var(--secondary-black);
}

.cart-subtotal span .woocommerce-Price-amount.amount bdi,
.cart-subtotal span .woocommerce-Price-amount.amount bdi .woocommerce-Price-currencySymbol {
  font-family: var(--body-font);
  font-weight: 400;
  color: var(--primary);
}

.cart-actions {
  display: flex;
  justify-content: space-between;
}

.cart-actions a {
  text-decoration: none;
  padding: 8px 25px;
  font-size: 14px;
  font-weight: 300;
  font-family: var(--body-font);
  text-align: center;
  background: var(--white);
  color: var(--secondary-black);
  border: 1px solid var(--secondary-black);
  transition: all ease 0.5s;
}

.cart-actions a:hover{
  color: var(--white);
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.view-cart {
  background-color: #f0f0f0;
  color: #333;
}

.cart-item .remove-item {
  background: rgba(7, 14, 22, 0.1);
  padding: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-item .remove-item img.emoji {
  width: 10px !important;
  height: 10px !important;
  filter: contrast(0.2) brightness(0.9);
}

.cart-item .cart-item-thumbnail {
  border: 1px solid #e6e6e7bf;
  border-radius: 3px;
  padding: 6px;
  background: #cce0f8;
  max-width: 85px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* .checkout {
  background-color: #0071a1;
  color: #fff;
} */

.remove-item {
  /* color: red; */
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  margin-left: 10px;
}

/* hero banner form */
section.hero {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero:before {
  content: "";
  background: linear-gradient(
    90deg,
    rgba(25, 112, 225, 0) 0.47%,
    rgba(25, 112, 225, 0.77) 52.94%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-content {
  max-width: 639px;
  width: 100%;
  margin: auto;
  padding: 160px 0px 100px;
  position: relative;
}

.hero-search-container {
  margin: auto;
  filter: drop-shadow(5px 8px 25px rgb(0 0 0 / 10%));
  margin-top: 40px;
}
.hero-content h1 {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 400;
  line-height: 47px;
  text-align: center;
  color: var(--white);
  margin: 0;
}

.hero-content p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}

.hero-search-wrap {
  clip-path: polygon(94% 0, 100% 6%, 100% 100%, 0 100%, 0 0);
  background: #fff;
  padding: 32px;
}

.hero-search-wrap .boat-types {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 20px;
}

.hero-search-wrap .boat-type {
  border: 1px solid var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 20px 10px;
}

.hero-search-wrap .boat-types img {
  max-width: 110px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.hero-search-wrap .boat-types p {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--primary);
  margin: 0;
}

.hero-search-wrap .boat-type.active,
.hero-search-wrap .boat-type:hover {
  box-shadow: inset 0px 0px 0px 2px var(--primary);
  cursor: pointer;
  background: #045cb414;
}

.hero-search-wrap .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.hero-search-wrap .form-row label {
  margin: 0 0 6px;
  text-transform: capitalize;
}

.form-row label {
  width: 100%;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.form-row .form-control {
  width: 100%;
  border: 1px solid var(--primary);
  min-height: 48px;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 15px;
}
.hero-search-wrap .btn-blue {
  width: 100%;
  border: none;
  cursor: pointer;
}

select {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background-image: url(./assets/images/down-arrow.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 11px) center;
  cursor: pointer;
}

.single select {
  background-image: url(./assets/images/gray-down-arrow.png);
  font-size: 16px;
  color: #070E1680;
  font-family: var(--body-font);
  line-height: 16px;
}
/* Chrome, Safari, Edge, Opera */
.custom-number-control input::-webkit-outer-spin-button,
.custom-number-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

/* Firefox */
.custom-number-control input[type="number"] {
  -moz-appearance: textfield;
}

.custom-number-control {
  width: 100%;
  border: 1px solid var(--primary);
  min-height: 48px;
  outline: none !important;
  box-shadow: none !important;
  position: relative;
}

.form-row .custom-number-control input {
  border: none;
  padding: 0px 30px 0px 15px;
}

.custom-number-control button {
  border: none;
  background: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.custom-number-control button:active {
  background-color: #e0e0e0;
}

.custom-number-control button:disabled {
  cursor: not-allowed;
}
.control-btn {
  background-color: rgb(from var(--primary) r g b / 8%);
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.custom-number-control button:hover {
  background-color: rgb(from var(--primary) r g b / 20%);
}

.section-padding {
  padding: 100px 0px;
}

.pt-0{
  padding-top: 0 !important;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 60px;
}

.brand-row .logo-item {
  box-shadow: 5px 8px 25px 4px #0000001a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.brand-row .logo-item img {
  max-width: 180px;
  max-height: 90px;
  width: 100%;
}

.section-heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}

.section-heading h2,
.inner-privcy-wrap h1 {
  font-size: 35px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0px;
}

.section-heading p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgb(from var(--secondary-black) r g b / 50%);
  margin: 0px;
}


.product-category-slider .category-item img,
.product-category-grid .category-item img {
  max-width: 230px;
  padding: 50px;
  margin: auto;
  scale: 1;
  transition: all ease 0.5s;
  height: 230px;
  object-fit: contain;
}

.product-category-slider .category-item a:hover img {
  scale: 1.1;
}

.product-category-slider .category-img {
  box-shadow: 5px 8px 25px 4px rgb(from var(--secondary-black) r g b / 10%);
}

.product-category-slider .category-item h3 {
  margin: 0;
  font-family: var(--body-font);
  font-size: 22px;
  font-weight: 500;
  line-height: 33px;
  text-align: center;
  color: var(--white);
  background: var(--primary);
  padding: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 94% 100%, 0 100%);
}

.owl-nav button {
  box-shadow: 5px 8px 25px 4px #0000001a;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 13px);
  left: 0px;
  background-color: var(--white) !important;
}
.owl-nav button:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}

.owl-nav button.owl-next {
  left: auto;
  right: 0;
}

.owl-nav button i {
  font-size: 9px;
}

.ourproducts-wrap{
  background-repeat: no-repeat;
  background-size: cover;
}

.product-category-slider .owl-nav button.owl-prev {
  left: -50px;
}

.product-category-slider .owl-nav button.owl-next {
  right: -50px;
}

/* Products */

.custom-product-grid,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.woocommerce ul.products::before{
  display: none;
}

.custom-product-grid .product-item {
  position: relative;
  background: var(--white);
  clip-path: polygon(94% 0, 100% 6%, 100% 100%, 0 100%, 0 0);
}

ul.products li.product {
  list-style: none;
  position: relative;
  height: 100%;
  box-shadow: 5px 8px 25px 4px rgb(from var(--secondary-black) r g b / 10%);
}

ul.products li.product .woocommerce-LoopProduct-link.woocommerce-loop-product__link{
  position: relative;
  display: block;
  height: 100%;
}

ul.products li.product .woocommerce-LoopProduct-link.woocommerce-loop-product__link:before,
ul.wc-block-grid__products li.wc-block-grid__product:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #045CB4;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.5s;
}

ul.products li.product a img,
.woocommerce ul.products li.product a img,
ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-image img {
  object-fit: contain;
  height: 250px;
  width: 250px;
  max-width: 100%;
  padding: 30px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.woocommerce ul.products li.product {
  margin: 0;
  width: 100%;  
}



ul.products li.product a h2.woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 20px;
  font-family: var(--body-font);
  font-weight: 500;
  padding: 40px 30px 0;
  border-top: 1px solid #070e161a;
  margin: 0 0 15px;
}

ul.products li.product a span.price,
.woocommerce ul.products li.product .price{
  font-size: 18px;
  display: block;
  color: var(--secondary-black);
  padding: 0 30px 30px;
  margin: 0;
}

ul.products li.product a.button.product_type_simple.add_to_cart_button {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  padding: 12px 52px;
  line-height: normal;
  border-radius: 0;
  background: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
  margin: 0;
}

ul.products li.product a.added_to_cart.wc-forward {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  padding: 12px 52px;
  line-height: normal;
  border-radius: 0;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
}

ul.products li.product a.button.product_type_simple.add_to_cart_button:hover{
  background: var(--primary-hover);
  color: var(--white);
}

ul.products li.product:hover .woocommerce-LoopProduct-link.woocommerce-loop-product__link:before,
ul.wc-block-grid__products li.wc-block-grid__product:hover:before {
  visibility: visible;
  opacity: 37%;
}

ul.products li.product:hover a.button.product_type_simple.add_to_cart_button,
ul.wc-block-grid__products li.wc-block-grid__product:hover .wc-block-grid__product-add-to-cart a.wp-block-button__link.add_to_cart_button.ajax_add_to_cart{
  opacity: 1;
  visibility: visible;
}

.showmore-btn{
  margin-top: 65px;
}

.showmore-btn .btn-blue {
  color: var(--white);
  text-transform: capitalize;
  background: transparent;
  border: 2px solid var(--white);
  min-width: 200px;
}

.showmore-btn .btn-blue:hover{
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
}

.worldwide,
.content-image,
.testimonial,
.common-banner,
.contact-benefits{
  background-repeat: no-repeat;
  background-size: cover;
}

.worldflag-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.worldflag-slider {
  position: relative;
  margin-top: 100px;
}

.worldflag-slider::before {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 14.01%, rgba(255, 255, 255, 0) 87.87%, #FFFFFF 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.worldflag-item img {
  width: 100%;
}

.contentimage-row {
  display: flex;
  flex-direction: column;
  row-gap: 120px;
}

.imagecontent-card {
  display: flex;
  align-items: stretch;
}

.imagecontent-card .cont-description {
  padding: 60px 60px;
  background: var(--white);
  clip-path: polygon(94% 0, 100% 6%, 100% 100%, 0 100%, 0 0);
}

.imagecontent-card.imagecontent-cardreverse .cont-description {
  clip-path: polygon(0 6%, 6% 0, 100% 0, 100% 100%, 0 100%);
}

.contimg,
.cont-description{
  width: 50%;
}

.contimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imagecontent-card.imagecontent-cardreverse {
  flex-direction: row-reverse;
}

.imagecontent-card .cont-description h3 {
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.imagecontent-card .cont-description p {
  font-size: 16px;
  color: rgb(7, 14, 22, .5);
  margin: 0 0 24px;
}

.benefits-row {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
}

.home .benefits-row {
  grid-template-columns: repeat(5, 1fr);
}


.benefits-card h4 {
  font-size: 20px;
  font-family: var(--body-font);
  font-weight: 600;
  color: var(--secondary-black);
  margin: 24px 0 8px;
}

.benefits-card p {
  margin: auto;
  font-size: 14px;
  font-weight: 400;
  color: var(--primary);
}

.hardwork{
  background: var(--primary);
}

.hardwork .section-heading h2 {
  text-transform: capitalize;
}

.hardwork .section-heading p {
  color: var(--white);
}

.hardwork-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.hardwork-card span.line {
  display: inline-block;
  width: 70px;
  height: 3px;
  background: var(--white);
}

.hardwork-card h3 {
  font-size: 40px;
  margin: 30px 0;
}

.hardwork-card p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.experience .section-heading {
  margin: 0;
  gap: 0;
}

.experience .section-heading h2 {
  color: var(--primary);
}

.experience .section-heading p {
  color: var(--secondary-black);
  margin: 24px 0 40px;
}

.experience .section-heading a {
  width: max-content;
  margin: 0 auto;
}

.testimonial-card {
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  background: var(--white);
  box-shadow: 9px 13px 60px 4px #0000000A;
  max-width: 1020px;
  margin: 0 auto;
}

.testimonial .section-heading {
  margin-bottom: 60px;
}

.testimonial .owl-dots button.owl-dot{
  display: flex;
}

.testimonial .owl-dots button.owl-dot span {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
}

.testimonial .owl-dots button.owl-dot.active span{
  width: 16px;
  height: 16px;
  background: var(--white);
}

.testimonial .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-row .owl-nav button.owl-prev {
  left: 180px;
}

.testimonial-row .owl-nav button.owl-next {
  right: 180px;
}

.reviewer-profile {
  max-width: 200px;
  width: 100%;
}

.reviewer-description {
  width: calc(100% - 200px);
  position: relative;
  padding-left: 90px;
}

.reviewer-profile img {
  max-width: 98px;
  height: 98px;
  border-radius: 50%;
  margin: 0 auto;
}

.reviewer-profile p{
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-black);
  margin: 30px 0 0;
}

.testimonial-row  .reviewer-description .quote {
  position: absolute;
  object-fit: contain;
  width: 100px;
  height: 100px;
  top: -25px;
  left: 0;
}

.reviewer-description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(7, 14, 22, 0.5);
  text-align: justify;
}

/* Home Blog */
.blognews-row .latest-posts{
  display: grid;
  gap: 100px;
  grid-template-columns: repeat(3, 1fr);
}

.blog-news .section-heading {
  margin-bottom: 60px;
}

.blognews-row .latest-posts .post-item .post-thumbnail {
  height: 320px;
}

.blognews-row .latest-posts .post-item .post-thumbnail a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blognews-row .latest-posts .post-info {
  background: var(--primary);
  padding: 40px 32px;
  clip-path: polygon(0 10%, 6% 0, 100% 0, 100% 100%, 0 100%);
  width: 95%;
  margin-left: auto;
  margin-top: -120px;
}

.blognews-row .latest-posts .post-info h2{
  margin: 0;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  font-size: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.blognews-row .latest-posts .post-info h2 a {
  font-size: 18px;
  line-height: 135%;
  font-family: var(--body-font);
  font-weight: 500;
  color: var(--white);
}

.blognews-row .latest-posts .post-info p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, .7);
  text-transform: capitalize;
  margin: 16px 0 14px;
}

.blognews-row .latest-posts .post-info>a {
  color: var(--white);
  font-size: 14px;
}

.blognews-row .latest-posts .post-info>a img {
  margin-left: 5px;
  transition: 0.3s;
}

.blognews-row .latest-posts .post-info>a:hover img {
  transform: translate(2px, 0);
}

/* Footer */
footer{
  background: linear-gradient(11.19deg, #1970E1 6.8%, #0A3F83 49.44%);
}

.footer-row {    
  display: flex;
  justify-content: space-between;
  padding: 95px 0 60px;
}

.footer-bottom {
  border-top: 1px solid #fff;
}

.footer-bottom p {
  margin: 0;
  padding: 23px;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.footer-left {
  width: 25%;
}

.footer-right {
  width: 45%;
}

.footer-left p {
  margin: 35px 0 0;
}

.footer-left a img {
  max-width: 101px;
  width: 100%;
}

.footer-right ul.nav-list li a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.footer-right ul.nav-list li a:hover {
  opacity: 70%;
}

.footer-right ul.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-right ul.nav-list li {
  width: calc(50% - 11px);
}

.footer-right {
  display: flex;
  justify-content: space-between;
}

.social-icons h4 {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--body-font);
  margin: 0 0 24px;
}

.social-icons ul {
  display: flex;
  align-items: center;
  gap: 12px;
}

.common-banner{
  position: relative;
  margin-top: 86px;
}

.common-banner .hero-content {
  padding: 200px 0;
}

.common-banner::before{
  position: absolute;
  content: "";
  background: rgba(25, 112, 225, 0.5);
  width: 100%;
  height: 100%;
  inset: 0;
}

ul.breadcrumb {
  display: flex;
  justify-content: center;
  margin: 24px 0 0;
  gap: 10px;
}

ul.breadcrumb li,
ul.breadcrumb li a{
  font-size: 18px;
  color: var(--white);
}

ul.breadcrumb li{
  font-weight: 400;
}

ul.breadcrumb li a {
  font-weight: 700;
  display: flex;
  gap: 8px;
  align-items: center;
}

.contact-benefits .section-heading p,
.contact-benefits .benefits-card h4,
.contact-benefits .benefits-card p {
  color: var(--white);
}

.contact-form .section-heading p {
  max-width: 700px;
  margin: 0 auto;
}

.contact-row {
  display: flex;
  /* max-width: 1130px; */
  max-width: 746px;
  width: 100%;
  margin: 0 auto;
  /* gap: 120px; */
  gap: 70px;
  flex-direction: column;
  align-items: center;
}

.contact-left .contact-infocard:last-child {
  margin: 0;
}

.contact-left {
  background: var(--primary);
  padding: 10px 20px;
  max-width: 530px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  /* flex-direction: column; */
  gap: 40px;
  border-radius: 10px;
}

/* .contact-right {
  width: calc(100% - 384px);
} */

.contact-infocard {
  display: flex;
  gap: 15px;
  align-items: center;
  /* margin: 0 0 60px; */
}

.contact-info p {
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
  margin: 0;
}

.contact-info span a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 24px;
  /* margin: 18px 0 0; */
  white-space: normal;
  word-break: break-all;
  display: inline-block;
}

label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 18px;
  display: inline-block;
}

.woocommerce-form-row input,
.form-control {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--body-font);
  line-height: 24px;
  padding: 20px 30px;
  width: 100%;
  color: var(--secondary-black);
  border: 1px solid rgba(7, 14, 22, 0.5);
}

.form-control::placeholder{
  color: rgba(7, 14, 22, 0.5);
}

.form-control:focus-visible{
  outline: 0;
}

.form-outer p {
  margin: 0;
}

.form-outer{
  margin: 0 0 36px;
}

.wpcf7-form-control-wrap {
  position: relative;
  width: 100%;
  display: inline-block;
}

textarea.form-control {
  max-height: 100px;
  height: 100% !important;
  resize: vertical;
}

.form-btn {
  position: relative;
  display: inline-block;
}

.form-btn p {
  margin: 0;
}

.wpcf7-form-control.wpcf7-submit {
  font-family: var(--body-font);
    background: var(--primary);
    color: var(--white);
    padding: 13px 60px;
    text-decoration: none;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    display: inline-block;
    position: relative;
    transition: all 0.5s linear;
    border: 0;
    cursor: pointer;
}

.wpcf7-form-control.wpcf7-submit:hover {
  background: var(--primary-hover);
}

span.wpcf7-spinner {
  position: absolute;
  margin: 0;
  right: 8px;
  top: 12px;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  position: absolute;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 15px;
  border: 0;
  padding: 0;
  margin: 20px 0 0;
}

.wpcf7-form.invalid .wpcf7-response-output{
  color: #dc3232;
}

.contact-right .form-group {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

/* Blog */
.blogcontent-wrap{
  padding: 120px 0;
}

.blogcontent-wrap .row {
  display: flex;
  gap: 200px;
}

.blogcontent {
  width: calc(100% - 425px);
}

.blog-sidebar {
  max-width: 425px;
  width: 100%;
}

.blog-post .post-thumbnail img.wp-post-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.blog-post {
  margin-bottom: 54px;
}

.blog-post .post-title a{
  font-size: 28px;
  font-weight: 400;
  color: var(--secondary-black);
  margin: 24px 0 28px;
}

.post-excerpt {
  font-size: 18px;
  font-weight: 400;
  color: rgba(7, 14, 22, 0.5);
  line-height: 150%;
  margin-bottom: 15px;
  text-align: justify;
}

.blog-post .read-more {
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-black);
  position: relative;
}

.blog-post .read-more::before {
  position: absolute;
  content: "";
  background: var(--secondary-black);
  width: 100%;
  height: 1px;
  bottom: -12px;
  left: 10px;
}

.blog-post .post-meta {
  margin-top: 10px;
}

.blog-post .post-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
}

.blog-post .post-meta span,
.blog-post .post-meta span a{
  color: rgba(7, 14, 22, 0.5);
}

.blog-post .post-meta {
  margin-top: 10px;
  display: flex;
  gap: 25px;
}

.pagination .nav-links .page-numbers {
  font-size: 20px;
  font-weight: 400;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(25, 112, 225, 0.08);
  color: var(--secondary-black);
  transition: all ease 0.5s;
}

.pagination .nav-links .page-numbers.next.page-numbers {
  width: 80px;
}

.pagination .nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 38px;
}

.pagination .nav-links .page-numbers.current{
  background: var(--primary);
  color: var(--white);
}

.pagination .nav-links .page-numbers:hover{
  background: var(--primary-hover);
  color: var(--white);
}

.widget.widget_search div {
  position: relative;
}

.widget.widget_search div::before {
  position: absolute;
  content: "";
  background: url(assets/images/secarch.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 19px;
  top: 18px;
  right: 18px;
  cursor: pointer;
}

.widget.widget_search div input {
  border: 1px solid rgba(7, 14, 22, 0.5);
  border-radius: 10px;
  padding: 12px 20px;
  width: 100%;
  height: 58px;
  font-size: 16px;
}

.widget.widget_search input#searchsubmit {
  background: transparent;
  font-size: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 0;
  position: absolute;
  right: 10px;
  top: 18px;
  cursor: pointer;
}

h3.widget-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  font-family: var(--body-font);
  margin: 0 0 36px;
}

.widget.widget_categories {
  position: relative;
  padding-left: 30px;
  margin: 60px 0 150px;
}

.widget.widget_categories::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 7px;
  background: var(--primary);
  left: 0;
}

.widget.widget_categories ul li.cat-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(25, 112, 225, .1);
}

.widget.widget_categories ul li.cat-item:last-child{
  border-bottom: 0;
}

.widget.widget_categories ul li.cat-item a{
  font-size: 18px;
  font-weight: 400;
  color: var(--secondary-black);
}

.widget_custom_recent_posts_widget ul.custom-recent-posts li.recent-post-item .recent-post-link {
  display: flex;
  gap: 12px;
  align-items: center;
}

.custom-recent-posts li.recent-post-item a.recent-post-link .recent-post-thumbnail {
  max-width: 80px;
  width: 100%;
  height: 80px;
  overflow: hidden;
  border-radius: 10px;
}

.custom-recent-posts li.recent-post-item a.recent-post-link .recent-post-thumbnail img.wp-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-content .recent-post-title {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--body-font);
  color: var(--secondary-black);
  margin: 0 0 5px;
}

.recent-post-content span.recent-post-date {
  font-size: 12px;
  color: rgba(7, 14, 22, 0.5);
  font-weight: 400;
}

.custom-recent-posts li.recent-post-item:not(:last-child) {
  margin-bottom: 40px;
}

/* Tutorial */

.video-container {
  position: relative;
  width: 100%;
  margin: 60px 0;
}
video {
  width: 100%;
  height: auto;
}
.play-button, .pause-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.pause-button {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.video-container:hover .pause-button{
  visibility: visible;
  opacity: 1;
}

.tutorial-contentrow h3 {
  font-size: 28px;
  color: var(--primary);
  margin: 0 0 20px;
}

.tutorial-contentrow p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(7, 14, 22, 0.5);
  margin: 0 0 30px;
}

.comn-head{
  color: var(--white);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 24px;
}

.tutorialimg-content{
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 27px;
  text-align: justify;
  background-size: cover;
  background-repeat: no-repeat;
}

.tutorialimg-card {
  display: flex;
  gap: 100px;
  align-items: center;
}

.tutorialimg,
.tutorial-description{
  width: 50%;
}

.tutorialcard-reverse{
  flex-direction: row-reverse;
}

.tutorialimg-content-row{
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.tutorialimg-content-row p{
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: justify;
}

.tutorialimg img{
  width: 100%;
  object-fit: cover;
}

/* Faq */
.faq-row {
  width: 90%;
  margin: 0 auto;
}

.acc {
  margin: 0 auto 0;
  width: 100%;
}

.acc__card {
  position: relative;
  padding: 50px 0;
  border-bottom: 1px solid #1970e15e;
}
.acc__card:first-child {
  padding-top: 0;
}

.acc__card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.acc__title {
  cursor: pointer;
  display: block;
  position: relative;
  font-size: 20px;
  font-weight: 400;
  /* margin: 0 0 22px; */
  padding: 0 60px;
  color: var(--secondary-black);
}

.acc__title::after {
  width: 26px;
  height: 26px;
  background: url(assets/images/plus.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 60px;
  content: " ";
  top: 6px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.acc__title.active::after {
  background: url(assets/images/minus.svg) no-repeat;
  background-size: contain;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.acc__panel {
  font-size: 18px;
  font-weight: 400;
  display: none;
  margin: 22px 0 0;
  padding: 28px 60px;
  color: rgba(7, 14, 22, 0.5);
  line-height: 140%;
  background: rgba(25, 112, 225, 0.08);
}

/* Single Blog */
.singleblg-row h1 {
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
  margin: 50px 0 0;
}

.related-blg-post .section-heading {
  text-align: left;
}

.related-blg-post .blognews-row .post-info {
  background: var(--white)
}

.related-blg-post .blognews-row .latest-posts .post-info h2 a{
  color: var(--secondary-black);
}

.related-blg-post .blognews-row .latest-posts .post-info p{
  color:  rgba(7, 14, 22, .7);
}

.related-blg-post .blognews-row .latest-posts .post-info>a{
  color: var(--secondary-black);
}

.related-blg-post .blognews-row .latest-posts .post-info>a img {
  filter: invert(1);
}

a.back-btn {
  font-size: 18px;
  font-weight: 400;
  color: rgba(7, 14, 22, 0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

a.back-btn img {
  max-width: 6px;
}

.read-time{
  font-size: 18px;
  font-weight: 400;
  color: rgba(7, 14, 22, 0.5);
  margin: 0;
}

.blg-date{
  font-size: 22px;
  font-weight: 400;
  color: rgba(7, 14, 22, 0.5);
  margin: 20px 0 6px;
}

.singleblog-img-content {
  display: flex;
  gap: 64px;
  padding-top: 60px;
}

.singleblg-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: justify;
  color: rgba(7, 14, 22, 0.5);
  margin: 0 0 30px;
}

.singleblg-content {
  width: calc(100% - 550px);
}

.singleblg-content hr {
  margin: 0;
  display: none;
}

.singleblg-content h2 {
  margin-top: 0;
  font-size: 20px;
}

.singleblg-content ul,
.singleblg-content ol {
  padding-left: 30px;
  margin: 20px 0 30px;
}

.singleblg-content ul li,
.singleblg-content ol li {
  list-style: disc;
  color: rgba(7, 14, 22, 0.5);
  font-size: 16px;
}

.singleblg-content ol li {
  list-style: auto;
}

.singleblg-content blockquote {
  margin-left: 0;
  margin-right: 0;
}

.singleblg-content h5,
.singleblg-content h6,
.singleblg-content h4,
.singleblg-content h3 {
  font-size: 22px;
  margin-top: 0;
}

.singleblg-image {
  width: 550px;
}

.singleblg-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}

.singleblg-content img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  margin: 25px 0;
}

/* Privacy Policy */
.privacy-policy,
.single-blog{
  margin-top: 86px;
}

.inner-privcy-wrap {
  background: var(--white);
  padding: 100px 100px;
}

aside.toc:before {
  position: absolute;
  content: "";
  background: var(--primary);
  width: 5px;
  height: 45%;
  top: 6px;
  left: 0;
}

.privacy-row {
  display: flex;
  padding-top: 120px;
  gap: 150px;
}

.privacy-content {
  width: calc(100% - 350px);
}

aside.toc {
  width: 100%;
  max-width: 350px;
  position: sticky;
  top: 110px;
  height: 100%;
  padding-left: 20px;
}

aside.toc h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 30px;
  margin: 0 0 50px;
}

aside.toc ul{
  padding-left: 18px;
}

aside.toc ul li {
  margin: 0 0 22px;
  list-style: disc;
}

aside.toc ul li a{
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: var(--secondary-black);
}

aside.toc ul li.active a,
aside.toc ul li.active{
  color: var(--primary);
}

.privacy-content h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 24px;
}

.privacy-content div p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(7, 14, 22, 0.5);
  margin: 0;
  text-align: justify;
}

.privacy-content div{
  margin: 0 0 60px;
}

/* Single Product */
.single-product .common-banner,
.page-template-privacy-policy .common-banner,
.page-template-single-blog .common-banner,
.woocommerce-account .common-banner{
  display: none;
}

.single-product .site-main {
  padding-top: 80px;
}

.summary.entry-summary .product_title {
  font-size: 26px;
  line-height: 28px;
  font-weight: 400;
  color: var(--secondary-black);
  margin-bottom: 12px;
}

.summary.entry-summary .price span.woocommerce-Price-amount.amount bdi{
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: var(--primary);
  margin: 12px 0 26px;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper {
  border-top: 0.8px solid #045CB414;
  padding-top: 60px;
  margin-top: 60px;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs {
  padding: 0;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li {
  background: unset;
  border: 0;
  border-radius: 0;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs::before{
  display: none;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li a{
  font-size: 22px;
  font-weight: 400;
  color: #070E1680;
  padding: 0;
  transition: all 0.5s linear;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li.reviews_tab{
  display: none;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover{
  color: var(--primary-hover);
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel h2 {
  display: none;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel p,
.woocommerce-Tabs-panel ul li,
.woocommerce-Tabs-panel div,
.woocommerce-Tabs-panel{
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  color: #070E1680;
  text-align: justify;
}

.single-product nav.woocommerce-breadcrumb {
  margin: 0;
  padding: 60px 0;
  font-size: 18px;
  color: var(--primary);
}

.single-product .related.products .section-heading {
  text-align: left;
}

.single-product nav.woocommerce-breadcrumb a {
  font-size: 16px;
  font-weight: 400;
  color: rgba(7, 14, 22, 0.5);
}

.woocommerce-product-details__short-description p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(7, 14, 22, 0.5);
  line-height: 24px;
}

/* Cart Page */
.woocommerce-cart .wp-block-woocommerce-cart {
  padding: 100px 0;
}

.woocommerce-cart .wp-block-woocommerce-cart table.wc-block-cart-items thead tr.wc-block-cart-items__header th span,
.woocommerce-cart .wp-block-woocommerce-cart-order-summary-block span.wc-block-cart__totals-title {
  font-size: 22px;
  font-weight: 600;
}

.woocommerce-cart .wp-block-woocommerce-cart table.wc-block-cart-items,
.woocommerce-cart .wc-block-cart{
  margin-bottom: 0 !important; 
}

.woocommerce-cart .wp-block-woocommerce-cart table.wc-block-cart-items tr.wc-block-cart-items__row td.wc-block-cart-item__product {
  padding-left: 40px;
}


.is-large .wc-block-components-sidebar .wc-block-components-totals-item{
  padding-left: 0;
  padding-right: 0;
}

.woocommerce-cart .wp-block-woocommerce-cart table.wc-block-cart-items tr.wc-block-cart-items__row td.wc-block-cart-item__product button.wc-block-cart-item__remove-link {
  font-size: 14px;
  text-decoration: none;
  color: var(--secondary-black);
}

.woocommerce-cart .wp-block-woocommerce-cart table.wc-block-cart-items tr.wc-block-cart-items__row td.wc-block-cart-item__product button.wc-block-cart-item__remove-link:hover {
  color: var(--primary-hover);
}

.woocommerce-cart .wc-block-cart__submit a.wc-block-components-button.wp-element-button {
  background: var(--primary);
  margin-top: 40px;
}

.woocommerce-cart .wc-block-cart__submit a.wc-block-components-button.wp-element-button:hover{
  color: var(--primary-hover);
}

.woocommerce-cart .wc-block-cart__submit a.wc-block-components-button.wp-element-button span.wc-block-components-button__text {
  color: var(--white);
}

.woocommerce-cart .wc-block-cart__empty-cart__title.with-empty-cart-icon:before{
  display: none;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block h2.wp-block-heading.with-empty-cart-icon{
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 50px;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block hr:before{
  display: none;
}

/* New Product */
.wp-block-product-new{
  margin-top: 50px;
}
ul.wc-block-grid__products {
  gap: 1%;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin: 0;
}

ul.wc-block-grid__products li.wc-block-grid__product{
  box-shadow: 5px 8px 25px 4px rgb(from var(--secondary-black) r g b / 10%);
  border: 0;
  flex: 1 0 24% !important;
  max-width: 24% !important;
}

ul.wc-block-grid__products li.wc-block-grid__product a{
  display: block;
}

ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-image{
  margin: 0;
}

ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-image img{
  position: relative;
  z-index: -1;
}

ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-title {
  font-size: 20px;
  font-family: var(--body-font);
  font-weight: 500;
  padding: 40px 30px 0;
  border-top: 1px solid #070e161a;
  margin: 0 0 15px;
  text-align: left;
}

ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-price.price{
  font-size: 18px;
  display: block;
  color: var(--secondary-black);
  padding: 0 30px 30px;
  margin: 0;
  text-align: left;
}

ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-add-to-cart{
  margin: 0;
}

ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-add-to-cart a.wp-block-button__link.add_to_cart_button.ajax_add_to_cart{
  font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    padding: 12px 52px;
    line-height: normal;
    border-radius: 0;
    background: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.5s;
    margin: 0;
}

.wp-block-woocommerce-empty-cart-block h2.wp-block-heading {
  text-transform: uppercase;
}

/* Shop */
.product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 105px;
}

.product-category .category-item {
  background: var(--white);
  /* box-shadow: 5px 8px 25px 4px rgb(from var(--secondary-black) r g b / 10%); */
}

.product-category .category-item-inner{
  clip-path: polygon(88% 0, 100% 12%, 100% 100%, 0 100%, 0 0);
}

.product-category .category-item-inner a{
  padding: 52px;
  display: block;
}

.product-category .category-item-inner a:hover img{
  scale: 1.1;
}

.product-category .category-item-inner img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 auto !important;
  text-align: center;
}

.product-category .category-item-inner h3 {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--body-font);
  color: var(--secondary-black);
  margin: 20px 0 0;
}

.products-desc-content .products-desc-content-row p {
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  margin: 0 0 10px;
}

.products-desc-content-row img {
  margin: 60px 0;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.products-desc-content-row h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 25px;
}

/* My Account */

.woocommerce-account .heading {
  font-size: 35px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 130%;
  margin: 0 0 20px;
}

.myacc-wrapper {
  max-width: 650px;
  margin: 0 auto 0;
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
  top: 1.2em;
}

input#rememberme {
  width: 16px;
  height: 16px;
  position: relative;
  top: 2px;
}

.woocommerce form .form-row label {
  line-height: 1.4;
}

.myacc-wrapper button.btn-blue {
  margin: 0;
  border: 0;
  padding: 14px 40px;
  cursor: pointer;
}

.myacc-wrapper .lost_reset_password {
  border: 1px solid #cfc8d8;
  padding: 20px;
  margin: 2em 0;
  text-align: left;
  border-radius: 5px;
}

.myacc-wrapper .lost_reset_password button.btn-blue{
  margin-top: 30px;
}

.myacc-wrapper .lost_reset_password .form-row-first{
  width: 100%;
  margin-top: 25px;
}

/* Dashboard */

.woocommerce-account .woocommerce-MyAccount-navigation{
  width: 25%;
}

.woocommerce-account .woocommerce{
  margin-top: 87px;
}

.logged-in.woocommerce-account .woocommerce,
.woocommerce-account .woocommerce{
  padding: 100px 0;
}

.logged-in.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation {
  padding: 35px;
  background: var(--primary);
  border-radius: 5px;
}

.logged-in.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li:not(:last-child) {
  padding-bottom: 20px;
}

.logged-in.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li a {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  transition: 0.5s ease;
}

.logged-in.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li a:hover {
  color: #eae6e6;
}

.logged-in.woocommerce-account .addresses .title .edit {
  float: left;
  margin-bottom: 20px;
}

/*  */
.woocommerce-loop-category__title {
  color: var(--Secondary-black, #070E16);
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  font-family: var(--body-font);
  text-align: center;
}

.woocommerce-loop-category__title mark.count {
  display: none;
}

.post-type-archive.woocommerce ul.products,
.tax-product_cat.wc-parent-category ul.products
{
  gap: 103px;
  grid-template-columns: repeat(3, 1fr);
}
.post-type-archive.woocommerce ul.products li.product .woocommerce-loop-category__title,
.archive.tax-product_cat.woocommerce.wc-parent-category ul.products li.product .woocommerce-loop-category__title {
  padding-bottom: 42px;
}
.archive.post-type-archive .content-area {
  padding: 100px 0;
}
.archive .woocommerce-products-header__title.page-title {
  margin-bottom: 70px;
  text-transform: uppercase;
  text-align: center;
}
.archive nav.woocommerce-breadcrumb {
  display: none;
}
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.post-type-archive .directors-filter,
.wc-parent-category .directors-filter {
  display: none;
}
/* search css */
.search {
  position: relative;
  color: #000;
  font-size: 16px;
  display: inline-block;
}

.search input {
  width: 245px;
  height: 38px;
  text-indent: 21px;
  background: var(--white, #FFFFFF);
  border: 0;
}

.search .fa-search {
  position: absolute;
  top: 10px;
  left: 10px;
  left: auto;
  right: 10px;
}
.directors-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1970E114;
  padding: 31px;
  margin-bottom: 60px;
  /* margin-top: 60px; */
}
.directors-filter .right-filter {
  display: flex;
  align-items: center;
}
.directors-filter ul.list_ui {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
  align-items: center;
  line-height: 0;
}
.search input::placeholder {
  font-size: 12px;
  color: var(--Secondary-black, #070E16);
  opacity: 50%;
}
.search input:focus-visible {
  outline: 0;
}
/* checkout css */
.woocommerce-checkout h2.wc-block-components-title.wc-block-components-checkout-step__title {
  font-family: var(--heading-font);
  font-size: 35px;
  font-weight: 400;
  line-height: 38.08px;
  text-transform: uppercase;
  color: var(--Secondary-black, #070E16);
}

.wc-block-components-form .wc-block-components-text-input input[type=email],
.wc-block-components-form .wc-block-components-text-input input[type=number],
.wc-block-components-form .wc-block-components-text-input input[type=password],
.wc-block-components-form .wc-block-components-text-input input[type=tel],
.wc-block-components-form .wc-block-components-text-input input[type=text],
.wc-block-components-form .wc-block-components-text-input input[type=url],
.wc-block-components-text-input input[type=email],
.wc-block-components-text-input input[type=number],
.wc-block-components-text-input input[type=password],
.wc-block-components-text-input input[type=tel],
.wc-block-components-text-input input[type=text],
.wc-block-components-text-input input[type=url],
.wc-blocks-components-select .wc-blocks-components-select__container {
  background-color: #fff;
  border-radius: 0 !important;
  color: #2b2d2f;
  font-size: 16px;  
  width: 100%;
  border: 1px solid #070E1680 !important;
}
button.wc-block-components-button.wc-block-components-checkout-place-order-button {
  background: var(--Primary, #1970E1);
  border-radius: 4px;
  border: 0;
  padding: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--white);
  font-family: var(--body-font);
}

.woocommerce-checkout .wp-block-woocommerce-checkout {
  padding-top: 120px;
}

.woocommerce-checkout .form-row .apply_custom_coupon {
  background: var(--Primary, hsl(214deg 80% 49% / 50%));
  color: var(--white);
  font-size: 16px;
  font-family: var(--body-font);
  border: 0;
  padding: 16px 24px;
  max-width: 236px;
  width: 100%;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
}

.coupon-code-wrapper {
  display: flex;
  gap: 18px;
}

.coupon-code-wrapper .form-row.form-row-first {
  max-width: calc(100% - 255px);
  width: 100%;
  margin-bottom: 20px;
}

.coupon-code-wrapper .form-row.form-row-last {
  margin-bottom: 20px;
}

.woocommerce-checkout .form-row input.custom_coupon_code {
  border: 1px solid var(--Secondary-black, #070E16) !important;
  opacity: 30%;
  background: #045CB414;
  padding: 16px 24px !important;
  height: 56px !important;
}
.wp-block-woocommerce-checkout-order-summary-subtotal-block span {
  font-size: 16px;
}

.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-subtotal-block.wc-block-components-totals-wrapper span {
  font-weight: 400;
  opacity: 70%;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-weight: 600;
  font-size: 16px;
}

.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-totals-footer-item-tax-value {
  font-size: 24px;
  font-weight: 500;
  color: var(--Primary, #1970E1);
}
.wc-block-components-totals-coupon__form label {
  color: var(--Secondary-black, #070E16);
  opacity: 30%;
}
.wc-block-components-form .wc-block-components-text-input,
.wc-block-components-text-input {
  margin-top: 36px;
}
.post-type-archive section.products-desc-content {
  display: none;
}

.tax-product_cat ul.products.active img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail,
.tax-product_cat.wc-parent-category ul.products.active a img {
  margin: 0 !important;
  float: left;
}

.tax-product_cat.wc-parent-category ul.products.active>a{
  height: 100%;
  display: block;
}

.tax-product_cat.wc-parent-category  ul.products.active h2.woocommerce-loop-category__title {
  text-align: left;
  height: 100%;
  display: flex;
  align-items: center;
  padding-bottom: .5rem !important;
}

.archive.tax-product_cat ul.products.active {
  display: grid;
  grid-template-columns: 1fr;
}

/* single blog page */
.single-blog {
  padding-top: 80px;
}

.single-blog-content {
  padding: 80px 0;}

.faq-row {
  width: 100%;
}
.single-blog-content h2 {
  font-size: 22px;
}
.single-blog-content h1 {
  font-size: 28px;
  margin-top: 0;
}
.single-blog-content p, .single-blog-content li {
  font-weight: 400;
  color: #070E1680;
}

.single.single-post .common-banner {
  display: none;
}
.woocommerce ul.products li.product a.button.product_type_variable {
  background: #599beb;
  font-weight: 500;
  width: 100%;
  text-align: center;
  /* max-width: fit-content;
  transform: translatex(50%); */
  color: #fff;
  border-radius: 0;
}
.tax-product_cat.wc-sub-category .products-desc-content {
  display: none;
}
/* 
.wc-sub-category .directors-filter-section{
  margin-top: 80px;
} */

/* .wc-sub-category ul.products {
  padding-bottom: 80px;
} */

.archive.tax-product_cat ul.products.active li.product a img {
  height: 140px;
}

a.btn svg.grid-active-btn,
a.btn svg.list-active-btn,
a.btn.list-btn.active svg.list-deactive-btn,
a.btn.grid-btn.active svg.grid-deactive-btn
 {
  display: none;
}

a.btn.list-btn.active svg.list-active-btn,
a.btn.grid-btn.active svg.grid-active-btn {
  display: block;
}

/* new checkout css */
.woocommerce-checkout .comman_defaultpage {
  padding: 80px 0px;
}
.woocommerce-checkout .checkout {
  color: var(--Secondary-black, #070E16); 
  font-family: var(--body-font);  
}
.woocommerce-checkout .woocommerce .form-row label {
  font-size: 16px;
  line-height: 24px;
  font-family: var(--body-font);
  font-weight: 400;
  margin-bottom: 22px;
  font-weight: 500;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border: 1px solid #070E1680;
  height: 75px;
  padding: 26px 30px;
}
.woocommerce form .form-row {
  padding: 0;
  margin: 0 0 36px;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .select2-selection--single {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  outline: 0;
  line-height: normal;
  border: 1px solid #070E1680;
  height: 70px;
  padding: 26px 30px;
  border-radius: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 74px;
  top: 0;
  right: 15px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal;
  color: #070E1680;
}
.woocommerce-checkout input,
.woocommerce-checkout ::placeholder {
  font-size: 16px;
  color: #070E1680;
  font-weight: 400;
  font-family: 'Poppins';
}
.woocommerce-billing-fields h3 {
  text-transform: uppercase;
  font-size: 35px;
  line-height: 38px;
  font-weight: 400;
}
.woocommerce-checkout .woocommerce .col2-set .col-1,
.woocommerce-checkout.woocommerce-page .col2-set .col-1 {
  width: 100%;
}
.woocommerce table.shop_table th {
  padding: 14px 0;
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
}
.woocommerce table.shop_table {
  border: 0;
}
.woocommerce table.shop_table td {
  border-top: 0;
  padding: 9px 0;
  color: hsl(212deg 51.72% 5.69% / 70%);
}
.contact-form .section-heading {
  margin-bottom: 40px;
}

.woocommerce-checkout .cart-subtotal {
  margin: 20px 0 14px;
  padding: 0;
  border: 0;
}

.woocommerce-checkout .woocommerce table.shop_table td {
    padding: 9px 0 20px;
}

.woocommerce-checkout .woocommerce table.shop_table tbody th,
.woocommerce-checkout .woocommerce table.shop_table tfoot td,
.woocommerce-checkout .woocommerce table.shop_table tfoot th {
  padding: 0;
  border: 0;
}

.woocommerce-checkout .woocommerce table.shop_table tfoot td,
.woocommerce-checkout .woocommerce table.shop_table tfoot th {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--Secondary-black, #070E16);
  opacity: 70%;
}

.woocommerce-checkout .woocommerce table.shop_table tfoot tr.order-total th {
  font-weight: 600;
  opacity: 1;
}

.woocommerce-checkout .woocommerce table.shop_table tfoot tr.order-total td{
  opacity: 1;
}

.order-total span.woocommerce-Price-amount.amount {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: var(--primary);
}
/* single product page */

select#custom_price_option,
select#custom_price_option_2 {
  max-width: 237px;
  height: 41px;
  padding: 10px;
  width: 100%;
  border: 1px solid #070E1680;
}
.customproduct-fields {
  display: flex;
  gap: 17px;
  margin-bottom: 14px;
}
.custom-price-dropdown {
  width: 100%;
}
.custom-product-fields label {
  margin-bottom: 14px;
  text-transform: capitalize;
  display: flex;
  gap: 12px;
}

input#recharging_option {
  margin: 0;
  width: 23px;
  height: 23px;
  border-radius: 0;
  border: 1px solid #070E1680;
}
.custom-product-fields textarea {
  border: 1px solid #070E1680;
  width: 100%;
  min-height: 89px;
  padding: 8px 10px;
  margin-bottom: 30px;
  font-family: var(--body-font);
  font-size: 16px;
}
.single-product button.single_add_to_cart_button.button.alt {
  max-width: 168px;
  height: 58px;
  padding: 14px 20px;
  width: 100%;
  border-radius: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  border: 1px solid var(--Secondary-black, #070E16);
  background: transparent;
  color: var(--Secondary-black, #070E16);
  margin-right: 12px;
  font-family: var(--body-font);
}
.single-product button.single_add_to_cart_button.button.alt:hover {
    background: var(--Primary, #1970E1);
    border-color: var(--Primary, #1970E1);
    color: #fff;
}
.single-product button.minus {
  border: 0;
  border-radius: 0;
  background: #fff;
}

.single-product.woocommerce .quantity .qty {
  border: 0;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
}

.single-product button.plus {
  border: 0;
  border-radius: 0;
  background: #fff;
}

.single-product.woocommerce .quantity input#quantity_674d8e8196ed7,
.single-product.woocommerce .quantity input::-webkit-inner-spin-button {    
    -webkit-appearance: none;
}
.single-product.woocommerce div.product form.cart div.quantity {
  margin: 0 12px 0 0;
  display: flex;
  height: 58px;
  border: 1px solid var(--Secondary-black, #070E16);
  align-items: center;
}
.our-promise-card {
  /* max-width: 368px; */
  box-shadow: 5px 8px 25px 4px #0000001A;
  width: 24%;
  float: right;
  margin-left: 40px;
  margin-bottom: 60px;
}

.our-promise-card h3.title {
  font-size: 18px;
  line-height: 24px;
  color: var(--Primary, #1970E1);
  font-weight: 600;
  font-family: var(--body-font);
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.promise-item h4 {
  margin: 0 0 6px 0;
  line-height: 24px;
  font-weight: 500;
  font-family: var(--body-font);
}

.promise-item li,
.promise-item p {
  font-size: 12px;
  color: #070E1680;
  line-height: 18px;
  font-family: var(--body-font);
  font-weight: 400;
  margin: 0;
  margin-bottom: 2px;
}
.promise-section {
    padding:40px 20px 90px;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 94% 100%, 0 100%);
}
.promise-title-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: linear-gradient(173.03deg, rgba(25, 112, 225, 0.13) 4.75%, rgba(255, 255, 255, 0.13) 111.49%);
  padding: 10px 0 12px 20px
}
.green-check-icon {
  width: 13px;
  height: 10px;
}
.single.woocommerce .summary.entry-summary {
  width: 31%;
  float: left;
  margin-bottom: 60px;
}
.single.woocommerce .product .woocommerce-product-gallery {
  /* width: 36%; */
  width: calc(100% - 65%);
}
.single.woocommerce div.product div.images.woocommerce-product-gallery {
  margin-right: 100px;
  display: flex;
  justify-content: center;
}
.product_meta span.posted_in a {
  color: #000;
  font-size: 14px;
}
.single.woocommerce .product-images-gallery.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.single.woocommerce .product-images-gallery.image-gallery img {
  width: calc(50% - 20px);
  max-height: 370px;
  object-fit: cover;
}
.single.woocommerce div.product div.images .flex-control-thumbs {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 35%;
  order: 1;
}

.single.woocommerce div.product div.images .flex-control-thumbs li {
  padding: 10px;
  border: 1px solid #070E1633;
  width: 76%;
}

.single.woocommerce .flex-viewport {
  width: 100%;
  order: 2;
}

.single.woocommerce div.product div.images {
  margin-bottom: 4em;
}
.single.woocommerce .summary.entry-summary .price {
  margin: 12px 0 23px;
}

.single select:focus-visible, .single textarea:focus-visible {
  outline: #1970e1;
}

.single.woocommerce div.product form.cart {
  margin-bottom: 18px;
  border-bottom: 0.8px solid #070E164D;
  padding-bottom: 38px;
}
.single.woocommerce ul.products li.product {
  width: 100%;
  margin-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  padding: 0 3em 0 5px;
}
.woocommerce-notices-wrapper a.button.wc-forward {
  font-weight: 500;
}

button.minus,
button.plus {
  background: transparent;
  border: 1px solid var(--Secondary-black, #070E16);
  width: 21px;
  height: 21px;
}

input.qty {
  border: 0;
  text-align: center;
}

.woocommerce-checkout tr.cart_item {
  border-bottom: 1px solid #070E1680 !important;
  z-index: 1;
  position: relative;
}
.woocommerce-checkout .remove-item {
  color: var(--primary);
  padding-top: 14px;
  margin: 0;
}
input#coupon_code {
  max-width: 344px;
  height: 56px;
  padding: 16px 24px;
  background: #045CB414;
  border: 1px solid var(--Secondary-black, hsl(212deg 52% 6%));
  opacity: 30%;
}
.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon button.button {
  background: var(--Primary, hsl(214deg 80% 49% / 30%));
  border: 0;
  padding: 16px 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Poppins';
  max-width: 236px;
  width: 100%;
}

form.checkout_coupon.woocommerce-form-coupon {
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.woocommerce {
  display: flex;
  flex-direction: column;
}
.share-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}


/* checkout layout set css */

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  float: left;
  width: 100%;
}

textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus,
.uneditable-input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: none;
  outline: 0;
}

h3#order_review_heading {
  display: none;
}

div#order_review {
  position: sticky;
  top: 100px;
}

td.product-total {
  justify-content: flex-start;
  display: flex;
 }

button#place_order {
  background: var(--Primary, #1970E1);
  border: 0;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-family: 'Poppins';
  font-weight: 500;
  width: 100%;
  padding: 16px;
  cursor: pointer;
}
.woocommerce form.checkout_coupon {
  padding: 0;
  border: 0;
  margin: 0;
}

.woocommerce-additional-fields {
  display: none;
}

.quantity-controls.checkout-quantity-controls {
  padding-top: 14px;
}

td.product-total {
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
tr.order-total td {
  text-align: right;
}

th.product-total {
  text-align: right;
}

tr.order-total td {
  text-align: right;
}

span.woocommerce-Price-amount.amount {
  text-align: right;
}

tfoot {
  position: relative;
}

/* tfoot:before {
  content: "";
  background: #070E1680;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 7px;
} */
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.woocommerce-checkout #payment ul.wc_payment_methods.payment_methods.methods,
.woocommerce-checkout #payment .form-row.place-order {
  padding: 0;
}

.woocommerce-checkout .woocommerce table.shop_table {
  border-bottom: 1px solid #070E1680;
  border-radius: 0;
}

a.buy-now.button.single_checkout_product {
  background: var(--Primary, #1970E1);
  max-width: 180px;
  height: 58px;
  padding: 14px 18px;
  width: 100%;
  border-radius: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
}

a.buy-now.button.single_checkout_product:hover {
  border: 1px solid var(--Secondary-black, #070E16);
  background: transparent;
  color: var(--Secondary-black, #070E16);
}

.woocommerce-checkout .woocommerce-billing-fields h3 {
  margin-top: 14px;
}

.single .product_meta {
  display: none;
}
.share-section a {
  line-height: 100%;
}
.woocommerce-checkout .cart-subtotal td {
  text-align: right;
}
.woocommerce-checkout .cart-subtotal {
    display: table-row;
}

table.shop_table.woocommerce-checkout-review-order-table {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
}

/* formula css */

.boat-type input[type="radio"]:checked+img+p {
  color: #007BFF;
  font-weight: bold;
}

.boat-type:hover {
  background-color: #f9f9f9;
}

.boat-type input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.boat-types .boat-type:has(input[type="radio"]:checked) {
  border: 2px solid #1970e1;
}

.result-container {
  text-align: center;
  margin-top: 18px;
}

.woocommerce-shop h1.woocommerce-products-header__title.page-title,
.archive h1.woocommerce-products-header__title.page-title {
  display: none;
}

.blog-news .blognews-row>p {
  color: var(--white);
}

/* login */
#customer_login {
  display: flex;
  gap: 100px;
}

#customer_login form.woocommerce-form input,
.lost_reset_password input#user_login {
  height: 55px !important;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme input#rememberme {
  height: max-content !important;
}

#customer_login .woocommerce-button {
  border: 0;
  cursor: pointer;
  padding-left: 30px;
  padding-right: 30px;
}

.logged-in.woocommerce-account .woocommerce {
  display: block;
}

form.woocommerce-EditAccountForm.edit-account button.woocommerce-Button.button {
  background: #1970e1;
  color: #fff;
  border: 0;
  padding: 15px 22px;
  font-size: 15px;
  cursor: pointer;
}

form.woocommerce-EditAccountForm.edit-account button.woocommerce-Button.button:hover{
  background: var(--primary-hover);
}

form.woocommerce-EditAccountForm.edit-account p.woocommerce-form-row {
  width: 100%;
}

div#no_results {
  padding-bottom: 40px;
}

div#no_results {
  padding-bottom: 50px;
  text-align: center;
}

.tax-product_cat.wc-parent-category ul.products.active {
  gap: 20px;
}

.woocommerce-privacy-policy-text p,
.register p {
  font-size: 15px;
}

.wc-parent-category nav.woocommerce-pagination{
  margin: 30px 0 60px;
}

.wc-parent-category nav.woocommerce-pagination ul li span.current{
  background: #1970e1;
  color: #fff;
}

.img-wraper img {
  background: var(--Primary, #1970E1);
  width: 58px;
  height: 58px;
  border-radius: 100px;
  padding: 6px;
  object-fit: contain;
}

.img-wraper {
  border: 20px solid hsl(214deg 80% 49% / 30%);
  width: 80px;
  height: 80px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.footer-right .social-icons h4 a,
.related.products h2 {
  color: var(--white);
}

.footer-right .social-icons h4 a:hover {
  opacity: 70%;
}

.woocommerce-Tabs-panel br {
  display: none;
}

.related-blg-post .blognews-row .latest-posts .post-info h2 {
  color: var(--black);
}

.single ul.products li.product {
  background-color: var(--white);
  clip-path: polygon(94% 0, 100% 6%, 100% 100%, 0 100%, 0 0);
}

.single .related.products {
  background: url(https://staging.bizdesire.com/ebot/wp-content/uploads/2024/12/related-product-bg-1.png);
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 70px;
  background-size: cover;
}
.single .related.products h2.woocommerce-loop-product__title {
  color: var(--Primary, #1970E1);
}

.wc-sub-category ul.products li.product,
.wc-parent-category ul.products li.product.type-product {
  filter: drop-shadow(0px 0px 10px #ddd);
  box-shadow: none;
}

.wc-sub-category ul.products li.product a,
.wc-parent-category ul.products li.product.type-product a {
  clip-path: polygon(94% 0, 100% 6%, 100% 100%, 0 100%, 0 0);
  background: var(--white);
}

.pagination .nav-links a.prev.page-numbers {
  width: 80px;
  position: relative;
}

a.prev.page-numbers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

body.archive .common-banner {
  background-position: center;
  background-size: contain;
}

.smush-detected-img {
  box-shadow: unset;
}