:root {
  --primary-color: #f31f7f;
  --secondary-color: #84deff;
  --white: #fff;
  --black: #000;

  --color-2F2F2F: #2f2f2f;
  --color-141414: #141414;
  --color-363636: #363636;
  --color-FD2092: #fd2092;
  --color-BE1818: #be1818;
  --color-060505: #060505;
  --color-D9D9D9: rgb(217, 217, 217);
  --color-6E6E6E: #6e6e6e;
  --color-0F0F0F: #0f0f0f;
  --color-C3C2C2: #c3c2c2;
  --color-313131: #313131;
  --color-767676: #767676;
  --color-252525: #252525;
  --color-121212: #121212;
  --color-3F3F3F: #3f3f3f;
  --color-2C2C2C: #2c2c2c;
  --color-191919: #191919;
  --color-222222: #222222;

  /* SHADE COLORS  */
  --color-B77FFF-50: rgba(183, 127, 255, 0.5);
  --color-420097-50: rgba(66, 0, 151, 0.5);
  --color-D9D9D9-50: rgb(217, 217, 217, 0.5);
  --color-BE1818-50: rgba(190, 24, 24, 0.5);
  --white-shade-50: rgba(255, 255, 255, 0.5);
  --primary-shade-50: rgb(243, 31, 127, 0.5);

  --color-0A0808-20: rgba(10, 8, 8, 0.2);
  --color-3D3D3D-20: rgba(61, 61, 61, 0.2);
  --color-AC175A-20: rgb(172, 23, 90, 0.2);
  --white-shade-20: rgba(255, 255, 255, 0.2);
  --color-464646-20: rgba(70, 70, 70, 0.2);

  --black-shade25: rgba(0, 0, 0, 0.25);

  --black-shade70: rgba(0, 0, 0, 0.7);
  --color-141414-70: rgba(20, 20, 20, 0.7);
}

/* 01 : Website Global CSS BOF
========================================================== */
::selection {
  user-select: none;
}

body,
html {
  height: auto;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--black);
  background: linear-gradient(180deg,
      #100d0d 0%,
      #000000 50.96%,
      #000000 63.19%,
      #282828 100%);
}

*,
html {
  margin: 0;
  padding: 0;
}

a {
  color: var(--black);
  display: inline-block;
}

/* Common color hyperlink */
a:hover,
a:focus,
a:active {
  color: inherit;
  text-decoration: none;
}

a.white_text:hover,
a.white_text:focus,
a.white_text:active {
  color: var(--primary-color);
}

/* Common hover color hyperlink */
a,
*:hover,
*:focus,
*:active :focus {
  text-decoration: none;
  outline: none !important;
  outline-offset: 0 !important;
}

a img,
img {
  border: none;
  outline: none !important;
  outline-offset: 0 !important;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  line-height: normal;
}

/* Transition Effect CSS BOF */
a,
i,
input {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
}

/* 02 : Global Classes CSS BOF
  ==================================================== */

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Background &amp; Color Style CSS BOF
  =================================================== */

/* BACKGROUND COLOR STYLE */

.bg-pink {
  background-color: var(--primary-color);
}

.bg-black {
  background-color: var(--black);
}

.bg-121212 {
  background-color: var(--color-121212);
}

.bg-222222 {
  background-color: var(--color-222222);
}

/* HIMANI */
.bg-shadow {
  background: linear-gradient(var(--black) 60%, var(--color-363636));
}

/* Font Color Style CSS BOF */
.white_text {
  color: var(--white);
}

.black_text {
  color: var(--black);
}

.primary_text {
  color: var(--primary-color);
}

.secondary_text {
  color: var(--secondary-color);
}

.white-shade50 {
  color: var(--white-shade-50);
}

.text_D9D9D9 {
  color: var(--color-D9D9D9);
}

.text_C3C2C2 {
  color: var(--color-C3C2C2);
}

/* Object fit common classes */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* Opacity common classes */
.op-1 {
  opacity: 0.1;
}

.op-5 {
  opacity: 0.5;
}

/* cursor variation csss */
.cursor-pointer {
  cursor: pointer;
}

/* list styling */
.list-style-disc {
  list-style: disc;
}

/* 03 : Heading Style CSS BOF
  =================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  line-height: normal;
  font-style: normal;
  color: var(--black);
  margin-bottom: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0;
}

.h1 {
  font-size: 90px;
}

.h2 {
  font-size: 61px;
}

.h3 {
  font-size: 48px;
}

.h4 {
  font-size: 44px;
}

.h5 {
  font-size: 36px;
}

.h6 {
  font-size: 30px;
}

.font-56 {
  font-size: 56px;
  line-height: normal;
}

.font-28 {
  font-size: 28px;
  line-height: normal;
}

.font-24 {
  /* font-size: 24px; change font size */
  font-size: 22px;
  line-height: normal;
}

.font-22 {
  font-size: 22px;
  line-height: normal;
}

.font-20 {
  font-size: 20px;
  line-height: normal;
}

.font-18 {
  font-size: 18px;
  line-height: normal;
}

.font-16 {
  font-size: 16px;
  line-height: normal;
}

.font-15 {
  font-size: 15px;
  line-height: normal;
}

/* Font Weight Variation CSS BOF */
.font_rg {
  font-weight: normal;
}

.font_bl {
  font-weight: 700;
}

.font_blk {
  font-weight: 900;
}

.font_smb {
  font-weight: 600;
}

.font_md {
  font-weight: 500 !important;
}

