#cartPage .table thead th {
  border-bottom-width: 1px;
  border-top: 0;
  color: black;
  text-transform: uppercase;
}
#cartPage .product-image-container {
  width: 100px;
}
#cartPage .product-row td {
  vertical-align: middle;
}
#cartPage .horizontal-quantity {
  font-weight: bolder;
}
#cartPage .product-title a {
  font-weight: normal;
}
#cartPage .cart-summary {
  border: 2px solid gray;
  padding: 20px;
}
#checkoutPage .order-summary {
  border: 2px solid gray;
  padding: 20px;
}
#checkoutPage .table-mini-cart tr:first-child th {
  border-top: 0;
  color: black;
  border-bottom-width: 1px;
}
#checkoutPage .table-mini-cart .product-row td {
  border-top: 0;
  padding-bottom: 20px;
}
#checkoutPage .table-mini-cart .product-row td a {
  flex-shrink: 0;
}
#checkoutPage .cart-subtotal td {
  padding-top: 30px;
  border-top: 0;
}
#checkoutPage .select-custom select {
  height: 46px;
}
#checkoutPage .select-custom::after {
  top: 65%;
}
#checkoutPage .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
#checkoutPage .box {
  border: 1px solid #ebebeb;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
}
.estimated-date {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
}
.estimated-date .label {
  color: #555555;
  font-weight: normal;
  font-size: 14px;
  text-decoration: underline;
}

.form-group label.checkbox {
  position: relative;
  cursor: pointer;
}
.form-group label.checkbox input {
  display: none;
}
.form-group label.checkbox:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}
.form-group label.checkbox:has(input:checked):after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-radio label {
  display: flex;
  gap: 15px;
}
.custom-radio label img {
  height: 20px;
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.loader-container.active {
  display: flex;
}
.loader-container .loader {
  animation: rotate 1s infinite;
  height: 50px;
  width: 50px;
}
.loader-container .loader:before,
.loader-container .loader:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}
.loader-container .loader:before {
  animation: ball1 1s infinite;
  background-color: #fff;
  box-shadow: 30px 0 0 #4f4f4f;
  margin-bottom: 10px;
}
.loader-container .loader:after {
  animation: ball2 1s infinite;
  background-color: #4f4f4f;
  box-shadow: 30px 0 0 #fff;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(0.8);
  }
  50% {
    transform: rotate(360deg) scale(1.2);
  }
  100% {
    transform: rotate(720deg) scale(0.8);
  }
}
@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 #4f4f4f;
  }
  50% {
    box-shadow: 0 0 0 #4f4f4f;
    margin-bottom: 0;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #4f4f4f;
    margin-bottom: 10px;
  }
}
@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 #fff;
  }
  50% {
    box-shadow: 0 0 0 #fff;
    margin-top: -20px;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #fff;
    margin-top: 0;
  }
}

/*.product-desc-content ul {
    padding-left: 7.4rem !important;
}*/
.product-desc-content ul, .product-desc-content ul li, .product-desc-content ul li:before, .product-desc-content li:before, .product-desc-content ul:before {
  list-style: revert !important;
  padding-left: revert !important;
  margin-left: revert !important;
}
.product-desc-content li:before {
  content: "";
}

.logo {
  max-width: 400px;
}

.logo img {
  max-height: 90px;
}

.product-single-gallery .label-group {
  left: auto;
  right: 1.1rem;
}

.seller-bar {
  background: #00b8ff;
  text-align: center;
  color: white;
  padding: 5px;
}

.header-middle.sticky-header.fixed .logo img {
  max-height: 60px;
}

.draft-product {
  opacity: 0.5;
}

.product-default .product-title a {
  white-space: normal;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-action .add-cart {
  padding: 16px 61px 15px 65px;
  border-radius: 3px;
}

.view-cart-link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: gray;
  margin-top: 8px;
}

#checkoutPage {
  padding-top: 0;
}

.cart-qty {
  display: flex;
  margin-top: 10px;
}
.cart-qty input {
  width: 40px;
  text-align: center;
  -moz-appearance: textfield;
  border: none;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding-block: 5px;
}
.cart-qty input::-webkit-outer-spin-button, .cart-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-qty .minus, .cart-qty .plus {
  width: 35px;
  font-weight: bold;
  border: 1px solid #d7d7d7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-subscription-notice {
  min-height: 600px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-desc {
  color: #353535;
}

.payment-methods .custom-control-label {
  font-weight: bold;
  font-size: 16px;
  color: #000000;
}

nav ul.pagination li.active a, nav ul.pagination li.active span {
  background: #ffffff;
  border: 1px solid var(--primary-store-color);
  color: var(--primary-store-color);
}
nav ul.pagination li a, nav ul.pagination li span {
  background: var(--primary-store-color);
  color: #ffffff;
  aspect-ratio: 1;
}
nav ul.pagination li a:hover, nav ul.pagination li span:hover {
  border: 1px solid var(--primary-store-color);
}
#orderSummary {
  color: #000;
}

