@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@font-face {
  font-family: "Joly Display";

  src:
    url("../fonts/JolyDisplay-BoldItalic.woff2") format("woff2"),
    url("../fonts/JolyDisplay-BoldItalic.woff") format("woff");

  font-weight: bold;

  font-style: italic;

  font-display: swap;
}

* {
  padding: 0;

  margin: 0;

  border: none;

  -moz-box-sizing: border-box;

  -ms-box-sizing: border-box;

  -webkit-box-sizing: border-box;

  box-sizing: border-box;

  font-family: "Inter";
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;

  padding: 0;

  border: 0;

  font-size: 100%;

  font: inherit;

  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.4;

  font-size: 16px;

  font-weight: 400;

  color: #1f1d1d;

  font-family: "Inter", sans-serif;

  overflow-x: hidden;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";

  content: none;
}

table {
  border-collapse: collapse;

  border-spacing: 0;
}

a {
  text-decoration: none;

  transition: all 0.4s ease-in-out;

  color: #1f1d1d;
}

button {
  cursor: pointer;

  opacity: 1;
}

img {
  display: block;

  width: auto;

  height: auto;

  max-width: 100%;

  max-height: 100%;
}

p {
  font-size: 16px;

  line-height: 1.4;

  font-weight: 400;

  color: #1f1d1d;
}

*:focus {
  outline: none;
}

.wrapper {
  display: block;

  width: 100%;

  min-height: 100vh;

  position: relative;
}

.home .wrapper{
  display:flex;
  flex-flow:column;
}

.container {
  max-width: 1355px;

  padding: 0 30px;

  margin: 0 auto;
}

/* button */

.btn {
  position: relative;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;

  font-size: 14px;

  line-height: 1;

  text-transform: uppercase;

  border-radius: 6px;

  padding: 16px 15px;

  min-width: 208px;

  overflow: hidden;

  border: 1px solid #1f1d1d;

  z-index: 2;

  background-color: #1f1d1d;

  color: #fff;

  transition: all 0.4s ease-in-out;
}

.btn::before {
  content: "";

  display: block;

  position: absolute;

  left: 50%;

  bottom: -20px;

  background-color: #e6ebe7;

  border-radius: 50%;

  aspect-ratio: 1;

  width: 5%;

  margin: auto;

  transform: translate(-50%, 30%);

  z-index: -1;

  transition: all 0.4s ease-in-out;
}

.btn.btn-outline {
  background-color: transparent;

  color: #1f1d1d;

  border-color: rgba(31, 29, 29, 0.15);
}

.btn.btn-outline:before {
  background-color: #1f1d1d;
}

.btn:focus {
  box-shadow: none;
}

.btn ~ .btn {
  margin-left: 18px;
}

.btn.btn-white {
  background-color: #fefefc;

  color: #1f1d1d;

  border-color: #fefefc;
}

button.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (hover: hover) {
  .btn:hover::before {
    width: 140%;
  }

  .btn:hover {
    color: #1f1d1d;

    background-color: transparent;

    border-color: #1f1d1d;
  }

  .btn:active,
  .btn:first-child:active {
    background-color: #1f1d1d !important;

    color: #fff !important;
  }

  .btn.btn-outline:hover {
    color: #fff;

    background-color: #1f1d1d;

    border-color: #1f1d1d;
  }

  .btn.btn-outline:active,
  .btn.btn-outline:first-child:active {
    color: #fff;

    background-color: #1f1d1d !important;
  }
}

/* button */

.sec-head {
  margin-bottom: 25px;
}

.sec-title {
  font-weight: 700;

  font-size: 46px;

  line-height: 1.2;

  display: block;
}

.common-sec {
  padding: 140px 0;
}

.banner-sec {
  position: relative;

  z-index: 2;

  padding-top: 140px;
}
.home .banner-sec {
  padding-bottom: 140px;
  display: flex;
  flex:1;
  align-items: center;
}

.banner-img {
  position: absolute;

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: -1;
}

.banner-img img {
  width: 100%;

  height: 100% !important;

  object-fit: cover;
}

.place-order-main {
  padding: 48px 24px;

  background-color: #fefefc;

  max-width: 1000px;

  margin-inline: auto;
}

.place-order-head {
  text-align: center;

  max-width: 744px;

  margin-inline: auto;

  margin-bottom: 46px;
}

.order-title {
  font-size: 120px;

  font-weight: 700;

  line-height: 1;

  color: #1f1d1d;

  margin-bottom: 18px;
}

.order-small-title {
  font-size: 24px;

  font-weight: 600;

  color: #1f1d1d;

  line-height: 1.3;

  margin-bottom: 18px;
}

.place-order-head p {
  font-weight: 600;
}

.create-account-btns {
  text-align: center;
}

.btn-login {
  min-width: 95px;
}

.create-account-btns .btn-text {
  margin-left: 20px;
}
.mini_cart_btns {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  align-items: flex-start;
}

#clear-all-cart {
  color: red;
  border-bottom-color: red;
}
#clear-all-cart i {
  background-color: red;
}

.btn-text {
  font-size: 16px;

  font-weight: 600;

  line-height: 1;

  display: inline-flex;

  color: #1f1d1d;

  align-items: center;

  gap: 5px;

  border-bottom: 1px solid #1f1d1d;

  padding-bottom: 4px;

  cursor: pointer;

  transition: all 0.4s ease-in-out;

  background-color: transparent;
}

.btn-text .icon.icon-right-arrow {
  width: 14px;

  height: 14px;
}

.btn-text:hover {
  color: #51524c;
}

.btn-text:hover .icon {
  background-color: #51524c;
}

.order-started-sec {
  position: relative;

  z-index: 2;

  min-height: 500px;

  padding: 50px 0;

  display: flex;

  align-items: center;

  justify-content: center;
}

.order-started-head {
  text-align: center;
}

.order-started-title {
  font-size: 60px;

  line-height: 1.2;

  color: #fefefc;

  font-weight: 700;

  margin-bottom: 24px;

  display: flex;

  align-items: center;

  gap: 5px;
}

.order-started-title span {
  font-family: "Joly Display";

  font-size: 67px;

  display: inline-flex;

  align-items: center;

  gap: 24px;
}

.order-started-title span img {
  width: 50px;

  height: 50px;

  flex: 0 0 50px;

  border-radius: 50%;

  overflow: hidden;
}

.order-started-head p {
  font-size: 16px;

  font-weight: 600;

  line-height: 1.4;

  color: #fefefc;
}

.key-benefits-sec {
  background-color: #e6ebe7;

  padding: 48px 30px;
}

.key-benefits-list ul {
  margin: 0 -15px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.key-benefits-list li {
  padding: 0 15px;
}

.key-benefits-list li span {
  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 16px;

  font-weight: 600;

  color: #1f1d1d;

  line-height: 1.4;
}

.key-benefits-list li span img {
  width: 24px;

  height: 24px;

  flex: 0 0 24px;
}

.order-form-sec {
  background-color: #fefefc;

  position: relative;
  width: 100%;
  z-index: 2;
}

.order-form-inner {
  display: flex;
  margin-inline: auto;
}

.order-form {
  width: 70%;
}

.order-form-box {
  max-width: 805px;

  margin-inline: auto;

  padding: 48px 0;
}

.my-order-sidebar {
  background-color: #f7f4f1;

  width: 30%;
}

.my-order-sidebar-box {
  max-width: 500px;

  padding: 48px 24px;

  position: sticky;

  top: 50px;
}

.order-id-rename {
  margin-bottom: 20px;
}

.order-id-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.order-id-input {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-id-input .btn {
  min-width: 100px;
}

.order-id {
  font-size: 20px;

  font-weight: 600;

  line-height: 1.4;

  color: #1f1d1d;
}

.start-building-text {
  text-align: center;

  margin-bottom: 50px;
}

.start-building-text p {
  font-size: 16px;

  color: #1f1d1d;

  font-weight: 400;
}

.subtotal {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 15px;

  margin-bottom: 20px;

  font-weight: 600;
}

.subtotal > strong {
  font-size: 12px;

  text-transform: uppercase;

  line-height: 1;
}

.subtotal-price {
  font-size: 16px;

  line-height: 1.4;
}

.save-checkout-btns {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.save-checkout-btns .btn {
  width: calc(50% - 5px);
  min-width: auto;
  text-align: center;
  margin: 0;
}
.save-checkout-btns #save-cart-button + .btn.btn-checkout {
  width: 100%;
}
.define-choose-title {
  font-size: 14px;

  font-weight: 600;

  line-height: 1;

  color: #1f1d1d;

  padding: 24px;

  margin-bottom: 48px;

  text-transform: uppercase;

  border-top: 1px solid rgba(31, 29, 29, 0.15);

  border-bottom: 1px solid rgba(31, 29, 29, 0.15);
}

.define-color-main {
  margin-bottom: 48px;
}

.choose-option {
  display: flex;

  align-items: center;

  gap: 24px;
}

.choose-option [type="radio"]:checked,
.choose-option [type="radio"]:not(:checked) {
  display: none;
}

.choose-option [type="radio"]:checked + label,
.choose-option [type="radio"]:not(:checked) + label {
  position: relative;

  padding-left: 34px;

  cursor: pointer;

  font-size: 16px;

  line-height: 26px;

  display: inline-block;

  color: #1f1d1d;

  font-weight: 400;
}

.choose-option [type="radio"]:checked + label:before,
.choose-option [type="radio"]:not(:checked) + label:before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 24px;

  height: 24px;

  border: 1px solid rgba(31, 29, 29, 0.15);

  border-radius: 100%;
}

.choose-option [type="radio"]:checked + label:after,
.choose-option [type="radio"]:not(:checked) + label:after {
  content: "";

  width: 10px;

  height: 10px;

  background: #1f1d1d;

  position: absolute;

  top: 8px;

  left: 8px;

  border-radius: 100%;

  -webkit-transition: all 0.2s ease;

  transition: all 0.2s ease;
}

.choose-option [type="radio"]:not(:checked) + label:after {
  opacity: 0;

  -webkit-transform: scale(0);

  transform: scale(0);
}

.choose-option [type="radio"]:checked + label:after {
  opacity: 1;

  -webkit-transform: scale(1);

  transform: scale(1);
}

.choose-option [type="radio"]:checked + label:before {
  border: 1px solid #51524c;
}

.choose-option [type="radio"]:disabled + label {
  opacity: 0.65;
  pointer-events: none;
}

.form-control {
  min-height: 48px;

  padding: 10px 16px;

  font-size: 16px;

  color: #1f1d1d;

  line-height: 1.4;

  resize: none;

  font-weight: 400;

  border: 1px solid rgba(31, 29, 29, 0.15) !important;

  text-align: left;

  background: transparent;

  width: 100%;

  border-radius: 4px;

  font-family: "Inter";
}

.form-control.form-select {
  cursor: pointer;

  background: url(../img/svg/select-arrow.svg) no-repeat right 16px center !important;

  padding-right: 32px !important;

  -webkit-appearance: none;

  appearance: none !important;

  background-size: 12px !important;
}

/* select:has(option:checked:first-child) {
  color: #51524c !important;
} */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;

  -moz-appearance: none;

  appearance: none;

  margin: 0;
}