/* set line clamp for content */
.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp1 {
  -webkit-line-clamp: 1;
}

.line-clamp2 {
  -webkit-line-clamp: 2;
}

.line-clamp3 {
  -webkit-line-clamp: 3;
}

.line-clamp4 {
  -webkit-line-clamp: 4;
}

.line-clamp10 {
  -webkit-line-clamp: 10;
}

.normal-line-height {
  line-height: normal !important;
}

.full-line-height {
  line-height: 100% !important;
}

/* Z-INDEX variation */
.z-9 {
  z-index: 9;
}

.z-99 {
  z-index: 99;
}

.flex-0 {
  flex: 0 0 auto;
}

/* FONT FAMILY */

.Russo_one_font {
  font-family: "Russo One";
}

.poppins_font {
  font-family: "Poppins", sans-serif;
}

/* 04 : Paragraph Style CSS BOF
  =================================================== */
p,
.p {
  line-height: auto;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  margin-bottom: 0;
  font-weight: normal;
}

/* 05 : Image Style CSS BOF
  =================================================== */
img {
  margin-bottom: 0;
}

/*** Buttton Varilation CSS BOF ***/
.btn,
.myaccount-page #customer_login form.login .form-row .woocommerce-form-login__submit,
.myaccount-page #customer_login form.register .form-row .woocommerce-form-register__submit,
.my-account-page .woocommerce-MyAccount-content table.account-orders-table tbody tr td .button,
.my-account-page .woocommerce-MyAccount-content .woocommerce-info .button,
.my-account-page .woocommerce-MyAccount-content .button,
.my-account-page .lost_reset_password .form-row .button,
.cart-page .wc-block-grid__products li.wc-block-grid__product .add_to_cart_button,
.custom-add-to-cart-wrapper form.cart .button,
.cart-page .wc-block-cart .wc-block-components-sidebar .wc-block-cart__submit .wc-block-components-button,
.cart-page .wc-block-cart .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-coupon-form-block .wc-block-components-totals-coupon__form .wc-block-components-button {
  background: linear-gradient(to top right,
      var(--color-FD2092),
      var(--color-BE1818));
  padding: 18px 14px;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  border-style: none;
  transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  border-radius: 15px;
  text-transform: unset;
  box-shadow: none;
  min-width: 153px;
  line-height: normal;
  color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:first-child:active,
.btn:focus-visible,
.myaccount-page #customer_login form.login .form-row .woocommerce-form-login__submit:hover,
.myaccount-page #customer_login form.register .form-row .woocommerce-form-register__submit:hover,
.cart-page .wc-block-grid__products li.wc-block-grid__product .add_to_cart_button:hover,
.custom-add-to-cart-wrapper form.cart .button:hover,
.my-account-page .woocommerce-MyAccount-content table.account-orders-table tbody tr td .button:hover,
.my-account-page .woocommerce-MyAccount-content .woocommerce-info .button:hover,
.my-account-page .woocommerce-MyAccount-content .button:hover,
.my-account-page .lost_reset_password .form-row .button:hover,
.cart-page .wc-block-cart .wc-block-components-sidebar .wc-block-cart__submit .wc-block-components-button:hover,
.cart-page .wc-block-cart .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-coupon-form-block .wc-block-components-totals-coupon__form .wc-block-components-button:hover {
  box-shadow: none;
  outline: none;
  background: linear-gradient(to top right,
      var(--white),
      var(--white)) !important;
  color: var(--primary-color) !important;
}

.btn:disabled,
.btn.disabled {
  background: linear-gradient(to top right,
      var(--primary-shade-50),
      var(--color-BE1818-50)) !important;
  color: var(--white) !important;
  opacity: 0.8;
}

.btn_lg {
  min-width: 284px;
  padding: 18px 30px;
}

.btn_22,
.myaccount-page #customer_login form.login .form-row .woocommerce-form-login__submit,
.myaccount-page #customer_login form.register .form-row .woocommerce-form-register__submit,
.cart-page .wc-block-grid__products li.wc-block-grid__product .add_to_cart_button,
.custom-add-to-cart-wrapper form.cart .button,
.my-account-page .woocommerce-MyAccount-content .woocommerce-info .button,
.my-account-page .woocommerce-MyAccount-content .button,
.my-account-page .lost_reset_password .form-row .button,
.cart-page .wc-block-cart .wc-block-components-sidebar .wc-block-cart__submit .wc-block-components-button {
  font-size: 22px;
}

.btn_24 {
  font-size: 24px;
}

.btn_30 {
  font-size: 30px;
}

/* ARROW ICON BUTTON  */
.outline-arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: transparent;
  border: 1px solid var(--white);
  padding: 20px 35px;
  min-width: 230px;
}

.outline-arrow-btn:hover {
  background: linear-gradient(to top right,
      var(--color-FD2092),
      var(--color-BE1818)) !important;
  color: var(--white) !important;
}

/* ICON BUTTON */

.icon-btn {
  background-color: var(--white);
  color: var(--primary-color);
  background: linear-gradient(to top right,
      var(--white),
      var(--white)) !important;
  padding: 6px 8px 6px 14px !important;
  gap: 25px;
}

.icon-btn .icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(to right,
      var(--color-FD2092),
      var(--color-BE1818));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.icon-btn:hover {
  background: linear-gradient(to right,
      var(--color-FD2092),
      var(--color-BE1818)) !important;
}

.icon-btn:hover .icon-btn-text {
  color: var(--white);
}

