body {
  font-family: "inter, helvetica, sans-serif" !important;
}
p,
li,
h1,
h2,
h3,
h4,
h5,
span {
  font-family: "inter, helvetica, sans-serif" !important;
}
.sidebarQuantity {
  font-family: "Inter, Helvetica, sans-serif" !important;
}
.container.my-5 {
  font-family: "inter, helvetica, sans-serif" !important;
}

h1.h2.fw-bold {
  font-size: 45px;
  margin-bottom: 39px;
}

.color-swatch {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: transform 0.2s;
}
.main-description .color-swatch:hover , #configuratorModal .color-swatch:hover {
  transform: scale(1.1);
}
.main-description .color-swatch.active , #configuratorModal .color-swatch.active {
  border: 2px solid #e0ad35;
  box-shadow: 0 0 6px #e0ad35;
  transform: scale(1.2);
}
.size-option {
  display: inline-block;
  width: auto;
  padding: 5px 10px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #ddd;
  margin-right: 8px;
  cursor: pointer;
}
.size-option.active {
  background-color: #000;
  color: white;
}
.badge-tag {
  font-size: 0.8rem;
  margin-right: 5px;
}

.flash-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: -webkit-linear-gradient(#e0ad35, #cb971c);
  color: white;
  padding: 12px 16px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.flash-message.show {
  opacity: 1;
  transform: translateX(0);
}

.flash-message .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

/*new css */

.preview-img {
  cursor: pointer;
  position: relative;
}

.hidden-preview {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-39 {
  margin-bottom: 39px;
}
.br-50 {
  border-radius: 50px;
}

.qty-option {
  background-color: #f9f9f9;
  border: 1px solid #777;
  /* transition: all 0.2s ease-in-out; */
  cursor: auto;
  font-weight: 400;
}

/* .qty-option:hover {
  background-color: #f0f0f0;
} */

.qty-option.active {
  border: 1px solid #e0ad35;
  background-color: #fdf5e2;
  font-weight: 400;
}
#manualQtyInput {
  background-color: #f9f9f9;
  /* border: 1px solid #777; */
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  font-size: 13px;
}
.request-quote-btn {
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd !important;
  color: #fff !important;
  background: #e0ad35;
  height: 40px;
  font-size: 13px;
  font-weight: 600;
}
button.request-quote-btn:hover {
  background-color: #e0ad35 !important;
}
#productTabs li.nav-item {
  padding: 0;
}

#productTabs li.nav-item .nav-link.active {
  background-color: #e0ad35;
  color: white;
  font-size: 13px;
}
#productTabs li.nav-item .nav-link {
  color: #e0ad35;
  font-size: 13px;
  font-weight: 600;
}

#productContainer .swiper-button-prev,
#productContainer .swiper-button-next {
  background-color: rgba(0, 0, 0, 0.5);
  width: 36px !important;
  height: 36px !important;
  border-radius: 50%;
  color: #fff !important;
  top: 50%;
  transition: background-color 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.7) Im !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px !important;
}