.form-control:placeholder {
  color: #51524c;
}

.form-control::-webkit-input-placeholder {
  color: #51524c;
}

.form-control::-moz-placeholder {
  color: #51524c;
}

.form-control:-ms-input-placeholder {
  color: #51524c;
}

.form-control:-moz-placeholder {
  color: #51524c;
}

.form-control:focus {
  box-shadow: none;

  outline: none;

  border-color: rgba(31, 29, 29, 0.15);
}

.form-label {
  font-size: 16px;

  font-weight: 600;

  line-height: 1.2 !important;

  color: #1f1d1d;

  display: block;

  margin-bottom: 24px;
}

.form-label span {
  color: #51524c;
  text-transform: uppercase;
  font-size: 12px;
}

.would-like-select {
  display: flex;

  gap: 24px;

  align-items: center;

  margin-bottom: 48px;
}

.would-like-select select {
  min-width: 210px;

  width: auto;
}

.would-like-select .form-label {
  margin-bottom: 0;
}

.select-substrate {
  margin-bottom: 48px;
}

.select-substrate input[type="checkbox"] {
  display: none;
}

.select-substrate input + label {
  display: inline-block;

  border: 1px solid rgba(31, 29, 29, 0.15);

  padding: 10px 12px 10px 54px;

  border-radius: 50px;

  position: relative;

  cursor: pointer;

  width: 100%;

  font-size: 15px;

  &:after {
    position: absolute;

    content: "";

    left: 20px;

    top: 0;

    bottom: 0;

    margin: auto;

    width: 26px;

    height: 26px;

    line-height: 1;

    border: 1px solid rgba(31, 29, 29, 0.15);

    border-radius: 4px;
  }

  &:before {
    content: "";

    width: 18px;

    height: 13px;

    position: absolute;

    left: 26px;

    top: 0;

    bottom: 0;

    margin: auto;

    opacity: 0;

    z-index: 1;

    background: url(../img/svg/check.svg) no-repeat;
  }
}

.select-substrate input:checked + label {
  font-weight: 600;

  &:before {
    opacity: 1;
  }

  &:after {
    opacity: 1;

    border-color: #1f1d1d;

    background-color: #1f1d1d;
  }
}

.quantity-box-main {
  background-color: #f7f4f1;

  padding: 24px;

  border-radius: 4px;

  margin-bottom: 48px;
}

.quantity-box-main .form-label {
  margin-bottom: 14px;
}

.select-substrate-list {
  display: flex;

  gap: 8px 16px;

  flex-wrap: wrap;

  align-items: center;
}

.select-substrate-list .form-check {
  flex: 0 0 calc(33.33% - 16px);
}

.quantity-size-fild {
  display: flex;

  gap: 15px;
}

.quantity-size-fild .form-control {
  flex: 1;
  background-color: #fefefc !important;
}

.size-need-select {
  margin-bottom: 15px;
}

.yc-paint-calculator-results {
  text-align: center;
  display: none;
}
.yc-paint-calculator-results p {
  font-size: 15px;
  line-height: 1.7;
}
.yc-paint-calculator-results p {
  font-size: 15px;
  line-height: 1.7;
}
.yc-paint-calculator-result-liters,
.yc-paint-calculator-result-liters-two {
  font-weight: 700;
}
.quantity-box-main .yes-no-toggle {
  background-color: #fff;
}
.coverage-output {
  color: #000;
  font-size: 14px;
  display: block;
  margin-top: 5px;
  font-weight: 500;
}

.coverage-output b {
  font-weight: 700;
}

.coverage-radio-buttons {
  width: 100%;

  display: flex;

  gap: 16px;
}

.custom-radio input {
  display: none;
}

.radio-btn {
  width: 130px;

  height: 130px;

  border: 1px solid rgba(31, 29, 29, 0.15);

  display: inline-block;

  vertical-align: top;

  border-radius: 4px;

  position: relative;

  text-align: left;

  cursor: pointer;
}

.radio-btn .coats-text {
  width: 100%;

  height: 100%;

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  padding: 16px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  align-items: start;
}

.radio-btn .coats-text img {
  display: block;

  height: 24px;

  margin-bottom: 5px;

  opacity: 0.15;
}

.radio-btn .coats-text .radio-title {
  color: #51524c;

  font-size: 16px;

  font-weight: 400;

  line-height: 1;
}

.custom-radio input:checked + .radio-btn {
  border: 1px solid #1f1d1d;

  background-color: #fefefc;
}

.custom-radio input:checked + .radio-btn .coats-text img {
  opacity: 1;
}

.common-field-main {
  margin-bottom: 48px;
}

.qty-input-group {
  color: #1f1d1d;

  display: flex;

  align-items: center;
}

.qty-input-group .product-qty,
.qty-input-group .qty-count {
  background: transparent;

  color: #1f1d1d;

  font-weight: 400;

  font-size: 16px;

  border: none;

  display: inline-block;

  min-width: 0;

  height: 50px;

  line-height: 1;

  font-family: "Inter";
}

.qty-input-group .product-qty:focus,
.qty-input-group .qty-count:focus {
  outline: none;
}

.qty-input-group .product-qty {
  width: 40px;

  min-width: 0;

  display: inline-block;

  text-align: center;

  -webkit-appearance: textfield;

  -moz-appearance: textfield;

  appearance: textfield;
}

.qty-input-group .product-qty::-webkit-outer-spin-button,
.qty-input-group .product-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;

  appearance: none;

  margin: 0;
}

.qty-input-group .qty-count {
  padding: 0;

  cursor: pointer;

  width: 40px;

  font-size: 16px;

  overflow: hidden;

  border: 1px solid rgba(31, 29, 29, 0.15);

  position: relative;
}

.common-field {
  display: flex;

  gap: 24px;
}

.sample-fields .form-control,
.form-control.form-select.form-select-pol {
  min-width: 210px;

  width: auto;
}

.yes-no-toggle {
  position: relative;

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 0;

  height: 48px;

  padding: 0;

  border: 1px solid rgba(31, 29, 29, 0.15);

  border-radius: 50px;

  width: max-content;

  user-select: none;
}

.yes-no-toggle input {
  position: absolute;

  inset: 0;

  opacity: 0;

  pointer-events: none;
}

.yes-no-toggle label {
  position: relative;

  z-index: 2;

  height: 48px;

  line-height: 48px;

  text-align: center;

  padding: 0 18px;

  border-radius: 50px;

  cursor: pointer;

  font-weight: 600;

  transition: color 0.25s ease;

  font-family: "Inter";

  color: #1f1d1d;

  font-size: 12px;
}

.yes-no-toggle .switch-indicator {
  position: absolute;

  z-index: 1;

  top: 0;

  left: 0;

  width: 50%;

  height: 48px;

  border-radius: 50px;

  background: #1f1d1d;

  transform: translateX(0%);

  transition: transform 0.28s ease;
}

.primer-yes:checked + label {
  color: #fff;
}

.primer-yes:checked ~ .switch-indicator {
  transform: translateX(0%);
}

.primer-no:checked + label {
  color: #fff;
}

.primer-no:checked ~ .switch-indicator {
  transform: translateX(100%);
}

.create-account-btns.left-align {
  text-align: left;
}

.search-clear-main {
  display: flex;

  align-items: center;

  gap: 24px;

  margin-bottom: 24px;
}

.search-box {
  border: 1px solid rgba(31, 29, 29, 0.15);

  background-color: #fefefc;

  border-radius: 4px;

  position: relative;

  width: 100%;
}

.search-box.loading:after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid;
  border-color: #1f1d1d;
  border-right-color: transparent;
  animation: spinner-d3wgkg 1s infinite linear;
  position: absolute;
  right: 13px;
  top: 13px;
}