/* GRADIENT ICON BUTTON */

.gradient-btn {
  color: var(--white);
  background: linear-gradient(to right,
      var(--color-FD2092),
      var(--color-BE1818)) !important;
  min-width: 239px;
}

.gradient-btn .icon {
  background: linear-gradient(to right, var(--white), var(--white));
}

.gradient-btn:hover {
  background: linear-gradient(to right, var(--white), var(--white)) !important;
}

.gradient-btn:hover .icon-btn-text {
  color: var(--primary-color);
}

.btn_transparent {
  background-color: transparent;
  border: none;
  min-width: auto;
  padding: 0;
}

.btn_transparent:hover,
.btn_transparent:focus,
.btn_transparent:active,
.btn_transparent:focus-visible {
  background-color: transparent;
  border: none;
  min-width: auto;
  padding: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 11 : Form &amp; Input Style BOF
  ==================================================== */

.form-label,
.myaccount-page #customer_login form.login .form-row label,
.myaccount-page #customer_login form.register .form-row label,
.my-account-page .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row label,
.my-account-page .woocommerce-MyAccount-content .woocommerce-address-fields .form-row label,
.my-account-page .lost_reset_password .form-row label,
.checkout-page form.woocommerce-checkout .woocommerce-billing-fields .form-row label,
.checkout-page form.woocommerce-checkout .woocommerce-shipping-fields .form-row label {
  font-size: 24px;
  line-height: normal;
  color: var(--white);
  margin-bottom: 10px;
}

.form-control,
.form-select,
.myaccount-page #customer_login form.login .form-row .woocommerce-Input,
.myaccount-page #customer_login form.register .form-row .woocommerce-Input,
.my-account-page .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row .input-text,
.my-account-page .woocommerce-MyAccount-content .woocommerce-address-fields .form-row .input-text,
.my-account-page .woocommerce-MyAccount-content .woocommerce-address-fields .form-row .select2-container .select2-selection__rendered,
.my-account-page .lost_reset_password .form-row .input-text,
.checkout-page form.woocommerce-checkout .woocommerce-billing-fields .form-row .input-text,
.checkout-page form.woocommerce-checkout .woocommerce-billing-fields .form-row .select2-container .select2-selection__rendered,
.checkout-page form.woocommerce-checkout .woocommerce-shipping-fields .form-row .input-text,
.checkout-page form.woocommerce-checkout .woocommerce-shipping-fields .form-row .select2-container .select2-selection__rendered {
  background-color: var(--color-2F2F2F);
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  font-size: 20px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  padding: 17px 20px;
  line-height: normal;
  height: 74px;
}

.woocommerce form .show-password-input::before,
.woocommerce-page form .show-password-input::before {
  background-image: url("../images/eye.svg") !important;
}

.woocommerce form .show-password-input.display-password::before,
.woocommerce-page form .show-password-input.display-password::before {
  background-image: url("../images/eye-open.svg") !important;
}

/* MY ACCOUNT PAGE SELECT CSS  */

.my-account-page .woocommerce-MyAccount-content .woocommerce-address-fields .form-row .select2-container .select2-container--default .select2-selection--single,
.my-account-page .woocommerce-MyAccount-content .woocommerce-address-fields .form-row .select2-container .select2-selection {
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.my-account-page .woocommerce-MyAccount-content .woocommerce-address-fields .form-row .select2-container .select2-selection__rendered {
  display: flex;
  align-items: center;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 17px 44px 17px 20px !important;
  background-image: url("../images/select-chevron.svg");
  background-repeat: no-repeat !important;
  background-size: 24px 24px !important;
  background-position: right 18px center !important;
  height: 63px;
}

.form-select option {
  background-color: var(--color-EEE1F4);
  color: var(--color-2D2D2D);
}

textarea.form-control {
  resize: none;
  overflow: auto;
  padding: 17px 20px;
  height: 136px;
}

/** Placeholder CSS BOF **/
.form-control::placeholder {
  color: var(--white-shade-50);
  font-weight: 400;
  font-size: 20px;
}

.form-control::-moz-placeholder {
  color: var(--white-shade-50);
  font-weight: 400;
  font-size: 20px;
}

.form-control:-ms-input-placeholder {
  color: var(--white-shade-50);
  font-weight: 400;
  font-size: 20px;
}

.form-control::-webkit-input-placeholder {
  color: var(--white-shade-50);
  font-weight: 400;
  font-size: 20px;
}

.form-control::-o-input-placeholder {
  color: var(--white-shade-50);
  font-weight: 400;
  font-size: 20px;
}

/* Focus State CSS BOF   */
.form-control:focus,
.form-select:focus,
.myaccount-page #customer_login form.login .form-row .woocommerce-Input:focus,
.myaccount-page #customer_login form.register .form-row .woocommerce-Input:focus {
  border: 1px solid var(--primary-color);
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  background-color: var(--color-2F2F2F);
  color: var(--white);
  outline: 0;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--color-2F2F2F) inset !important;
  -webkit-text-fill-color: var(--white);
}

/* COMMON SPINNER CSS */
.form-btn-spinner-wrapper .wpcf7-spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  z-index: 9;
  margin: auto;
}

.form-btn-spinner-wrapper {
  position: relative;
}

/* COMMON SUBMIT MSG SHOW CSS */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  color: #fff;
}

/* SOME GLOBAL CSS */
.page-wrapper {
  margin: 0px auto;
  overflow-x: hidden;
}