#productList .size-badge {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  background-color: #f8f9fa;
  font-size: 13px;
}
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.4);
  }
  50% {
    transform: scale(0.95);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.wishlist-bounce {
  animation: bounce 0.5s ease-in-out;
}

.wishlist-btn.filled i {
  color: #e3342f; /* red */
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card-animate {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.thumbnail-image {
  transition: transform 0.2s ease;
}
.thumbnail-image:hover {
  transform: scale(1.1);
  border-color: #999;
}
.main-image-wrapper img {
  min-width: 250px;
  max-width: 250px;
  height: 250px;
  object-fit: contain;
}

.color-select-swatch.active {
  border: 2px solid #e0ad35 !important;
  box-shadow: 0 0 6px #e0ad35;
  transform: scale(1.1);
}

.product-grid.d-grid.mt-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 0.375rem 0.375rem;
}

.product-card {
  position: relative;
  /* overflow: hidden; */
  height: 100%;
  margin-bottom: 1rem !important;
  transition: transform 0.3s ease;
  border: 1px solid #777;
}
.product-card:hover {
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
}
.product-card .image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 370px;
}
.image-container img {
  object-fit: cover;
}

.image-container .main-image {
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

.image-container .hover-image {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
  height: 96% !important;
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

.image-container:hover .hover-image {
  opacity: 1;
}

.image-container:hover .main-image {
  opacity: 0;
}

.card-icons {
  position: absolute;
  top: 20px;
  right: -100px; /* Start hidden right */
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: right 0.4s ease, opacity 0.1s ease;
}

/* Initial hidden state */
.card-icons.flex-column {
  opacity: 0;
  pointer-events: none;
  display: flex; /* Keep display as flex to allow animation */
  right: -30px;
  transition: right 0.4s ease, opacity 0.4s ease;
  position: absolute; /* Ensure positioning for sliding */
  top: 20px;
  z-index: 2;
}

/* On hover: show + animate */
.product-card:hover .card-icons {
  right: 15px;
  opacity: 1 !important;
  pointer-events: auto;
}

.card-icons a {
  width: 40px;
  height: 40px;
  text-align: center;
  background-color: white;
  border-radius: 50%;
  padding: 8px;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
.card-icons a:hover {
  transform: scale(1.1);
}
.card_text_margin {
  margin-bottom: 0.7rem !important  ;
  /* margin-top: 15px; */
}

.prod-name {
  min-height: 46px;
}

.card_margin_bottom {
  margin-bottom: 2px !important;
}

div#cartItems {
  overflow-y: auto;
  height: 75vh;
}

.border-t.p-4.w-100.position-absolute.bottom-0 {
  background: white;
}

@media screen and (max-width: 765px) {
  div#cartItems {
    height: 70vh !important;
    margin-left: 10px;
  }
}
#cartItems .card {
  flex-direction: row;
  max-width: 535px;
  color: #fff;
      border: 1px solid #777;
    border-radius: 0;
}
#cartItems .card img {
  max-width: 25%;
  margin: auto;
  padding: 0.5em;
  border-radius: 0.7em;
}
#cartItems .card-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#cartItems .text-section {
  width: 60%;
}
#cartItems .cta-section {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
#cartItems .cta-section .btn {
  padding: 0.2em 0.5em;
  font-size: 13px;
  color: #696969;
}
#cartItems .card-text {
  /* letter-spacing: 0.1em; */
}

.cart-button {
  padding: 10px 20px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin: 20px;
}

.cart-button:hover {
  background-color: #45a049;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.close-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

.cart-content {
  padding: 20px;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.size-btn,
div#description ul li,
div#details ul li,
div#reviews ul li,
.main-description {
  font-size: 13px;
  color: #777;
  font-weight: 400;
}

.main-description .d-flex.fw-semibold.text-muted.mb-2.ps-2.pe-2 .col {
  font-size: 13px;
  color: #777;
  font-weight: 600;
}

.des-list-item-1,
.des-list-item-2,
.des-list-item-3 {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.5s forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
h2.mb-25.h3,
h2.h3 {
  font-size: 13px !important;
}

.product-heading {
  /* font-size: 13px !important;
  font-weight: 600;
   */
  font-size: 16px !important;
  font-weight: 400;
  /* border: 1px solid #777; */
  border-radius: 50px;
  padding: 0.5em 1em;
  /* background-color: white; */
  color: #777 !important;
  width: 100%;
  text-transform: uppercase;
  height: 40px;
  letter-spacing: 2px;
  padding-right: 3rem;
  padding-left: 0rem !important;
  align-items: center;
  display: flex;
  justify-content: center;
}
.product-title-font h1 {
  font-size: 28px !important;
}

.Aus-fontSize {
  font-size: 28px !important;
}

.cpl-3 {
  padding-left: 10px;
}
p.mb-25.product-heading:after,
p.mb-25.product-heading:before {
  content: " ";
  display: block;
  border-bottom: 2px solid #e0ad35;
  border-top: 2px solid #e0ad35;
  height: 7px;
  background-color: #f8f8f8;
}

p.mb-25.product-heading {
  text-align: center;
  font-size: 30px;
  /* font-weight: 300; */
  /* color: #222; */
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: 27px 0;
  grid-gap: 20px;
  width: 40%;
  margin-bottom: 12px;
}

/* Qty ranger */
input[type="range"].custom-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #e0ad35; /* Slider track color */
  border: 1px solid #777; /* Border around slider */
  border-radius: 5px;
  outline: none;
  margin-top: 10px;
}

input[type="range"].custom-range:focus {
  outline: none;
  box-shadow: none; /* Removes blue glow */
}

/* WebKit thumb (Chrome, Safari) */
input[type="range"].custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #e0ad35; /* Thumb color */
  border: 2px solid #777; /* Thumb border */
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
}

input[type="range"].custom-range::-webkit-slider-thumb:focus {
  box-shadow: none; /* Remove glow on thumb */
}

/* Firefox thumb */
input[type="range"].custom-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #e0ad35;
  border: 2px solid #777;
  border-radius: 50%;
  cursor: pointer;
}

/* Remove Firefox blue glow */
input[type="range"].custom-range::-moz-focus-outer {
  border: 0;
}