.search-icon {
  background-color: transparent;

  width: 42px;

  height: inherit;

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  margin: auto;

  cursor: pointer;
}

.search-box .form-control {
  border: none;

  padding-left: 42px;
}

.common-searches {
  display: flex;

  align-items: center;

  gap: 10px;
}

.common-search-text {
  font-size: 9px;

  font-weight: 600;

  line-height: 1;

  color: #51524c;

  text-transform: uppercase;
}

.common-searches ul {
  display: flex;

  align-items: center;

  gap: 10px;
}

.com-searc-btn {
  font-size: 12px;

  font-weight: 600;

  background-color: transparent;

  border: 1px solid rgba(31, 29, 29, 0.15);

  color: #1f1d1d;

  padding: 7px 16px;

  border-radius: 50px;

  cursor: pointer;

  text-transform: uppercase;

  line-height: 1;
}

.quantity-box-main.choose-box-main {
  padding: 48px 75px;
}

.search-box-main {
  margin-bottom: 32px;
}

.choose-color-title {
  font-size: 12px;

  font-weight: 600;

  line-height: 1;

  color: #1f1d1d;

  margin-bottom: 22px;

  text-transform: uppercase;
}

.choose-option-select ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  max-height: 375px;
  overflow: auto;
}

/* Dark scrollbar */

.choose-option-select ::-webkit-scrollbar {
  width: 7px;
  border-radius: 7px;
}

.choose-option-select ::-webkit-scrollbar-track {
  background: #f0eae5;
}

.choose-option-select ::-webkit-scrollbar-thumb {
  background: #8b8987;
  border-radius: 7px;
}

.choose-option-select ::-webkit-scrollbar-thumb:hover {
  background: #000;
}

/* Firefox */
.choose-option-select * {
  scrollbar-width: thin;
  scrollbar-color: #8b8987 #f0eae5;
}

.choose-option-select li {
  flex: 0 0 calc(33.33% - 24px);
}

.color-option {
  display: flex;

  align-items: center;

  gap: 10px;

  cursor: pointer;
}

.color-option span {
  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 16px;

  color: #51524c;

  line-height: 1;
}

.color-option span i {
  width: 30px;

  height: 30px;

  flex: 0 0 30px;

  border-radius: 50%;

  border: 1px solid rgba(31, 29, 29, 0.15);

  display: block;
}

.color-option .form-check:checked,
.color-option .form-check:not(:checked) {
  display: none;
}

.choose-color-option {
  margin-bottom: 32px;
}

.choose-color-option:last-child {
  margin-bottom: 0;
}

.show-color-choose {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 48px;
  padding: 24px;
  background-color: #fefefc;
  overflow: hidden;
}

.show-color-box {
  display: flex;

  align-items: center;

  gap: 24px;

  font-size: 16px;

  font-weight: 600;

  color: #1f1d1d;

  line-height: 1;
}

.show-color-box span {
  width: 50px;

  height: 50px;

  flex: 0 0 50px;

  display: block;
}

.accordion-content {
  background-color: #fefefc;
}

.accordion-header {
  cursor: pointer;

  position: relative;
}

.accordion-item.active .accordion-content {
  border-top: 1px solid rgba(31, 29, 29, 0.15);
}
.accordion-header .remove_from_cart_button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: calc(100% + 10px);
  border: none;
  padding: 0;
  background: none !important;
  display: block;
  height: 18px;
}

.mini_cart_item.active .accordion-header .remove_from_cart_button {
  display: none !important;
}

.accordion-header .show-color-choose {
  margin-bottom: 0;
}

.accordion-header .show-color-box {
  gap: 16px;
}

.accordion-header .show-color-box span {
  border-radius: 50%;

  transition: all 0.3s ease-in-out;
}

.show-color-price {
  display: flex;

  align-items: center;

  gap: 11px;

  flex: 0 0 174px;

  justify-content: end;
}

.show-color-price .option {
  font-size: 12px;

  font-weight: 600;

  color: #51524c;

  line-height: 1;

  text-transform: uppercase;
}

.show-color-price .price {
  font-size: 16px;

  font-weight: 600;

  color: #1f1d1d;

  line-height: 1;
}

.option-price-main {
  display: flex;

  gap: 8px;

  align-items: center;
}

.accordion-item {
  border: 1px solid rgba(31, 29, 29, 0.15);
}

.accordion-item.active .icon-accordion-arrow {
  transform: rotate(180deg);
}

.accordion-item.active .show-color-box span {
  border-radius: 0;
}

.show-color-text {
  border-bottom: 1px solid rgba(31, 29, 29, 0.15);

  padding: 24px;
}

.show-color-text:last-child {
  border-bottom: 0;
}

.show-color-text ul {
  display: flex;

  gap: 24px;

  justify-content: space-between;
}

.color-info-title {
  font-size: 12px;

  font-weight: 600;

  line-height: 1;

  display: block;

  color: #51524c;

  text-transform: uppercase;
  padding-top: 3px;
}

.color-info-detail {
  display: flex;

  gap: 16px;

  flex-wrap: wrap;

  justify-content: end;
}

.color-info-detail span {
  font-size: 16px;

  color: #1f1d1d;

  line-height: 1;

  font-weight: 600;

  text-align: right;
}

.accordion-item ~ .accordion-item {
  border-top: 0;
}

.show-color-text.edit-delete ul {
  align-items: center;
}

.show-color-text .btn-text {
  padding-bottom: 0;

  border-bottom: 0;

  font-size: 12px;

  text-transform: uppercase;
}

.show-color-text .btn-text .icon {
  width: 18px;

  height: 18px;
}

.show-color-text .btn {
  min-width: 95px;
}

.accordion-container {
  margin-bottom: 34px;
}

.add-color {
  margin-bottom: 55px;

  text-align: center;
}

/*----------  Header  ----------*/

body.is-nav-open {
  overflow: hidden;
}

.header {
  background-color: #fefefc;

  padding: 15px 24px;

  width: 100%;

  position: relative;

  z-index: 10;

  transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    all 0.4s ease-in-out;
}

.is-header-sticky .header {
  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

  animation: HeaderRise 0.8s linear;
}

@keyframes HeaderRise {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translateY(0);
  }
}

.header-logo {
  display: inline-block;
}

.header-logo img {
  display: block;

  object-fit: cover;

  width: 210px;
}

.nav-wrap {
  display: flex;

  align-items: center;
}

.nav-wrap nav > ul {
  list-style: none;

  display: flex;

  align-items: center;

  padding: 0;

  margin: 0;

  gap: 30px;
}

.nav-wrap ul a {
  display: inline-block;

  text-decoration: none;

  color: #1f1d1d;

  padding: 10px 15px;

  transition: 0.4s all ease-in-out;
}

.nav-wrap ul li > a {
  font-weight: 600;

  font-size: 12px;

  line-height: 1.3;

  text-transform: uppercase;
}

.nav-wrap ul li.current-menu-item > a {
  color: #1f1d1d;
}

.header nav li {
  position: relative;
}

.menu-icon {
  display: none;

  width: 32px;

  height: 32px;

  position: relative;

  padding: 0;

  margin-top: 0;

  color: #1f1741;
}

.header .row {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  align-items: center;
}

.header .row .col-auto {
  flex: 0 0 auto;

  width: auto;

  line-height: 1;
}

.header .nav-head {
  display: none;
}

.header-end {
  display: flex;

  align-items: center;

  line-height: 1;

  gap: 24px;

  justify-content: end;
}

.my-account {
  display: inline-block;

  line-height: 1;
}

.cart-left {
  position: relative;

  display: inline-block;
}

.cart-left .icon {
  width: 20px;

  height: 20px;
}

.cart-left .mini-cart-counter {
  position: absolute;

  top: -10px;

  right: -10px;

  font-weight: 600;

  background-color: #1f1d1d;

  width: 20px;

  height: 20px;

  text-align: center;

  font-size: 14px;

  color: #fff;

  line-height: 1;

  border-radius: 100%;

  display: flex;

  align-items: center;

  justify-content: center;
}

.cart-top-btn {
  display: flex;

  align-items: center;

  gap: 7px;
}

.cart-text {
  font-size: 14px;

  font-weight: 600;

  color: #1f1d1d;

  line-height: 1;
}

.navigation-toggler {
  display: none;
}

.my-account .icon {
  width: 18px;

  height: 18px;
}

body:not(.is-header-sticky) .header.light-header {
  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  background-color: transparent;
}

body:not(.is-header-sticky) .header.light-header .header-logo img {
  filter: brightness(0) saturate(100%) invert(95%) sepia(8%) saturate(482%)
    hue-rotate(314deg) brightness(107%) contrast(99%);
}

body:not(.is-header-sticky) .header.light-header .nav-wrap ul a {
  color: #fefefc;
}

body:not(.is-header-sticky)
  .header.light-header
  .nav-wrap
  ul
  li.current-menu-item
  > a {
  color: #fefefc;
}

body:not(.is-header-sticky) .header.light-header .icon {
  background-color: #fefefc;
}

body:not(.is-header-sticky) .header.light-header .cart-left .mini-cart-counter {
  background-color: #fefefc;

  color: #1f1d1d;
}

body:not(.is-header-sticky) .header.light-header .cart-text {
  color: #fefefc;
}

body:not(.is-header-sticky) .is-header-sticky .header.light-header {
  position: fixed;

  background-color: #fefefc;
}

.footer {
  padding: 32px 24px;

  background-color: #fefefc;
}

.footer .row {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  gap: 15px;

  align-items: center;
}