/* COMMON PADDING */
.common-padding {
  padding: 120px 0;
}

.common-padding-t120 {
  padding-top: 120px;
}

.common-padding-b120 {
  padding-bottom: 120px;
}

.common-padding-t70 {
  padding-top: 70px;
}

.common-padding-t60 {
  padding-top: 60px;
}

.common-padding-b60 {
  padding-bottom: 60px;
}

.header_padding,
.myaccount-page,
.cart-page {
  padding-top: 225px;
}

/* COMMON BORDER RADIUS */

.border-r-10 {
  border-radius: 10px;
}

.border-r-15 {
  border-radius: 15px;
}

.border-r-20 {
  border-radius: 20px;
}

/* COMMON LINE HEIGHT */

.lh-35 {
  line-height: 35px;
}

.text-justify {
  text-align: justify;
}

/* ======================================================
                  COMMON CONTAINER SOC
  ====================================================== */
@media (min-width: 1700px) {

  .container,
  .myaccount-page,
  .cart-page {
    max-width: 1520px;
  }
}

@media (min-width: 1600px) and (max-width: 1699.98px) {

  .container,
  .myaccount-page,
  .cart-page {
    max-width: 1470px;
  }
}

@media (max-width: 991.98px) {

  .container,
  .myaccount-page {
    max-width: 100%;
    padding: 0 20px;
  }

  .cart-page {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* HIMANI */
.custom-container {
  max-width: 1720px;
}

/* COMMON ACCORDION */
.accordion-button:focus {
  box-shadow: unset;
  border-color: transparent;
}

.accordion-button {
  background-color: var(--white);
  color: var(--primary-color);
  font-size: 30px;
  font-weight: 500;
  border-radius: 20px;
  gap: 24px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: var(--white);
  box-shadow: unset;
  border-bottom: 0;
}

.accordion-item {
  background-color: var(--white);
  border: 1px solid var(--color-C2C2C2);
  margin-bottom: 20px;
  border-radius: 20px;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 20px;
}

/* .accordion-collapse.show */
.accordion-item:not(:first-of-type) {
  border-top: 1px solid var(--color-C2C2C2);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../images/select-chevron.svg");
  transform: unset;
}

.accordion-button::after {
  background-image: url("../images/select-chevron.svg");
  transform: rotate(-180deg);
  background-size: contain;
  width: 28px;
  height: 28px;
  transition: all 0.4s ease-in-out;
}

.accordion-button {
  padding: 30px 60px;
}

.accordion-body {
  padding: 0 60px 30px;
  text-align: start;
}

.accordion-body .faq-desc {
  line-height: 34px;
}

/* COMMON ARC VECTOR  */

.bg-arc-vector {
  position: absolute;
  top: -177px;
  max-width: 922px;
  max-height: 922px;
  left: -550px;
  z-index: -1;
}

/* ======================================================
=========================================================
                      HEADER SOC
=========================================================
====================================================== */

/*header active start*/

.site-header {
  position: relative;
  z-index: 999;
}

.header-main {
  position: fixed;
  width: 100%;
  right: 0;
  top: 0;
  left: 0px;
  padding-top: 32px;
  transition: all 400ms ease;
}

.header-main-active {
  position: fixed;
  width: 100%;
  left: 0px;
  right: 0px;
  top: 0px;
  padding-top: 10px;
  transform: translateY(-100%);
}

.header-main-show {
  transform: translateY(0);
}

/*header active end*/

/*index css Start*/

.header-main .header-inner-main {
  position: relative;
  background: transparent;
}

.header-main .header-inner-main .navbar-container {
  max-width: 1720px;
}

.header-main .header-inner-main .header-inner {
  width: 100%;
  align-items: center;
  padding-left: 40px;
}

.header-main .header-inner-main nav.navbar {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  align-items: normal;
  background-color: var(--black-shade70);
  border-radius: 25px;
  padding: 12px;
  position: relative;
}

.header-main .header-inner-main nav.navbar::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 25px;
}

.header-menu .header-menu-inner ul li a {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  line-height: 100%;
  color: var(--white);
  font-weight: 400;
  padding: 24px 0;
  margin-left: 40px;
}

.header-menu .header-menu-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-menu .header-menu-inner ul li:hover a {
  color: var(--primary-color);
  text-shadow: 0 0 1px var(--primary-color), 0 0 1px var(--primary-color),
    0 0 1px var(--primary-color), 0 0 1px var(--primary-color);
}

/* MENU ACTIVE */
.header-menu .header-menu-inner ul li.current_page_item a {
  color: var(--primary-color);
  text-shadow: 0 0 1px var(--primary-color), 0 0 1px var(--primary-color),
    0 0 1px var(--primary-color), 0 0 1px var(--primary-color);
}

.header-menu .header-menu-inner ul li.sign-in-btn {
  margin-left: 30px;
}

.header-menu .header-menu-inner ul li.sign-in-btn .btn {
  padding: 22px 20px;
  gap: 25px;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  color: var(--white);
  text-shadow: none;
}

.header-menu .header-menu-inner ul li.sign-in-btn .btn:hover svg path,
.header-menu .header-menu-inner ul li.sign-in-btn .btn:hover svg circle {
  stroke: var(--primary-color);
}

@media (min-width: 992px) {
  .dropdown_main .header-tabs .tab-content .card .collapse {
    display: block !important;
  }

  .dropdown_main .header-tabs .tab-content .card-header {
    display: none;
  }

  .navbar-expand-lg .navbar-nav {
    justify-content: center;
    display: flex;
    align-items: center;
  }
}

/*toggele switch*/

.header-main button.navbar-toggler {
  padding: 0;
  border: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 0;
}

.header-main button.navbar-toggler span.icon-bar:nth-child(2) {
  visibility: hidden;
  opacity: 0;
}

.header-main button.navbar-toggler.collapsed span.icon-bar:nth-child(2) {
  visibility: visible;
  opacity: 1;
}

.header-main button.navbar-toggler span.icon-bar:nth-child(1) {
  top: 2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.header-main button.navbar-toggler.collapsed span.icon-bar:nth-child(1),
.header-main .header-inner .header-right button.navbar-toggler.collapsed span.icon-bar:nth-child(3) {
  top: 0;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  margin: 3px auto;
}

.header-main button.navbar-toggler span.icon-bar {
  margin: 0;
  background-color: var(--primary-color);
  border-radius: 2px;
  display: block;
  height: 3px;
  position: relative;
  width: 24px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  transition: all 200ms ease;
}

.header-main button.navbar-toggler span.icon-bar:nth-child(3) {
  top: -4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

/*dropdown*/

.cart-contents svg {
  width: 28px !important;
  height: 28px !important;
}

.cart-contents .cart-count-number {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px !important;
  background-color: #fd2092 !important;
  color: #fff !important;
  top: 15px !important;
  right: -6px !important;
}

/*index css END*/

/* ===============================================
==================================================
            GET IN TOUCH SECTION
==================================================
=============================================== */

.get-in-touch-sec {
  background-image: url("../images/get-in-touch-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin-top: 40px;
}

.get-in-touch-wrapper .support-content-wrapper {
  padding: 158px 480px 120px 0;
}

.support-img-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 570px;
}

/* ===============================================
==================================================
              INKTURE BLOG SECTION
==================================================
=============================================== */

.blog-card {
  background-color: var(--color-313131);
  height: auto;
}

.blog-card .blog-img-wrapper .blog-img {
  min-height: 300px;
  max-height: 300px;
}

.blog-card .blog-card-body {
  padding: 30px 20px;
}

/* ===============================================
==================================================
          CONTACT INFORMATION SECTION
==================================================
=============================================== */

.contact-info-sec {
  padding: 85px 0;
}

.contact-info-sec .contact-title {
  line-height: 103%;
  font-size: 90px;
}

.contact-info-main {
  gap: 80px;
}

.contact-info-main .diamon-vector {
  position: absolute;
  bottom: -116px;
  z-index: 0;
  left: -200px;
  max-height: 580px;
}

.contact-info-main .contact-info-wrapper {
  width: 747px;
  position: relative;
  z-index: 1;
}

.contact-info-sec .contact-info-card-wrapper {
  background-color: var(--color-141414);
  margin-top: 100px;
  padding: 20px 35px;
}

.contact-info-card .contact-card-row,
.contactUs-information .contact-card-row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 30px;
}

.contact-info-sec .contact-info-card-wrapper .contact-info-card,
.contactUs-information .contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card .contact-card {
  padding: 22px 20px;
  background-color: transparent;
  position: relative;
  border-radius: 20px;
}

.contact-info-card .contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(to bottom right,
      var(--color-767676),
      var(--color-252525) 60%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  z-index: 0;
}

.contact-info-card .contact-card .contact-info-text {
  font-size: 20px;
}

.contact-info-main .git-form-wrapper {
  background-color: var(--color-141414);
  padding: 41px 24px;
  position: relative;
  z-index: 1;
  width: calc((100% - 747px) - 80px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-main .git-form-wrapper .git-form {
  --bs-gutter-x: 16px;
  --bs-gutter-y: 30px;
}

/* ===============================================
==================================================
              LOGO BRAND SLIDER SECTION
==================================================
=============================================== */

.logo-brand-sec {
  padding: 26px 0;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

.logoSlider {
  /* overflow: hidden;
  white-space: nowrap; */
  display: flex;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  z-index: 1;
  gap: 80px;
}

.logoSlider-track {
  /* display: flex;
  width: 100%;
  animation: scroll 30s linear infinite;
  animation-play-state: running;
  gap: 80px; */
  animation: scroll 20s linear infinite;
  display: flex;
  align-items: center;
  gap: 80px;
  flex: 0 0 auto;
  justify-content: space-around;
  width: 100%;
}

.BrandLogo-wrapper {
  max-height: 56px;
}

.BrandLogo-wrapper .BrandLogo {
  width: auto;
  max-height: 56px;
}

@-webkit-keyframes scroll {

  /* Safari fallback */
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 80px));
  }
}

@keyframes scroll {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 80px));
  }
}

