/*
--------------------------------------------------
 Neatolabs styles
---------------------------------------------------
*/

/* CC Changes */
/*button.customize-btn-list.product-card__add-to-cart {
    padding: 4px 4px 0 4px;
    margin: 7px auto 0 auto;
    display: none;
}

.customize-btn-list[disabled] {
    display: none;
}

.customize-btn-wrapper-list {
    margin: 0 0;
    padding: 0;
    display: none;
}*/
/* End CC Changes */

body.show-customization-modal {
  overflow: hidden;
}

@keyframes beat {
  0%  { transform: scale(1.5); opacity:0; }
  15% { transform: scale(1);   opacity:1; }
  90% { transform: scale(1);   opacity:1; }
  100%{ transform: scale(0.8);   opacity:0}
}
@keyframes shake-and-pause {
  0%, 18%, 100% { transform: translateX(0); }
  3%, 15% { transform: translateX(-5px); }
  9% { transform: translateX(5px); }
}
.customize-btn-wrapper-list {
  display: flex;
  justify-content: center;
  margin: 7px 0px 7px 0px;
  padding: 4px;
  position: relative;
  order: 5;
}
.customize-btn-list[disabled] {
  opacity: 0.2;
  cursor:default;
}

.customize-btn, .customize-btn-list {
  position: relative;
  cursor:pointer
}
.customize-btn p{
  display: flex;
  align-items: center;
  gap: 15px;
  animation: shake-and-pause 4s ease-in-out 1;
  color: inherit;
  margin:0;
  letter-spacing:inherit;
  font-size:inherit;
  line-height: inherit;
  justify-content: center;
}
.customize-btn p span, .customize-btn-list p span {
  line-height: inherit;
}
.customize-btn svg, .customize-btn-list svg{
  height: 1em;
  width: auto;
  vertical-align: top;
  fill: currentColor;
}
#neatolabs-customization-modal {
  position: fixed;
  top: 100vh;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  margin: 0 auto;
  z-index: 1000;
  transition: top .5s ease-out;
  display: none;
}

body.show-customization-modal #neatolabs-customization-modal {
  top: 0;
  display: block;
  z-index: 9999;
}

body.show-customization-modal *:not(canvas) {
  touch-action: pan-y !important;
}

.neatolabs-app {
  border: none;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  #fc_frame,
  access-widget-ui.notranslate .container,
  body.show-customization-modal #chat-widget-container,
  .admin-bar,
  #rebuy-cart,
  #powrIframeLoader {
    display: none !important;
  }
}

@keyframes hideAnimation {
  to { display: none; }
}

body.show-customization-modal *:not(.neatolabs-app):not(canvas):not(.neatolabs-app *) {
  animation: hideAnimation 0.5s forwards;
  animation-delay: 0.5s; /* Delay time */
}
#neatolabs-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}
#neatolabs-overlay.show {
  display: block;
}