.footer-box-title {
  font-size: 14px;

  font-weight: 600;

  color: #1f1d1d;

  line-height: 1;

  margin-bottom: 15px;

  text-transform: uppercase;
}

.footer-links ul {
  display: flex;

  align-items: center;
}

.footer-links a {
  color: #51524c;

  text-decoration: none;

  font-size: 16px;

  font-weight: 400;

  line-height: 1;

  padding: 0 14px;

  position: relative;
}

@media (hover: hover) {
  .footer-links a:hover {
    color: #1f1d1d;
  }
}

.footer-links li:first-child a {
  padding-left: 0;
}

.footer-links li:first-child a::after {
  display: none;
}

.footer-links a::after {
  content: "•";

  position: absolute;

  top: 1px;

  bottom: 0;

  left: -5px;

  margin: auto;
}

.footer-box-title.certificat-title {
  text-align: right;
}

.spinner {
  width: 40px;

  height: 40px;

  border-radius: 50%;

  border: 6.4px solid;

  border-color: #e6ebe7;

  border-right-color: #1f1d1d;

  animation: spinner-d3wgkg 1s infinite linear;
}

#loading {
  margin: 0 auto;
}

.loading .define-choose-list-box {
  opacity: 0 !important;
}

@keyframes spinner-d3wgkg {
  to {
    transform: rotate(1turn);
  }
}

/*checkout page*/

.woocommerce-checkout .entry-header {
  display: none;
}

.my-checkout-wrap {
  background-color: #fefefc;

  position: relative;
  padding-top: 50px;
  z-index: 2;
}
.checkout-coupon + .woocommerce-message {
  margin-top: 15px !important;
}

.my-checkout-inner .wc-checkout-form {
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
  margin-top: 50px;
}

.wc-checkout-form .checkout-billing-shipping {
  width: 70%;
}

.wc-checkout-form .woocommerce-checkout-review-order {
  background-color: #f7f4f1;

  width: 30%;
}

.my-checkout-inner {
  position: relative;
}
.checkout-coupon,
.checkout-top-box {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.my-checkout-inner .start-building-text {
  text-align: left;
  margin-bottom: 20px;
}

.checkout-billing-shipping-wrap {
  max-width: 805px;

  margin-inline: auto;

  padding: 48px 0;
  padding-top: 30px;
}

.woocommerce-mini-cart__total .woocommerce-remove-coupon {
  display: block;

  color: red;

  font-size: 12px;

  text-align: end;

  font-weight: 400;

  line-height: 1;

  padding-top: 3px;

  transition: all 0.4s ease-in-out;
}

.woocommerce-mini-cart__total .woocommerce-remove-coupon:hover {
  color: #1f1d1d;
}

.woocommerce-checkout #payment .place-order .button {
  position: relative;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;

  font-size: 14px;

  line-height: 1;

  text-transform: uppercase;

  border-radius: 6px;

  padding: 16px 15px;

  min-width: 208px;

  overflow: hidden;

  border: 1px solid #1f1d1d;

  z-index: 2;

  background-color: #1f1d1d;

  color: #fff;

  float: inherit;

  width: 100%;

  transition: all 0.4s ease-in-out;
}

.woocommerce-checkout #payment .place-order .button::before {
  content: "";

  display: block;

  position: absolute;

  left: 50%;

  bottom: -20px;

  background-color: #e6ebe7;

  border-radius: 50%;

  aspect-ratio: 1;

  width: 5%;

  margin: auto;

  transform: translate(-50%, 30%);

  z-index: -1;

  transition: all 0.4s ease-in-out;
}

.woocommerce-checkout #payment .place-order .button:hover {
  color: #1f1d1d;

  background-color: transparent;

  border-color: #1f1d1d;
}

.woocommerce ul#shipping_method li {
  margin: 0 !important;
}

.my-checkout-wrap .subtotal {
  margin-bottom: 12px;
}

.my-checkout-wrap .subtotal.tax-total {
  border-bottom: 1px solid rgba(31, 29, 29, 0.15) !important;

  padding-bottom: 15px;

  margin-bottom: 15px;
}

.woocommerce-checkout #payment .place-order .button:hover::before {
  width: 140%;
}
/* 
.woocommerce-checkout #payment .payment_methods li.wc_payment_method label {
  position: relative;

  padding-left: 34px;

  cursor: pointer;

  font-size: 16px;

  line-height: 26px;

  display: inline-block;

  color: #1f1d1d;

  font-weight: 400;
}

.woocommerce-checkout
  #payment
  .payment_methods
  li.wc_payment_method
  label::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 24px;

  height: 24px;

  border: 1px solid rgba(31, 29, 29, 0.15);

  border-radius: 100%;
}

.woocommerce-checkout
  #payment
  .payment_methods
  li.wc_payment_method
  label::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #1f1d1d;
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  transform: scale(0);
}

.woocommerce-checkout
  #payment
  .payment_methods
  li.wc_payment_method
  input[type="radio"]:checked
  + label::before {
  border-color: #1f1d1d;
}

.woocommerce-checkout
  #payment
  .payment_methods
  li.wc_payment_method
  input[type="radio"]:checked
  + label::after {
  opacity: 1;

  transform: scale(1);
} */
.woocommerce-checkout #payment ul.payment_methods li {
  margin: 0 !important;
}
.woocommerce-checkout #payment ul.payment_methods li input {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(31, 29, 29, 0.15);
  appearance: none;
  border-radius: 50%;
  display: inline-block;
  vertical-align: text-top;
  margin: 0 8px 0 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods li input:checked {
  border-color: #1f1d1d;
  background: #1f1d1d;
  box-shadow: 0 0 0 4px #f7f4f1 inset;
}

.woocommerce-checkout #payment {
  background: transparent !important;

  border-radius: 0 !important;
}

.woocommerce-checkout #payment ul.wc_payment_methods {
  padding: 0 !important;

  padding-bottom: 15px !important;
}

.woocommerce-checkout #payment ul.wc_payment_methods .payment_box p {
  font-size: 14px;
  line-height: 1.2;
}

/*
.woocommerce-checkout #payment div.payment_box {
  background-color: transparent !important;

  font-size: 14px !important;

  padding: 0 !important;

  margin: 0 !important;

  padding-left: 39px !important;

  padding-top: 3px !important;
}

.woocommerce-checkout #payment div.payment_box::before {
  display: none !important;
}

.woocommerce-checkout #payment div.payment_box p {
  font-size: 14px !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
  margin-bottom: 20px !important;
}

.woocommerce-checkout #payment ul.payment_methods li:last-child {
  margin-bottom: 0 !important;
}

*/

.woocommerce-privacy-policy-text p {
  font-size: 14px;

  margin-bottom: 20px;
}

.woocommerce-privacy-policy-text p a {
  font-size: 14px;

  font-weight: 600;

  line-height: 1;

  display: inline-flex;

  color: #1f1d1d;

  align-items: center;

  gap: 5px;

  border-bottom: 1px solid #1f1d1d;

  padding-bottom: 4px;

  cursor: pointer;

  transition: all 0.4s ease-in-out;

  background-color: transparent;
}
.checkout-billing,
.checkout-shipping {
  position: relative;
}
.woocommerce-privacy-policy-text p a:hover {
  color: #51524c;
}

.woocommerce-billing-fields .order-id {
  margin-bottom: 15px;
}

.woocommerce-page .input-text {
  min-height: 48px;

  padding: 10px 16px !important;

  font-size: 15px;

  color: #1f1d1d !important;

  line-height: 1.4 !important;

  resize: none;

  font-weight: 400 !important;

  border: 1px solid rgba(31, 29, 29, 0.15) !important;

  text-align: left;

  background: transparent;

  width: 100%;

  border-radius: 4px !important;

  font-family: "Inter" !important;
}

.woocommerce-page .input-text::placeholder {
  color: #51524c !important;
}

.woocommerce-page .input-text::-webkit-input-placeholder {
  color: #51524c !important;
}

.woocommerce-page .input-text::-moz-placeholder {
  color: #51524c !important;
}

.woocommerce-page .input-text:-ms-input-placeholder {
  color: #51524c !important;
}

.woocommerce-page .input-text:-moz-placeholder {
  color: #51524c !important;
}

.woocommerce-page .input-text:focus {
  box-shadow: none;

  outline: none;

  border-color: rgba(31, 29, 29, 0.15) !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  background-color: transparent !important;

  border: 1px solid rgba(31, 29, 29, 0.15) !important;

  border-radius: 4px !important;

  padding: 10px 16px !important;

  font-size: 16px;

  color: #1f1d1d !important;

  min-height: 48px;

  line-height: 1.6 !important;
}