/* ===============================================
==================================================
                  FOOTER SECTION
==================================================
=============================================== */

.main-footer {
  padding: 122px 0 118px;
  background-image: url("../images/footer-bg-vector.png");
  background-position: top;
  background-size: inherit;
  background-repeat: no-repeat;
}

.footer-wrapper .footer-bg-logo {
  max-width: 1621px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.main-footer .footer {
  gap: 220px;
  position: relative;
  z-index: 1;
}

.main-footer .footer .footer-left {
  width: 605px;
}

.main-footer .footer .footer-left .footer-content {
  letter-spacing: -2px;
  line-height: 152%;
  border-top: 5px solid var(--white-shade-20);
  padding-top: 24px;
  margin-top: 40px;
}

.main-footer .footer .footer-right {
  width: calc((100% - 601px) - 220px);
}

.footer-right .subscribe-wrapper .subscribe-input .subcribe-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 82px;
  min-width: 82px;
  max-height: 74px;
}

.subscribe-input .subcribe-btn svg path {
  transition: all 0.4s ease-in-out;
}

.subscribe-input .subcribe-btn:hover svg path {
  stroke: var(--primary-color);
  fill: var(--primary-color);
}

.link-follow-us-wrapper {
  gap: 50px;
  padding-top: 93px;
}