/* Firefox track (if needed for full color match) */
input[type="range"].custom-range::-moz-range-track {
  background: #e0ad35;
  height: 6px;
  border-radius: 5px;
}
/* Remove focus glow from the slider itself */
input[type="range"].custom-range:focus {
  outline: none;
  box-shadow: none;
}

/* Remove focus glow from the slider thumb (WebKit browsers) */
input[type="range"].custom-range::-webkit-slider-thumb:focus {
  outline: none;
  box-shadow: none;
}

/* Remove focus ring in Firefox */
input[type="range"].custom-range::-moz-focus-outer {
  border: 0;
}

button#decreaseQty,
button#increaseQty {
  padding: 4px;
  padding-inline: 14px !important;
  background: #e0ad35;
}

.qty_parent {
  justify-content: space-between;
  border: 1px solid #77777736;
  border-radius: 8px;
  padding: 4px;
}

.apple-breadcrumb {
  font-size: 13px;
  font-weight: 500;
}

.apple-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.apple-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  padding: 0 10px;
  color: #999;
  font-size: 13px;
}

.apple-breadcrumb .breadcrumb-item a {
  color: #777;
  text-decoration: none;
  transition: color 0.2s ease;
}

.apple-breadcrumb .breadcrumb-item a:hover {
  color: #777; /* nice blue on hover */
}

.apple-breadcrumb .breadcrumb-item.active {
  color: #888;
}
#unavailableNote {
  color: red;
}
/* Chrome, Safari, Edge, Opera */
#manualQtyInput::-webkit-inner-spin-button,
#manualQtyInput::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
#manualQtyInput {
  -moz-appearance: textfield;
}
svg.img-fluid {
  width: 500px;
}

.svg-thumb.active {
  border: 2px solid yellow;
  border-radius: 4px;
}
.config-sidebar {
  width: 500px;
  background-color: #f8f9fa;
}
.svg-thumb {
  border: 1px solid #777;
}
.size-qty-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.size-qty {
  display: flex;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  background-color: #dee1e6;
  font-weight: 400;
  height: 40px;
}

.size-label {
  background-color: #e0ad35;
  color: white;
  padding: 0 12px;
  display: flex;
  align-items: center;
  height: 100%;
}

.size-input {
  width: 50px;
  border: none;
  text-align: center;
  font-weight: bold;
  background-color: white;
  height: 100%;
}

.size-input:focus {
  outline: none;
}

#configuratorModal {
  font-family: "inter, helvetica, sans-serif" !important;
}
.text-element {
  white-space: nowrap;
  padding: 2px 6px;
  border: 1px dashed transparent;
  user-select: none;
}
.text-element.selected {
  border-color: #007bff;
  outline: none;
}
/* Chrome, Safari, Edge, Opera */
.size-input::-webkit-inner-spin-button,
.size-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.size-input[type="number"] {
  -moz-appearance: textfield;
}

#toggleTextOptions.form-check-input:checked {
  background-color: #777;
  border-color: #777;
}
.form-range::-webkit-slider-thumb,
.form-range::-webkit-slider-thumb:active {
  background-color: #777;
}

.form-check-input:focus {
  border-color: #777;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(119, 119, 119, 0.25);
}
.upload-card {
  position: relative;
  background-color: #fff;
  max-width: 500px;
}

.upload-icon {
  position: relative;
  width: 60px;
  height: 60px;
}

.plus-circle {
  font-weight: bold;
  border: 2px solid white;
}
.upload-btn {
  background-color: #e0ad35 !important;
  border: none;
  color: #fff;
}

.upload-btn:hover,
.upload-btn:focus {
  background-color: #d1982f !important; /* slightly darker on hover */
  color: #fff;
}
.table-responsive th,
.table-responsive td,
.table-responsive input,
#textOptionsWrapper label,
#textOptionsWrapper select,
#textOptionsWrapper input,
#previewSizes li {
  color: #777;
  font-size: 13px;
}
label.form-check-label.fw-semibold {
  color: #777;
}
#textOptionsWrapper label {
  font-weight: bold;
}
h3.card-text.fw-bold.h5.custom_card_margin.mt-0 {
  margin-bottom: 1rem;
}

.cart-drawer {
  width: 600px;
}

.cart-drawer {
  right: -608px;
}
.sidebarQuantity {
  font-size: 13px;
  /* font-weight: 600 !important; */
  color: #777 !important;
}

.cart-drawer .card-title,
.cart-drawer .card-body .card-text {
  color: #777 !important;
}