.select2-container--default .select2-selection--single {
  background-color: transparent !important;

  border: none !important;

  height: auto !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  background-image: url(../img/svg/select-arrow.svg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  width: 12px !important;

  height: 8px !important;

  top: 21px !important;

  right: 20px !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none !important;
}

.select2-container--open .select2-dropdown {
  top: -28px !important;
}

.checkout-billing-shipping-wrap .form-row {
  margin-bottom: 20px !important;
}

.woocommerce-checkout
  .woocommerce-billing-fields__field-wrapper
  .form-row-first,
.woocommerce-checkout
  .woocommerce-shipping-fields__field-wrapper
  .form-row-first {
  width: 49% !important;

  margin-right: 0 !important;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-last,
.woocommerce-checkout
  .woocommerce-shipping-fields__field-wrapper
  .form-row-last {
  width: 49% !important;

  margin-left: 0 !important;
}

.woocommerce-checkout
  .woocommerce-billing-fields__field-wrapper
  #billing_address_2_field,
.woocommerce-checkout
  .woocommerce-billing-fields__field-wrapper
  #billing_state_field,
.woocommerce-checkout
  .woocommerce-shipping-fields__field-wrapper
  #shipping_address_2_field,
.woocommerce-checkout
  .woocommerce-shipping-fields__field-wrapper
  #shipping_state_field {
  width: 49% !important;

  float: left;
}

.woocommerce-checkout
  .woocommerce-billing-fields__field-wrapper
  #billing_city_field,
.woocommerce-checkout
  .woocommerce-billing-fields__field-wrapper
  #billing_postcode_field,
.woocommerce-checkout
  .woocommerce-shipping-fields__field-wrapper
  #shipping_city_field,
.woocommerce-checkout
  .woocommerce-shipping-fields__field-wrapper
  #shipping_postcode_field {
  width: 49% !important;

  float: right;

  clear: inherit !important;
}

.woocommerce-checkout .woocommerce-shipping-fields {
  margin-top: 15px;
}

.woocommerce-form__label-for-checkbox {
  cursor: pointer;

  display: block;

  position: relative;
}

#ship-to-different-address .woocommerce-form__input-checkbox {
  position: absolute;

  top: 50%;

  left: 0;

  transform: translateY(-50%);

  margin-right: 0;

  width: 26px;

  height: 26px;

  line-height: 1;

  border: 1px solid rgba(31, 29, 29, 0.15);

  border-radius: 4px;

  appearance: none !important;
}

#ship-to-different-address .woocommerce-form__input-checkbox:checked {
  background: url(../img/svg/check.svg) no-repeat;

  border-color: #1f1d1d;

  background-color: #1f1d1d;

  background-position: center;

  background-size: 15px;
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox span {
  padding-left: 40px;
}

.woocommerce-shipping-fields h3 {
  font-size: 20px;

  font-weight: 600;

  line-height: 1.4;

  color: #1f1d1d;

  margin-bottom: 20px;
}

/*checkout page*/

/* My Account Pages */

.woocommerce-account .entry-header {
  display: none;
}

.my-account-page {
  position: relative;

  z-index: 2;

  min-height: 742px;

  padding: 50px 0 24px;
}