.link-follow-us-wrapper .footer-link {
  width: calc((100% - 475px) - 50px);
}

.link-follow-us-wrapper .folow-us-wrapper {
  width: 475px;
}

.folow-us-wrapper .social-icons-wrapper {
  padding: 43px 0;
  margin-bottom: 43px;
  border-bottom: 2px solid var(--white-shade-20);
}

.folow-us-wrapper .social-icons-wrapper .social-icons {
  width: 65px;
  height: 65px;
  background-color: var(--primary-shade-50);
  border-radius: 17px;
  padding: 12px;
}

.main-footer .footer-wrapper .footer-bottom-text {
  border-top: 1px solid var(--white-shade-20);
}

/* ===============================================
==================================================
                MY ACCOUNT SECTION
==================================================
=============================================== */

/* CHECKBOX CSS START  */

.myaccount-page #customer_login form.login .form-row .woocommerce-form-login__rememberme {
  margin-bottom: 0;
}

.myaccount-page #customer_login form.login .form-row .woocommerce-form-login__rememberme input[type="checkbox"] {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.myaccount-page #customer_login form.login .form-row .woocommerce-form-login__rememberme span {
  position: relative;
  cursor: pointer;
  font-size: 18px;
  line-height: 24px;
  display: flex;
  align-items: center;
  padding-left: 34px;
  color: var(--color-C3C2C2);
  min-height: 24px;
  font-weight: 400;
}

.myaccount-page #customer_login form.login .form-row .woocommerce-form-login__rememberme input[type="checkbox"]:checked+span::before {
  background-color: var(--primary-color);
}

.myaccount-page #customer_login form.login .form-row .woocommerce-form-login__rememberme input[type="checkbox"]:checked+span::after {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 5px;
  bottom: 0px;
  margin: auto;
  width: 13px;
  height: 8px;
  border-width: 0px 0px 2px 2px;
  border-style: solid;
  border-color: #fff;
  transform: rotate(-45deg);
}

.myaccount-page #customer_login form.login .form-row .woocommerce-form-login__rememberme span::before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  left: 0;
  cursor: pointer;
}

/* CHECKBOX CSS END */

/* ======================================================
                  COMMON CONTAINER SOC
  ====================================================== */
@media (max-width: 1599.98px) {

  .myaccount-page,
  .cart-page {
    max-width: 1320px;
  }
}

@media (max-width: 1399.98px) {

  .myaccount-page,
  .cart-page {
    max-width: 1140px;
  }
}

@media (max-width: 1199.98px) {

  .myaccount-page,
  .cart-page {
    max-width: 960px;
  }
}

.myaccount-page,
.cart-page {
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 auto;
}

.myaccount-page .entry-title,
.cart-page .entry-title {
  font-size: 48px;
  line-height: 52px;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
}

.myaccount-page .entry-content {
  padding: 48px 0;
}

.myaccount-page #customer_login h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 500;
  color: var(--primary-color);
}

.myaccount-page #customer_login form.login,
.myaccount-page #customer_login form.register {
  border: 0px;
  padding: 20px;
  background-color: #121212;
  border-radius: 20px;
}

.myaccount-page #customer_login form.login .form-row.form-row-wide,
.myaccount-page #customer_login form.register .form-row.form-row-wide {
  margin-bottom: 24px;
}

.myaccount-page #customer_login form.login .form-row,
.myaccount-page #customer_login form.register .form-row {
  margin-bottom: 0;
}

.myaccount-page #customer_login form.login .lost_password a {
  padding-top: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  transition: all 0.4s ease-in-out;
}

.myaccount-page #customer_login form.login .lost_password a:hover {
  color: var(--white);
}

.myaccount-page #customer_login form.register p {
  font-size: 18px;
  line-height: normal;
  color: var(--color-C3C2C2);
}

.myaccount-page #customer_login form.register .woocommerce-privacy-policy-text {
  padding: 20px 0;
}

.myaccount-page #customer_login form.register .woocommerce-privacy-policy-text a {
  color: var(--primary-color);
  transition: all 0.4s ease-in-out;
}

.myaccount-page #customer_login form.register .woocommerce-privacy-policy-text a:hover {
  color: var(--color-C3C2C2);
}

/* ===============================================
==================================================
              MY profile PAGE SECTION
==================================================
=============================================== */

.my-account-page .woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.my-account-page .woocommerce-MyAccount-navigation ul li a {
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  color: var(--white);
}

.my-account-page .woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--primary-color);
  font-weight: 600;
}

/* DASHBOARD  */
.my-account-page .woocommerce-MyAccount-content p,
.my-account-page .lost_reset_password p {
  font-size: 18px;
  line-height: normal;
  color: var(--white);
  padding-bottom: 16px;
}

.my-account-page .woocommerce-MyAccount-content p a {
  color: var(--primary-color);
  transition: all 0.4s ease-in-out;
}