.cart-drawer .cartMath {
  font-weight: 800 !important;
  font-size: 14px !important;
}

.cart-drawer .colorSideCart {
  font-weight: 600;
  color: #777;
}

.cart-header h2 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 800;
}

.cartTotalLabel {
  font-size: 13px;
  line-height: 30px;
  font-size: 800;
  text-transform: uppercase;
}

#cartTotal {
  font-size: 13px;
  font-weight: 600;
  line-height: 23px;
}

.inDiv-cart-delete {
  display: none;
}
.original-cart-delete {
  display: block;
}
/* =================MEDIA QUERIES================== */

@media (max-width: 768px) {
  .product-card .card-icons {
  right: 15px;
  opacity: 1 !important;
  pointer-events: auto;
}
  .swiper-slide .image-container img {
    object-fit: contain;
  }
  .myProductSlider.swiper-backface-hidden .swiper-slide {
    /* width: 289px !important; */
    height: auto !important;
  }
  /* Product Page  */
  .product-container-padding {
    margin-top: 0px !important;
  }

  .product-heading-1-mt {
    margin-top: 47px;
  }
  .width-100 {
    width: 100% !important;
  }
  .flex-custom {
    flex-direction: column;
  }
  .cart-drawer {
    width: 320px;
  }
  .cart-drawer .card .card-body {
    padding-left: 0.4rem !important;
    padding-right: 0.2rem !important;
  }
  div#cartItems {
    margin-left: 0px;
  }
  .cart-content {
    padding-inline: 15px;
  }
  .trash-style {
    margin-left: 4px;
    padding-right: 2px;
  }

  .product-title-font h1 {
    font-size: 24px !important;
  }

  .product-bottom-0 > h1 {
    margin-bottom: 0px !important;
  }

  .cart-drawer .card-title,
  .cart-drawer .card-body .card-text {
    font-size: 12px;
  }

  #cartItems .cta-section .btn {
    padding: 0.1em 0.2em;
  }
  #cartItems .card {
    width: 100%;
  }

  p.mb-25.product-heading {
    margin-bottom: 10px !important;
    padding-right: 0;
    width: 100% !important;
  }
  .confHeadings {
    font-size: 1rem;
  }
  .product-heading {
    font-size: 14px !important;
  }
  button .master,
  button .hover-text {
    font-size: 12px !important;
  }
  .conf-width {
    width: 100%;
    padding: 0.7rem !important; /*0.4rem */
  }

  #configuratorModal #colorSwatches {
    padding-left: 5px;
  }

  #textOptionsWrapper {
    padding-inline: 0px !important;
  }

  .conf-modal {
    width: 98px;
  }
  #embroideryOrPrintModalLabel {
    font-size: 1.2rem !important;
  }

  .conf-item-margin-t {
    margin-top: 30px;
  }
  .conf-item-margin-b {
    margin-bottom: 19px;
  }

  .main-description {
    padding-inline: 0px !important;
  }

  .product-container {
    padding-inline: 1rem;
  }
  .padding-text {
    padding-left: 4px;
  }

  #cartItems .card-body {
    flex-direction: column;
  }
  .cart-drawer .card-title,
  .cart-drawer .card-body .text-section {
    width: 100% !important;
  }

  .cart-drawer .card-body .text-section > p:nth-child(2) {
    padding-bottom: 0;
    margin-bottom: 3px;
  }
  #cartItems .cta-section {
    max-width: 100%;
    flex-direction: row;
    justify-content: space-between !important;
  }
  .cart-drawer .card-body > div:nth-child(3) {
    text-align: right;
  }
  .cart-drawer .card-body .text-section > p:nth-child(3) {
    padding-bottom: 7px;
  }

  .cart-drawer .cartMath {
    font-size: 12px !important;
  }
  .original-cart-delete {
    display: none;
  }
  .inDiv-cart-delete {
    display: block;
  }

  .edit-style {
    padding-inline: 7px !important;
  }
  .w-91 {
    width: 91% !important;
  }
  #cartItems {
    padding-bottom: 33px;
  }
  #toggleParent {
    display: flex;
    justify-content: space-between;
  }
  .upload-card {
    flex-direction: column !important;
    max-width: 100%;
  }
  .width-tab-upload .motiv-btn {
    width: 200px !important;
  }
  .upload-main-div .motiv-btn {
    width: 242px !important;
  }
}

/* Special Queries */
@media (max-width: 393px) {
  #toggleParent .textEditToggleDiv {
    display: none;
    height: 0px;
  }
}