.my-account-top,
.my-account-bottom {
  margin: 0 24px;

  padding: 24px 48px;

  border-top: 1px solid rgba(254, 254, 252, 0.3);

  border-bottom: 1px solid rgba(254, 254, 252, 0.3);

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.my-account-bottom {
  border-top: none;
}

.my-account-box {
  height: 100%;

  width: 100%;

  min-height: 692px;

  display: flex;

  flex-direction: column;

  justify-content: end;
}

.my-account-top .my-account-title {
  font-weight: 700;

  font-size: 60px;

  line-height: 1.1;

  letter-spacing: -0.02em;

  color: #fefefc;
}

.my-account-top .btn {
  min-width: 127px;
}

.my-account-top .btn .icon {
  margin-left: 8px;

  width: 12px;

  height: 12px;
}

.my-account-bottom .cms-con p {
  max-width: 500px;

  font-weight: 600;

  font-size: 16px;

  line-height: 1.6;

  color: #fefefc;
}

.certified-img {
  display: flex;

  align-items: center;

  column-gap: 16px;
}

.certified-img .img-box {
  width: 100%;

  height: 74px;
}

.certified-img .img-box img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.customer-login-form {
  background-color: #e6ebe7;

  padding: 48px 30px;
}

.customer-login-form .login-form {
  max-width: 471px;

  margin: auto;
}

.register-form-sec .customer-login-form .login-form {
  max-width: 627px;
}

.customer-login-form .woocommerce-form-login,
.customer-login-form .woocommerce-form-register {
  border: none !important;

  background-color: #fefefc;

  padding: 48px !important;

  border-radius: 0 !important;

  margin: 0 !important;
}

.woocommerce-account .form-group,
.register-form-sec .form-group {
  margin-bottom: 48px !important;
}

.login-remember {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 48px;
}

.login-remember .form-row {
  margin-bottom: 0 !important;
}

.woocommerce-account .woocommerce-form-login__rememberme {
  display: flex;

  align-items: center;

  gap: 8px;
}

.woocommerce-account .form-check-input[type="checkbox"] {
  width: 16px;

  height: 16px;

  border: 1px solid rgba(31, 29, 29, 0.15);

  border-radius: 4px;

  background-color: transparent;

  appearance: none;
}

.woocommerce-account .form-check-input[type="checkbox"]:checked {
  background: url(../img/svg/check.svg) no-repeat;

  border-color: #1f1d1d;

  background-color: #1f1d1d;

  background-position: center;

  background-size: 10px;
}

.woocommerce-LostPassword a,
.customer-login-form .register-link a {
  font-size: 16px;

  font-weight: 600;

  line-height: 1;

  display: inline-flex;

  color: #1f1d1d;

  align-items: center;

  gap: 5px;

  border-bottom: 1px solid #1f1d1d;

  padding-bottom: 4px;

  cursor: pointer;

  transition: all 0.4s ease-in-out;

  background-color: transparent;
}

.customer-login-form .register-link a {
  border-bottom: none;

  padding-bottom: 0;
}

.woocommerce-LostPassword a:hover,
.customer-login-form .register-link a:hover {
  color: #51524c;
}

.customer-login-form .btn {
  min-width: 127px;
}

.customer-login-form .btn .icon {
  background-color: currentColor;

  margin-left: 8px;

  width: 12px;

  height: 12px;
}

.customer-login-form .register-link {
  text-align: center;

  margin-top: 30px;
}

.yc-register-wrapper {
  max-width: 760px;

  margin: 40px auto;

  background: #f4f7f5;

  padding: 40px 30px;
}

.yc-step {
  display: none;
}

.yc-step.active {
  display: block;
}

.yc-next,
.yc-prev,
.yc-step-nav .button.submit {
  display: inline-block;

  padding: 10px 22px;

  background: #000;

  color: #fff;

  border: none;

  cursor: pointer;

  margin-top: 15px;

  font-size: 14px;

  text-transform: uppercase;

  letter-spacing: 0.04em;
}

.yc-prev {
  background: #777;
}

.yc-steps-header {
  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;
}

.yc-step-dot {
  width: 30px;

  height: 30px;

  border-radius: 50%;

  border: 2px solid #ccc;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 13px;

  margin: 0 6px;

  background: #fff;
}

.yc-step-dot.active {
  border-color: #000;

  background: #000;

  color: #fff;
}

.yc-step-line {
  flex: 1;

  height: 2px;

  background: #ccc;
}

.yc-register-form .form-row {
  margin-bottom: 16px;
}

.yc-register-form label span {
  color: #e03;
}

.yc-register-form input[type="text"],
.yc-register-form input[type="email"],
.yc-register-form textarea,
.yc-register-form select {
  width: 100%;

  padding: 8px 10px;

  border: 1px solid #ddd;

  background: #fff;
}

.yc-checkbox-group {
  display: flex;

  flex-wrap: wrap;

  gap: 10px 16px;

  margin-bottom: 16px;
}

.yc-checkbox {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  font-size: 14px;
}

.yc-checkbox input[type="checkbox"] {
  width: 16px;

  height: 16px;
}

.yc-contact-cards .yc-contact-card {
  border: 1px solid #ddd;

  padding: 8px 10px;

  border-radius: 8px;

  background: #fff;
}

.yc-contact-inner {
  display: flex;

  align-items: center;

  gap: 8px;
}

.yc-contact-avatar img {
  width: 32px;

  height: 32px;

  border-radius: 50%;

  object-fit: cover;
}

.yc-optin-row .yc-optin-options {
  display: flex;

  gap: 10px;

  margin-top: 8px;
}

.yc-radio-pill {
  position: relative;

  display: inline-flex;

  align-items: center;

  cursor: pointer;
}

.yc-radio-pill input {
  position: absolute;

  opacity: 0;

  pointer-events: none;
}

.yc-radio-pill span {
  padding: 6px 14px;

  border-radius: 999px;

  border: 1px solid #ccc;

  font-size: 13px;

  background: #fff;
}

.yc-radio-pill input:checked + span {
  background: #000;

  color: #fff;

  border-color: #000;
}

.register-step-form {
  max-width: 650px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: transparent;
}

.register-step-form .register-step {
  position: relative;
  text-align: center;
  color: #51524c;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.1;
  text-transform: uppercase;
  cursor: pointer;
}

.register-step-form .register-step:nth-child(2)::before {
  content: "";
  position: absolute;
  background-color: #c6c1c6;
  height: 2px;
  width: 180px;
  top: 25px;
  left: 85px;
}

.register-step-form .register-step:nth-child(2).success::before {
  background-color: #9ddc92;
}

.register-step-form .register-step:nth-child(2)::after {
  content: "";
  position: absolute;
  background-color: #c6c1c6;
  height: 2px;
  width: 180px;
  top: 25px;
  left: -160px;
}

.register-step-form
  .register-step.success
  + .register-step:nth-child(2)::after {
  background-color: #9ddc92;
}

.register-step-form .register-step span {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(31, 29, 29, 0.15);
  background-color: transparent;
  color: #c6c1c6;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.register-step-form .register-step.active span {
  border-color: #1f1d1d;
  border-width: 2px;
  background-color: #fefefc;
  color: #1f1d1d;
}

.register-step-form .register-step span .icon {
  display: none;
}

.register-step-form .register-step.success span {
  background-color: #9ddc92;
  border-color: #9ddc92;
  font-size: 0;
}

.register-step-form .register-step.success span .icon {
  display: block;
  background-color: #fefefc;
}

.register-step-form .register-step.active {
  color: #1f1d1d;
}

.woocommerce-form-register .form-label .required {
  color: #ff7b67;
  font-weight: 700;
  border: 0 !important;
  text-decoration: none;
  visibility: visible;
}

.woocommerce form .form-row .required {
  color: #ff7b67 !important;
}

.woocommerce-form-register .form-control.email {
  background-image: url(../img/svg/mail.svg) !important;
  background-repeat: no-repeat;
  background-position: center left 17px;
  background-size: 16px;
  padding-left: 42px;
}

.select-checkbox-type {
  display: flex;
  gap: 8px 16px;
  flex-wrap: wrap;
  align-items: center;
}

.select-checkbox-type .form-check {
  flex: 0 0 calc(50% - 16px);
}

.select-checkbox-type input[type="checkbox"] {
  display: none;
}

.select-checkbox-type input[type="checkbox"] + label {
  display: inline-block;
  border: 1px solid rgba(31, 29, 29, 0.15);
  padding: 9px 12px 9px 60px;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

.select-checkbox-type input:checked + label {
  font-weight: 600;
}

.select-checkbox-type input[type="checkbox"] + label::after {
  position: absolute;
  content: "";
  left: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  line-height: 1;
  border: 1px solid rgba(31, 29, 29, 0.15);
  border-radius: 4px;
}

.select-checkbox-type input[type="checkbox"] + label::before {
  content: "";
  width: 18px;
  height: 13px;
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  z-index: 1;
  background: url(../img/svg/check.svg) no-repeat;
}

.select-checkbox-type input[type="checkbox"]:checked + label::before {
  opacity: 1;
}

.select-checkbox-type input[type="checkbox"]:checked + label::after {
  opacity: 1;
  border-color: #1f1d1d;
  background-color: #1f1d1d;
}

.select-radio-type .radio-group {
  display: flex;
  align-items: center;
  border: 1px solid #c6c1c6;
  width: 100%;
  margin-bottom: 24px;
}

.select-radio-type .radio-group .contact-card {
  width: 33.33%;
  padding: 12px;
  cursor: pointer;
  border-right: 1px solid #c6c1c6;
  position: relative;
}

.select-radio-type .radio-group .contact-card:last-child {
  border-right: none;
}

.select-radio-type .radio-group .contact-card img {
  width: 141px;
  height: 141px;
  object-fit: cover;
  margin: 0 auto 10px;
}

.contact-card input[type="radio"] {
  position: absolute;
  top: 6px;
  right: 6px;
  opacity: 0;
  visibility: visible;
  background-image: url(../img/check.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  appearance: none;
  background-size: contain;
}

.contact-card input[type="radio"]:checked {
  opacity: 1;
  visibility: visible;
}

.contact-card input[type="radio"] + div,
.contact-card input[type="radio"] ~ div {
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: #51524c;
  transition: all 0.2s ease-in-out;
}

.contact-card input[type="radio"]:checked + div,
.contact-card input[type="radio"]:checked ~ div {
  color: #1f1d1d;
}

.opt-in-label {
  color: #1f1d1d;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.1;
  display: block;
  margin-bottom: 24px;
}

.opt-in .form-label {
  font-weight: 400;
  line-height: 1.6 !important;
}

.opt-in .yes-no-toggle label {
  text-transform: uppercase;
}

.woocommerce-error,
.checkout-inline-error-message {
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  margin: 0 !important;
  color: #ff7b67 !important;
  font-weight: 600;
  font-size: 9px !important;
  line-height: 1;
  text-transform: uppercase;
  padding-left: 14px !important;
  padding-top: 8px !important;
  position: relative;
}

.woocommerce-error::before,
.checkout-inline-error-message::before {
  content: "" !important;
  background-image: url(../img/svg/union.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  width: 10px;
  height: 10px;
  background-position: center left;
  left: 0 !important;
  top: 8px !important;
  position: absolute;
}

.register-form-sec .form-group.error .form-control,
.woocommerce-invalid .input-text {
  border-color: #ff7b67 !important;
  background-color: rgba(255, 200, 183, 0.1) !important;
  color: #ff7b67 !important;
}

.register-form-sec .form-group.error .form-control::placeholder,
.woocommerce-invalid .input-text::placeholder {
  color: #ff7b67 !important;
}

:-webkit-autofill,
:-webkit-autofill:hover,
:-webkit-autofill:focus,
:-webkit-autofill:active {
  -webkit-text-fill-color: #1f1d1d !important;
  transition: background-color 5000000s ease-in-out 0s !important;
}

.thank-you-sec {
  height: calc(100vh - 230px);
  padding: 80px 0;
  display: flex;
  align-items: center;
  text-align: center;
}

.thank-you-title {
  color: #1f1d1d;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: -0.66px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.thank-you-title img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 16px;
}

.thank-you-con {
  color: #1f1d1d;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  display: block;
  max-width: 710px;
  margin: 0 auto 48px;
}

.my-account-bottom .btn {
  display: none;
}

.woocommerce-ResetPassword p {
  color: #1f1d1d;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.customer-login-form.my-account-details {
  padding: 48px 0;
}

.my-account-wrap .woocommerce-MyAccount-navigation,
.my-account-wrap .woocommerce-MyAccount-content {
  float: inherit !important;
}

.my-account-wrap {
  display: flex;
  column-gap: 30px;
  background-color: #fefefc;
  padding: 38px;
}

.my-account-wrap .woocommerce-MyAccount-navigation {
  width: 20% !important;
  border-right: 2px solid rgba(31, 29, 29, 0.15);
}

.my-account-wrap .woocommerce-MyAccount-content {
  width: 80% !important;
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link {
  padding-left: 0;
  margin-bottom: 0;
  position: relative;
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a {
  display: flex;
  align-items: center;
  column-gap: 8px;
  padding: 10px 0;
  color: #1f1d1d;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  transition: all 0.4s ease-in-out;
}

.woocommerce-MyAccount-navigation
  .woocommerce-MyAccount-navigation-link
  a:hover,
.woocommerce-MyAccount-navigation
  .woocommerce-MyAccount-navigation-link.is-active
  a {
  color: #51524c;
}

.woocommerce-MyAccount-navigation
  .woocommerce-MyAccount-navigation-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: inherit;
  right: -2px;
  width: 2px;
  height: 100%;
  background-color: #1f1d1d;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.woocommerce-MyAccount-navigation
  .woocommerce-MyAccount-navigation-link.is-active::after {
  opacity: 1;
}

.woocommerce-dashboard .woocommerce-MyAccount-content p {
  margin-bottom: 10px;
}

.woocommerce-dashboard .woocommerce-MyAccount-content p:last-child {
  margin-bottom: 0;
}

.woocommerce-dashboard .woocommerce-MyAccount-content p a {
  color: #51524c;
}

.woocommerce-dashboard .woocommerce-MyAccount-content p a:hover {
  color: #1f1d1d;
}

.order-table-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.woocommerce-orders-table {
  width: 100%;
}

.order-table-wrapper .woocommerce-orders-table {
  border: none !important;
  margin: 0 !important;
}

.woocommerce-orders table:not(.has-background) th {
  background-color: #f3f3f3 !important;
  padding: 16px 24px !important;
  color: #1f1d1d;
  font-weight: 500 !important;
  font-size: 16px;
  line-height: 1 !important;
}

.woocommerce-orders table:not(.has-background) tbody td {
  background-color: transparent !important;
  padding: 16px 24px !important;
  color: #1f1d1d;
  font-weight: 400 !important;
  font-size: 14px;
  line-height: 1 !important;
}

.woocommerce-orders table:not(.has-background) tbody td a:hover {
  color: #51524c !important;
}

.woocommerce-orders
  table:not(.has-background)
  tbody
  td.woocommerce-orders-table__cell-order-actions
  .btn {
  min-width: auto;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 600;
}

.woocommerce-view-order .woocommerce-MyAccount-content p {
  margin-bottom: 20px;
}

.woocommerce-order-details__title,
.address-title,
.woocommerce-EditAccountForm h3,
.profie-details h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  text-align: left;
  color: #1f1d1d;
  margin-bottom: 15px;
}

.address-title,
.woocommerce-EditAccountForm h3,
.profie-details h3 {
  margin-bottom: 25px;
}

.woocommerce-edit-address .woocommerce-MyAccount-content p {
  margin-bottom: 20px;
}

.woocommerce-edit-address .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.woocommerce-edit-address .woocommerce-Address-title h2,
.woocommerce-customer-details .woocommerce-Address h2 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.1;
  color: #1f1d1d;
  display: block;
}

.woocommerce-customer-details .woocommerce-Address h2 {
  margin-bottom: 20px;
}

.woocommerce-edit-address .woocommerce-Address-title::before,
.woocommerce-edit-address .woocommerce-Address-title::after {
  content: unset !important;
}

.woocommerce-edit-address .woocommerce-Address-title .btn {
  min-width: auto;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 600;
}

.woocommerce-edit-address .woocommerce-Address,
.woocommerce-customer-details .woocommerce-Address {
  border: 1px solid rgba(31, 29, 29, 0.15);
  border-radius: 6px;
  overflow: hidden;
  padding: 15px;
}

.woocommerce-edit-address .col2-set,
.woocommerce-customer-details .col2-set {
  display: flex !important;
  column-gap: 15px;
}

.woocommerce-edit-address .col2-set .col-1,
.woocommerce-edit-address .col2-set .col-2,
.woocommerce-customer-details .col2-set .col-1,
.woocommerce-customer-details .col2-set .col-2 {
  width: 50% !important;
  float: inherit !important;
}

.woocommerce-customer-details .col2-set::before,
.woocommerce-customer-details .col2-set::after {
  content: unset !important;
}

.order-address-wrap .custom-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: #1f1d1d;
  margin-bottom: 14px;
}

.order-address-wrap .custom-name span {
  color: #51524c;
  font-size: 12px;
  font-weight: 400;
  margin-left: 8px;
}

.order-address-wrap .address-box {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #1f1d1d;
  display: block;
  margin-bottom: 10px;
}

.order-address-wrap .custom-box {
  margin-bottom: 12px;
  color: #1f1d1d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
}

.order-address-wrap .custom-box span {
  color: #51524c;
}

.order-address-wrap .custom-box:last-child {
  margin-bottom: 0;
}

.woocommerce-edit-address .woocommerce-address-fields__field-wrapper,
.woocommerce-edit-account
  .woocommerce-EditAccountForm.edit-account
  .edit-account-details {
  display: flex;
  flex-wrap: wrap;
  column-gap: 18px;
}

.woocommerce-edit-address .form-row,
.woocommerce-edit-account .form-group {
  width: calc(50% - 9px) !important;
  clear: inherit !important;
  margin-right: 0 !important;
  margin-bottom: 25px !important;
}

.woocommerce-change-password .form-group {
  width: 100% !important;
  margin-bottom: 25px !important;
}

.woocommerce-edit-account .form-group.project-type {
  width: 100% !important;
}

.woocommerce-edit-account
  .form-group.project-type
  .select-checkbox-type
  .form-check {
  flex: 0 0 calc(33.33% - 16px);
}

.woocommerce-edit-account .form-group.contact-preferences {
  width: 70% !important;
}

.woocommerce-edit-address .form-row .form-label,
.woocommerce-edit-account .form-group .form-label,
.woocommerce-change-password .form-group .form-label {
  margin-bottom: 14px;
}

.woocommerce-edit-address .form-row#billing_country_field,
.woocommerce-edit-address .form-row#shipping_country_field,
.woocommerce-edit-address .form-row#billing_address_1_field,
.woocommerce-edit-address .form-row#billing_address_2_field,
.woocommerce-edit-address .form-row#shipping_address_1_field,
.woocommerce-edit-address .form-row#shipping_address_2_field {
  width: 100% !important;
}

.woocommerce-edit-account form .form-row .yes-no-toggle label {
  line-height: 48px !important;
}

.woocommerce-view-order .show-color-box,
.woocommerce-order-received .show-color-box {
  gap: 10px;
  margin-bottom: 10px;
}

.woocommerce-view-order .show-color-box span,
.woocommerce-order-received .show-color-box span {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  border: 1px solid rgba(31, 29, 29, 0.15);
  display: block;
}

.woocommerce-view-order .builder-meta strong,
.woocommerce-order-received .builder-meta strong {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #51524c;
  margin-bottom: 8px;
  display: inline-block !important;
}

.woocommerce-view-order .builder-meta > div,
.woocommerce-order-received .builder-meta > div {
  font-weight: 400;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #1f1d1d;
  margin-bottom: 4px;
}

.woocommerce-order-details
  .woocommerce-table--order-details
  thead
  tr
  th.product-total,
.woocommerce-order-details
  .woocommerce-table--order-details
  tbody
  tr
  td.product-total,
.woocommerce-order-details .woocommerce-table--order-details tfoot tr td {
  text-align: end;
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: #1f1d1d !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: #1f1d1d !important;
}

.woocommerce-message,
.woocommerce-info {
  color: #1f1d1d !important;
  background-color: #e6ebe7 !important;
}

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

.woocommerce-info::before {
  top: 30px !important;
}

.woocommerce-info::after {
  content: unset !important;
}

.woocommerce-checkout .woocommerce-error {
  display: none !important;
}

.woocommerce-order-received .woocommerce-order {
  padding: 100px 30px;
  max-width: 1160px;
  margin: 0 auto;
}

.woocommerce-order-received .woocommerce-order p {
  display: none;
}

.woocommerce-thankyou-order-received {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
  display: block !important;
}

.woocommerce-order-received .woocommerce-order ul {
  display: flex;
  justify-content: space-between;
  column-gap: 5px;
}

.woocommerce-order-received .woocommerce-order ul::before {
  content: unset !important;
}

.woocommerce-order-received .woocommerce-order ul li {
  width: 100%;
  background-color: #f9f9f9 !important;
  margin-right: 0 !important;
  padding: 12px !important;
  border: 1px dashed #ccc !important;
  font-weight: 600;
  font-size: 10px !important;
  line-height: 1.2;
  color: #51524c;
}

.woocommerce-order-received .woocommerce-order ul li strong {
  font-weight: 500;
  color: #1f1d1d;
}

.delete-saved-order {
  background-color: transparent;
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}

.delete-saved-order .icon {
  background-color: red;
  transition: all 0.4s ease-in-out;
}

.delete-saved-order:hover .icon {
  opacity: 0.8;
}

.woocommerce-orders-table__cell-order-actions .add-saved-to-cart {
  margin-left: 0 !important;
}

.woocommerce-view-order .woocommerce-order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.woocommerce-view-order
  .woocommerce-order-head
  .woocommerce-order-details__title {
  margin-bottom: 0;
}

.woocommerce-view-order .woocommerce-order-head .btn {
  font-size: 12px;
  padding: 12px 11px;
}

.add-saved-to-cart-mob {
  display: none;
}

.woocommerce-pagination {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}
 .woocommerce-button {
  background-color: #1f1d1d !important;
  color: #fff !important;
  transition: all 0.4s ease-in-out;
}

/* My Account Pages */

/* #order-sec-2,
#order-sec-3 {
  display: none;
} */

.woocommerce div .blockUI.blockOverlay {
  background-color: rgb(255, 255, 255, 0.7) !important;
  opacity: 1 !important;
}

.woocommerce div .blockUI.blockOverlay::before {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 5px solid;
  border-color: #f7f4f1;
  border-right-color: #1f1d1d;
  background: transparent !important;
}

.reorder-past-order table th:last-child {
  width: 210px;
}

.reorder-past-order table .btn {
  min-width: auto;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 600;
}

.reorder-past-order table .btn + .btn {
  margin-left: 0;
}

.customer-login-form .woocommerce-notices-wrapper,
.customer-login-form .woocommerce-message {
  max-width: 471px;
  margin: 0 auto 20px;
}

.customer-login-form .woocommerce-notices-wrapper .woocommerce-error {
  line-height: 1.4;
  font-size: 12px !important;
}

.customer-login-form .woocommerce-notices-wrapper .woocommerce-error::before {
  background-size: 12px;
  width: 12px;
  height: 12px;
  top: 9px !important;
}

.profie-details .img-box {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 25px;
}

#profile-image-form,
.upload-label,
.user-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  cursor: pointer;
  display: block;
}

.user-initial {
  width: 100%;
  height: 100%;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e6ebe7;
  color: #1f1d1d;
  border-radius: 50%;
  font-weight: bold;
  text-transform: uppercase;
}

.upload-img {
  width: 20px;
  height: 20px;
  background-color: #1f1d1d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 2px;
  right: 0px;
}

.upload-img .icon {
  width: 10px;
  height: 10px;
  background-color: #fff;
}

.my-checkout-coupon-wrap {
  margin-inline: auto;
}

.my-checkout-coupon-wrap .checkout-coupon {
  max-width: 805px;
  margin-inline: auto;
  padding: 48px 0 0;
}

.checkout-coupon .woocommerce-info {
  margin: 0 !important;
  background-color: transparent !important;
  border: 1px solid rgba(31, 29, 29, 0.15) !important;
  color: #1f1d1d !important;
  border-radius: 6px;
  display: block !important;
}

.checkout-coupon .woocommerce-info a {
  font-weight: 600;
  text-decoration: underline !important;
  transition: all 0.3s ease;
}

.checkout-coupon .woocommerce-info a:hover {
  color: #51524c !important;
}

.checkout-coupon .woocommerce-info::before {
  content: "" !important;
  background-image: url(../img/check.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  top: 50% !important;
  transform: translateY(-50%);
}

.checkout-coupon form.checkout_coupon {
  margin: 0 !important;
  margin-top: 10px !important;
  display: flex;
  border-color: rgba(31, 29, 29, 0.15) !important;
}

.woocommerce-form-coupon-toggle + .woocommerce-message {
  margin-top: 10px;
}

.checkout-coupon form .form-row {
  margin: 0 !important;
}

.checkout-coupon form .form-row.form-row-last {
  width: 49% !important;
}

.woocommerce-info.checkout-login-info {
  margin-bottom: 15px !important;
}

.error-sec {
  height: calc(100vh - 230px);
  padding: 80px 0;
  display: flex;
  align-items: center;
  text-align: center;
}

.error-title {
  color: #1f1d1d;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.1;
  letter-spacing: -0.66px;
  margin-bottom: 18px;
}

.error-subtitle {
  font-size: 30px;
  line-height: 1;
  color: #1f1d1d;
  font-weight: 700;
  padding-bottom: 1.25rem;
}

.error-head .cms-con p {
  color: #1f1d1d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 70%;
  margin: 0 auto 30px;
}

body .jq-toast-wrap {
  width: 280px;
}

.jq-toast-wrap .jq-toast-single {
  padding: 12px 12px 12px 40px;
  margin: 0 0 5px;
  font-size: 14px;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  color: #fff;
}

.jq-toast-wrap .jq-icon-success {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMS43NSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iaWNvbiBpY29uLXRhYmxlciBpY29ucy10YWJsZXItb3V0bGluZSBpY29uLXRhYmxlci1jaXJjbGUtY2hlY2siPjxwYXRoIHN0cm9rZT0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Ik0xMiAxMm0tOSAwYTkgOSAwIDEgMCAxOCAwYTkgOSAwIDEgMCAtMTggMCIgLz48cGF0aCBkPSJNOSAxMmwyIDJsNCAtNCIgLz48L3N2Zz4=);
  background-color: #48893d;
}

.jq-toast-wrap .jq-icon-error {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMS43NSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iaWNvbiBpY29uLXRhYmxlciBpY29ucy10YWJsZXItb3V0bGluZSBpY29uLXRhYmxlci1leGNsYW1hdGlvbi1jaXJjbGUiPjxwYXRoIHN0cm9rZT0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Ik0xMiAxMm0tOSAwYTkgOSAwIDEgMCAxOCAwYTkgOSAwIDEgMCAtMTggMCIgLz48cGF0aCBkPSJNMTIgOXY0IiAvPjxwYXRoIGQ9Ik0xMiAxNnYuMDEiIC8+PC9zdmc+");
}

.select2-container--open .select2-dropdown {
  top: 0px !important;
  border-color: rgba(31, 29, 29, 0.15) !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: rgba(31, 29, 29, 0.15) !important;
  min-height: 32px;
  padding: 5px 15px !important;
  font-size: 15px;
  color: #1f1d1d !important;
  line-height: 1.4 !important;
  border-radius: 4px !important;
}

.select2-search--dropdown {
  display: block;
  padding: 4px 13px !important;
}
.select2-results__option {
  padding: 5px 15px !important;
  font-size: 14px;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected],
.select2-container--default
  .select2-results__option--highlighted[data-selected] {
  background-color: #000000 !important;
  color: #fff;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  background: var(--wc-form-color-background, #fff) !important;
  font-size: 15px !important;
  padding-right: 38px !important;
}

.woocommerce-account .address_book header {
  border: none !important;
  align-items: center;
}

.woocommerce-account .address_book header h3 {
  display: inline-block;
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: #1f1d1d;
  margin-bottom: 14px;
}
.woocommerce-account .address_book header .button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 12px 13px;
  min-width: 208px;
  overflow: hidden;
  border: 1px solid #1f1d1d;
  z-index: 2;
  background-color: #1f1d1d;
  color: #fff;
  transition: all 0.4s ease-in-out;
}
.woocommerce-account .address_book header .button:hover {
  background-color: #e6ebe7;
}
@media (min-width: 1024px) {
  .woocommerce-account .addresses .wc-address-book-address {
    padding: 15px;
    position: relative;
    flex-basis: calc(calc(100% - 32px) / 3);
  }
}
.woocommerce-account .addresses .wc-address-book-address header {
  margin-bottom: 10px;
}