.my-account-page .woocommerce-MyAccount-content p a:hover {
  color: var(--white);
}

/* ORDER SECTION  */
.my-account-page .woocommerce-MyAccount-content table.account-orders-table,
.my-account-page .woocommerce-MyAccount-content .woocommerce-order-details table.order_details {
  border: 1px solid var(--white-shade-50);
  border-collapse: collapse;
}

.my-account-page .woocommerce-MyAccount-content table.account-orders-table thead tr th,
.my-account-page .woocommerce-MyAccount-content table.account-orders-table tbody tr th,
.my-account-page .woocommerce-MyAccount-content table.account-orders-table tbody tr td,
.my-account-page .woocommerce-MyAccount-content .woocommerce-order-details table.order_details thead tr th,
.my-account-page .woocommerce-MyAccount-content .woocommerce-order-details table.order_details tbody tr th,
.my-account-page .woocommerce-MyAccount-content .woocommerce-order-details table.order_details tbody tr td,
.my-account-page .woocommerce-MyAccount-content .woocommerce-order-details table.order_details tfoot tr th,
.my-account-page .woocommerce-MyAccount-content .woocommerce-order-details table.order_details tfoot tr td {
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  color: var(--white);
  padding: 16px;
  border: 1px solid var(--white-shade-50);
}

.my-account-page .woocommerce-MyAccount-content table.account-orders-table tbody tr th a,
.my-account-page .woocommerce-MyAccount-content .woocommerce-order-details table.order_details tbody tr td a {
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  color: var(--secondary-color);
  transition: all 0.4s ease-in-out;
}

.my-account-page .woocommerce-MyAccount-content table.account-orders-table tbody tr th a:hover,
.my-account-page .woocommerce-MyAccount-content .woocommerce-order-details table.order_details tbody tr td a:hover {
  color: var(--white);
}

.my-account-page .woocommerce-MyAccount-content table.account-orders-table tbody tr td .button {
  height: 40px;
  padding: 10px 16px;
}

/* ORDER DETAILS  */
.my-account-page .woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-order-details__title {
  font-size: 30px;
  line-height: 35px;
  color: var(--primary-color);
  padding-bottom: 20px;
}

.my-account-page .woocommerce-MyAccount-content .woocommerce-customer-details .addresses .woocommerce-column address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.my-account-page .woocommerce-MyAccount-content .woocommerce-customer-details .addresses .woocommerce-column address p {
  padding-top: 10px;
  padding-bottom: 0;
}

.my-account-page .woocommerce-MyAccount-content .woocommerce-customer-details .addresses .woocommerce-column address p:nth-last-child(1) {
  padding-top: 0;
}

/* DOWNLOAD  */
.my-account-page .woocommerce-MyAccount-content .woocommerce-info {
  background-color: var(--color-121212);
  color: var(--white);
  border-top-color: var(--primary-color);
}

.my-account-page .woocommerce-MyAccount-content .woocommerce-info::before {
  color: var(--primary-color);
}

/* ADDRESS  */
.my-account-page .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address,
.my-account-page .woocommerce-MyAccount-content .woocommerce-customer-details .addresses .woocommerce-column {
  background-color: var(--color-121212);
  border-radius: 10px;
  padding: 16px;
}

.my-account-page .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title h2,
.my-account-page .woocommerce-MyAccount-content .woocommerce-customer-details .addresses .woocommerce-column .woocommerce-column__title {
  color: var(--primary-color);
  border-bottom: 1px solid var(--white);
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 35px;
}

.my-account-page .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a {
  color: var(--primary-color);
  transition: all 0.4s ease-in-out;
  font-size: 16px;
}

.my-account-page .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a:hover {
  color: var(--white);
}

.my-account-page .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address address,
.my-account-page .woocommerce-MyAccount-content .woocommerce-customer-details .addresses .woocommerce-column address {
  font-size: 18px;
  color: var(--white);
  padding-top: 8px;
}

.my-account-page .woocommerce-MyAccount-content .woocommerce-customer-details .addresses .woocommerce-column address .woocommerce-customer-details--email {
  word-break: break-all;
}

.my-account-page .woocommerce-MyAccount-content .woocommerce-address-fields .form-row {
  margin-bottom: 30px;
}

.my-account-page .woocommerce-MyAccount-content form h2 {
  font-size: 30px;
  line-height: 36px;
  color: var(--primary-color);
  padding-bottom: 20px;
}

/* ACCOUNT DETAILS  */

.my-account-page .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row,
.my-account-page .lost_reset_password .form-row {
  margin-bottom: 30px;
}

.my-account-page .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset legend {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  color: var(--primary-color);
  padding: 16px 0;
  margin: 0;
}

/* ===============================================
==================================================
               CART PAGE
==================================================
=============================================== */
.cart-page {
  color: var(--white);
}

.cart-page .wc-block-cart {
  padding-top: 48px !important;
}

.cart-page .wc-block-components-product-name {
  color: var(--secondary-color);
  padding: 0px 0 20px;
  font-size: 20px;
  font-weight: 600;
}

.cart-page .wc-block-components-product-name:hover {
  color: var(--primary-color);
}

.cart-page .wc-block-cart__empty-cart__title {
  color: var(--white);
  background: var(--color-121212);
  padding: 20px;
  margin-top: 30px;
}

.cart-page .wc-block-cart__empty-cart__title {
  font-size: 20px;
  color: var(--white);
  text-align: center;
}