@media (max-height: 667px) {
  .sidecart-gap {
    padding-bottom: 0px !important;
    padding-top: 3px !important;
  }
  .sidecart-gap button {
    margin-bottom: 4px !important;
  }
  .sidecart-gap > div:first-child {
    margin-bottom: 6px !important;
  }
  #cartItems {
    padding-bottom: 66px;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .product-card .card-icons {
  right: 15px;
  opacity: 1 !important;
  pointer-events: auto;
}
  .myProductSlider.swiper-backface-hidden .swiper-slide {
    /* width: 289px !important; */
    height: auto !important;
  }
  .width-tab-upload .motiv-btn {
    width: 200px !important;
  }
  #cartItems {
    padding-bottom: 33px;
  }

  #cartItems .cta-section .btn {
    padding: 0em 0.5em;
  }

  .product-container-padding {
    margin-top: 0px !important;
  }

  .conf-width {
    width: 100%;
    padding: 0.7rem !important; /*0.4rem */
  }
  .w-91 {
    width: 88.1% !important;
  }
  .padding-text {
    padding-left: 4px;
    padding-inline: 17px;
  }
  .textEditToggleDiv {
    margin-left: 46%;
  }
  #toggleParent {
    padding-bottom: 7px;
    padding-inline: 1rem;
    display: flex;
    justify-content: space-between;
  }
  .flex-custom-tab {
    flex-direction: column;
  }
  .width-100-tab {
    width: 100% !important;
  }
  .width-tab-upload {
    width: 100%;
    max-width: 100%;
    flex-direction: column !important;
  }
  .width-tab-upload .motiv-btn {
    width: 100% !important;
  }
  p.mb-25.product-heading {
    width: 100%;
    padding-right: 0;
  }
  .conf-width {
    padding-inline: 4% !important;
  }
  .width-tab-upload .motiv-btn {
    width: 200px !important;
  }
  .upload-main-div .motiv-btn {
    width: 242px !important;
  }
}

.cartMath {
  padding: 1.5px;
  padding-inline: 6px !important;
  background: #e0ad35;
  color: white !important;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .myProductSlider.swiper-backface-hidden .swiper-slide {
    /* width: 289px !important; */
    height: auto !important;
  }

  .config-sidebar {
    width: 440px;
  }
  #toggleParent .textEditToggleDiv {
    display: none;
    height: 0px;
  }
  div#cartItems {
    padding-bottom: 50px;
  }

  .main-description p.mb-25.product-heading {
    width: 55%;
  }
}

@media (min-width: 1201px) and (max-width: 1399px) {
  #cartItems {
    padding-bottom: 55px;
  }

  .main-description p.mb-25.product-heading {
    width: 55%;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  #cartItems {
    padding-bottom: 40px;
  }
  .main-description p.mb-25.product-heading {
    width: 55%;
  }
  #saveConfigurationBtn {
    width: 65% !important;
    align-self: center;
    justify-self: center;
  }
}

@media (min-width: 1600px) {
  div#cartItems {
    padding-bottom: 50px;
  }
  .h-conf-100 {
    height: 100% !important;
  }
}

.new_footer .container > div:last-child {
  padding-bottom: 5px !important;
}

div#navbarNavDropdown {
  background: transparent;
}

.myProductSlider.swiper-backface-hidden .swiper-slide {
  height: 500px !important;
}

.confHeadings {
  font-size: 13px !important;
  text-align: center;
}

#toggleParent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.myProductSlider.swiper-backface-hidden .swiper-slide {
  height: auto !important;
}

#configuratorModal.show {
  scrollbar-width: none !important;

  ::-webkit-scrollbar {
    display: none !important;
  }
}

#configuratorModal {
  padding-right: 0 !important;
  .modal-fullscreen {
    max-width: 100% !important;
  }
}

.imageEditHeading {
  color: #777;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

#imageToolbar,
#imageToolbar .form-label,
#imageToolbar .form-check-label {
  color: #777 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

.thumb-height svg {
  height: 100% !important;
}
#mainSvgPreview svg.img-fluid,
#mainSvgPreview {
  max-height: 100% !important;
}

#mainSvgPreview svg.img-fluid {
  height: 560px !important;
}

.container-bottom78{
  margin-bottom: 72px !important;
}


.product-container-padding.product-container{
margin-bottom: 74px !important;
}


#mainSvgPreview {
      height: 560px;
}

html {
    overflow-y: scroll; 
}

.swiper-slide .product-card .color-swatch  {
  cursor: default;
}
 .Descriptioninnerheading{
  font-size: 21px;
}
/*h3.Descriptioninnerheading {
  font-size: 20px;
}

h3.Descriptioninnerheading {
  font-size: 18px;
} */