.woocommerce-account .addresses .wc-address-book-address header h3 {
  font-size: 18px;
}

.woocommerce-account .wc-address-book-address address {
  padding: 0 !important;
  margin-bottom: 20px;
  font-size: 14px;
}
.woocommerce-account .wc-address-book-meta {
  padding: 0 !important;
  gap: 20px !important;
  justify-content: space-between;
}

.woocommerce-account .wc-address-book-meta .button {
  min-width: inherit !important;
  width: auto !important;
  padding: 0 !important;
  flex-grow: inherit !important;
  font-size: 13px;
  text-transform: uppercase;
  background: transparent !important;
  color: #000;
  font-weight: 600;
  border-radius: 0 !important;
  border-bottom: 1px solid;
}
.woocommerce-account .wc-address-book-meta .button.wc-address-book-delete {
  mask-image: url(../img/svg/delete.svg);
  position: absolute;
  right: 7px;
  top: 17px;
  font-size: 0;
  width: 18px !important;
  height: 18px !important;
  background: #ff4c4c !important;
  mask-repeat: no-repeat;
  mask-size: 13px !important;
}

.my-account-wrap .woocommerce-MyAccount-content > .woocommerce-Addresses,
.my-account-wrap .woocommerce-MyAccount-content > p {
  display: none !important;
}