.cart-page h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 500;
  color: var(--primary-color);
  padding: 50px 0 30px;
  text-align: left;
}

.cart-page .wc-block-grid__products li.wc-block-grid__product a {
  background: var(--color-121212);
  padding: 20px;
  color: var(--white);
  margin-bottom: 10px;
  width: 100%;
}

.cart-page .wc-block-grid__products li.wc-block-grid__product a .wc-block-grid__product-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  min-height: 45px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  margin: 0;
}

.cart-page .wc-block-grid__products li.wc-block-grid__product .price {
  font-size: 18px;
  min-height: 27px;
}

/* .woocommerce-Price-amount.amount,.woocommerce-Price-amount.amount bdi{
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
}
.cart-page .wc-block-grid__products li.wc-block-grid__product .amount{
  justify-content: center;
} */
.cart-page .wc-block-grid__products li.wc-block-grid__product .add_to_cart_button {
  background: linear-gradient(to top right,
      var(--color-FD2092),
      var(--color-BE1818));
  color: var(--white);
  padding: 16px 30px;
  font-size: 18px;
}

.cart-page .wc-block-grid__products .wc-block-grid__product-image img {
  max-height: 300px;
}

/* CART TABLE */

.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items thead,
.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items tbody,
.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items tbody tr td,
.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items thead tr th {
  border: 1px solid var(--white-shade-20);
}

.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items thead tr th {
  border-bottom: 0;
}

.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items tbody,
.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items tbody tr td {
  border-top: 0;
}

.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row:nth-child(1) {
  border-top: 0;
}

.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row {
  border-top: 1px solid var(--white-shade-20);
}

.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items thead tr th,
.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items tbody tr td {
  padding: 20px 16px;
}

.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items thead tr th {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}

.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items .wc-block-cart-item__product .wc-block-cart-item__prices {
  font-weight: 500;
}

.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items .wc-block-cart-item__product .wc-block-components-product-metadata p {
  font-size: 16px;
  padding: 5px 0;
  margin: 0;
}

.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items .wc-block-cart-item__product .wc-block-cart-item__quantity .wc-block-components-quantity-selector {
  width: 120px;
  background: linear-gradient(to top right,
      var(--primary-color),
      var(--color-BE1818));
}

.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items .wc-block-cart-item__product .wc-block-cart-item__quantity .wc-block-components-quantity-selector .wc-block-components-quantity-selector__input {
  min-width: 30px;
  padding: 5px;
  background-color: #fff;
  color: var(--black);
}

.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items .wc-block-cart-item__product .wc-block-cart-item__quantity .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
  font-size: 18px !important;
  opacity: 1 !important;
  color: var(--white);
  min-width: 40px;
}

.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items .wc-block-cart-item__product .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  color: var(--white);
  font-size: 14px;
  margin-top: 10px;
  font-weight: 500;
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
}

.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items .wc-block-cart-item__product .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover {
  color: var(--primary-color);
}

.cart-page .wc-block-cart .wc-block-components-main table.wc-block-cart-items .wc-block-cart-item__total {
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  border: 0;
}

/* CART SIDEBAR */

.cart-page .wc-block-cart .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-block {
  background-color: var(--color-141414);
  padding: 18px;
}

.cart-page .wc-block-cart .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-coupon-form-block .wc-block-components-totals-coupon__form .wc-block-components-button {
  padding: 12px 14px;
  border-radius: 4px;
  min-width: 130px;
}

.cart-page .wc-block-cart .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.cart-page .wc-block-cart .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 17px;
}

/* ===============================================
==================================================
             VIEW  CART PAGE
==================================================
=============================================== */
.custom-add-to-cart-wrapper form.cart {
  display: flex;
  align-items: center;
}

.custom-add-to-cart-wrapper .quantity {
  padding-right: 25px;
}

.custom-add-to-cart-wrapper .quantity .custom-qty-wrapper {
  width: 120px;
}

.custom-add-to-cart-wrapper .quantity .custom-qty-wrapper button {
  background: linear-gradient(to bottom, var(--color-191919), var(--color-2C2C2C));
  color: var(--white);
  font-size: 18px !important;
  opacity: 1 !important;
}

.custom-add-to-cart-wrapper .quantity .custom-qty-wrapper button.minus-btn {
  border-right-color: transparent;
}

.custom-add-to-cart-wrapper .quantity .custom-qty-wrapper button.plus-btn {
  border-left-color: transparent;
}

.custom-add-to-cart-wrapper .quantity .custom-qty-wrapper .qty {
  padding: 5px !important;
  background-color: var(--white);
  color: var(--black);
}

.product-type-simple .entry-header {
  display: none;
}



/* MY ACCOUNT PAYMENT METHOD STYLE */
.woocommerce-MyAccount-paymentMethods th,
.woocommerce-MyAccount-paymentMethods td {
  color: var(--white);
  border: 1px solid var(--white-shade-20) !important;
}

.checkout-page form.woocommerce-checkout .woocommerce-billing-fields .form-row,
.checkout-page form.woocommerce-checkout .woocommerce-shipping-fields .form-row {
  margin-bottom: 25px;
}

/* .checkout-page form.woocommerce-checkout .woocommerce-billing-fields .form-row .select2-container .select2-selection__rendered */
.checkout-page form.woocommerce-checkout .woocommerce-billing-fields .form-row .select2-container .select2-container--default .select2-selection--single,
.checkout-page form.woocommerce-checkout .woocommerce-billing-fields .form-row .select2-container .select2-selection {
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}