.header-middle {
  padding-top: 5px;
  padding-bottom: 5px;
}

.product-size-content {
  text-align: left;
}
.product-size-content table {
  border-collapse: collapse;
}
.product-size-content table td, .product-size-content table th {
  border: 1px solid gray;
  padding: 5px 10px;
}
.product-size-content table tr:first-child {
  font-weight: bold;
}
.product-size-content img {
  margin: 0;
}

.product-single-tabs .tab-pane {
  color: #fffffd;
  color: #3f3f3f;
}

.inner-quickview figure .btn-quickview, .header.theme-1 {
  background: var(--primary-store-color);
}

.header.theme-1 .sticky-header.fixed {
  background: var(--primary-store-color);
  border-color: var(--primary-store-color);
}

.page-item.active .page-link {
  border-color: var(--primary-store-color);
}

.main-nav .menu > li.active > a, .main-nav .menu > li.show > a, .main-nav .menu > li:hover > a {
  color: var(--primary-store-color);
}

.footer.bg-dark .widget h4 {
  margin-top: 15px;
}
.footer.bg-dark .widget-newsletter .footer-submit-wrapper {
  margin-top: 10px;
}
.footer.bg-dark .widget-newsletter .form-control {
  background: #ffffff;
  padding-inline: 10px;
}
.footer.bg-dark .widget-newsletter .form-control, .footer.bg-dark .widget-newsletter button {
  border-radius: 0;
}
.footer.bg-dark .widget-newsletter button {
  padding-inline: 5px;
  border-color: white;
}

.product-default figure {
  margin-bottom: 2px;
}
.product-default .colors {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  height: 31px;
  overflow: hidden;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2509803922);
  padding: 3px;
}
.product-default .colors .color {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid #c9c9c9;
  cursor: pointer;
}

.clearfix {
  clear: both;
}

footer {
  clear: both;
}

.pagination-per-page {
  margin-left: 5px;
  padding: 7px;
  margin-top: -1px;
}

.gift-value-input {
  font-size: 18px;
  font-weight: bold;
  width: 100px;
}

select.form-control.personalization-input {
  height: 46px;
}

.footer .footer-left {
  max-width: 600px;
}

.product-desc-content iframe {
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
}

ul.config-color-list.config-filter-list li a {
  border: 1px solid #c9c9c9 !important;
  border-radius: 100%;
}

.product-quick-view > .row {
  min-height: 500px;
}

.product-default.inner-icon img {
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.infinite-scroll-request, .page-load-status {
  text-align: center;
}
.infinite-scroll-request img, .page-load-status img {
  margin: auto;
}

.products-list {
  display: grid;
  gap: 30px 20px;
}
.products-list .product-item {
  max-width: 100%;
  min-width: 80px;
  padding: 0;
}
.products-list.products-in-row-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .products-list.products-in-row-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .products-list.products-in-row-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 430px) {
  .products-list.products-in-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.products-list.products-in-row-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1024px) {
  .products-list.products-in-row-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .products-list.products-in-row-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 430px) {
  .products-list.products-in-row-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.products-list.products-in-row-6 {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1024px) {
  .products-list.products-in-row-6 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .products-list.products-in-row-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 430px) {
  .products-list.products-in-row-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.overlay-to-prevent-click-on-phone {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
}
@media (max-width: 430px) {
  .overlay-to-prevent-click-on-phone {
    display: block;
  }
}

.product-figure-box {
  position: relative;
}
.product-figure-box .prod-arrows {
  display: none;
}
@media (max-width: 768px) {
  .product-figure-box .prod-arrows {
    display: block;
  }
}
.product-figure-box .prod-arrows .prod-arrow-right {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 6px 7px 5px 9px;
  border-radius: 50%;
  box-shadow: 0 1px 4px #a09999;
  background-color: rgba(255, 255, 255, 0.7);
}
.product-figure-box .prod-arrows .prod-arrow-left {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 6px 9px 5px 7px;
  border-radius: 50%;
  box-shadow: 0 1px 4px #a09999;
  background-color: rgba(255, 255, 255, 0.7);
}

.filter-color {
  background-size: cover;
}

@media (max-width: 1024px) {
  .logo img {
    max-width: 120px;
  }
}
.cart {
  width: 50px;
}

.hover-invert:hover img {
  filter: invert(1);
}

.personalize-container {
  position: relative;
}
.personalize-container .character-limit {
  position: absolute;
  right: 12px;
  background: white;
  top: 13px;
}

/*# sourceMappingURL=custom.css.map */