.woocommerce-input-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.woocommerce-input-wrapper input {
  display: none;
}

.woocommerce-checkout
  .address_book
  input:not(#billing_address_book_add_new, #shipping_address_book_add_new)
  + label.radio {
  padding: 15px !important;
  font-size: 15px;
  color: #1f1d1d !important;
  line-height: 1.6 !important;
  resize: none;
  font-weight: 400 !important;
  border: 1px solid rgba(31, 29, 29, 0.15) !important;
  text-align: left;
  flex-basis: calc(calc(100% - 20px) / 3);
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}

.woocommerce-checkout
  .address_book
  input:not(#billing_address_book_add_new, #shipping_address_book_add_new)
  + label.radio::after {
  content: "Select" !important;
  display: table;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0 !important;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  color: #51524c;
}
.woocommerce-checkout
  .address_book
  input:not(#billing_address_book_add_new, #shipping_address_book_add_new)
  + label.radio:hover:after {
  color: #1f1d1d;
}
.woocommerce-checkout
  .address_book
  input:checked:not(
    #billing_address_book_add_new,
    #shipping_address_book_add_new
  )
  + label.radio {
  background-color: #e6ebe7;
}
.woocommerce-checkout
  .address_book
  input:checked:not(
    #billing_address_book_add_new,
    #shipping_address_book_add_new
  )
  + label.radio:after {
  content: "Selected" !important;
  text-decoration: none !important;
  cursor: default;
  color: #1f1d1d;
}

.woocommerce-checkout .address_book label.radio .optional {
  display: none !important;
}

.woocommerce-checkout .address_book > label .optional {
  display: none !important;
}
#billing_address_book_add_new + label,
#shipping_address_book_add_new + label {
  position: absolute;
  top: 5px;
  z-index: 99;
  right: 0;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid;
  line-height: 1.4;
  cursor: pointer;
}

#billing_address_book_field,
#shipping_address_book_field {
  position: relative;
}
#save-cart-form {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
}
#save-cart-form.active {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  padding: 10px;
  transition: all 0.3s ease;
}
#save-cart-form form {
  width: 490px;
  background: #f7f4f1;
  right: 0;
  margin: auto;
  padding: 30px;
  position: relative;
}

.save-cart-head h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.save-cart-head p {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 11px;
}

.form-field input {
  width: 100%;
  font-weight: 400;
  border: 1px solid rgba(31, 29, 29, 0.15) !important;
  padding: 15px;
  font-size: 15px;
  border-radius: 5px;
}

.form-btns .btn {
  width: 100%;
  margin-top: 10px;
}
#save-cart-close {
  position: absolute;
  top: 12px;
  right: 10px;
  opacity: 0.5;
  font-size: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJjdXJyZW50Q29sb3IiIGNsYXNzPSJpY29uIGljb24tdGFibGVyIGljb25zLXRhYmxlci1maWxsZWQgaWNvbi10YWJsZXIteCI+PHBhdGggc3Ryb2tlPSJub25lIiBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIiAvPjxwYXRoIGQ9Ik02LjcwNyA1LjI5M2w1LjI5MyA1LjI5Mmw1LjI5MyAtNS4yOTJhMSAxIDAgMCAxIDEuNDE0IDEuNDE0bC01LjI5MiA1LjI5M2w1LjI5MiA1LjI5M2ExIDEgMCAwIDEgLTEuNDE0IDEuNDE0bC01LjI5MyAtNS4yOTJsLTUuMjkzIDUuMjkyYTEgMSAwIDEgMSAtMS40MTQgLTEuNDE0bDUuMjkyIC01LjI5M2wtNS4yOTIgLTUuMjkzYTEgMSAwIDAgMSAxLjQxNCAtMS40MTQiIC8+PC9zdmc+")
    no-repeat center;
  width: 24px;
  height: 24px;
  background-size: 24px;
  transition: all 0.3s ease;
}
#save-cart-close:hover {
  opacity: 0.8;
}

#save-cart-message {
  margin: 10px 0 0 0;
  color: #1f1d1d !important;
  background-color: #e6ebe7 !important;
  font-size: 15px;
  line-height: 1.3;
  padding: 10px 15px;
}
div#save-cart-message:empty {
  display: none;
}
@media (max-width: 568px) {
  .woocommerce-checkout
    .address_book
    input:not(#billing_address_book_add_new, #shipping_address_book_add_new)
    + label.radio {
    flex-basis: calc(calc(100% - 10px) / 2);
  }
  .woocommerce-checkout
    .address_book
    input:not(#billing_address_book_add_new, #shipping_address_book_add_new)
    + label.radio {
    font-size: 14px;
    line-height: 1.4 !important;
    padding: 12px !important;
  }
  .show-color-choose {
    padding: 20px;
  }
  .accordion-header .remove_from_cart_button {
    left: calc(100% + 4px);
  }
  .color-info-detail span,
  .start-building-text p {
    font-size: 14px;
  }
}


.form-multi-line input {
  margin-bottom: 10px;
}