.wfq-floating-launcher {
  height: 55px;
  width: 55px;
  z-index: 99;
  position: fixed;
  cursor: pointer;
}

.wfq-floating-heart {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wfq-floating-heart .wfq-floating-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wfq-floating-badge {
  height: fit-content;
  width: fit-content;
  z-index: 99;
  position: fixed;
  cursor: pointer;
  padding: 8px 25px;
}

.wfq-floating-badge .badge-contant {
  display: flex;
  flex-direction: column;
}

.wfq-floating-badge .wfq-floating-count-span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 12px;
}

.wfq-floating-badge .wfq-floating-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wfq-header-icon,
.wfq-custom-header-icon {
  cursor: pointer;
}

.wfq-floating-heart .wfq-floating-count-span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 12px;
}

#wfq-floatingicon-mid-left {
  top: 50%;
  left: 10px;
}

#wfq-floatingicon-mid-right {
  top: 50%;
  right: 10px;
}

#wfq-floatingicon-bottom-left {
  bottom: 21px;
  left: 17px;
}

#wfq-floatingicon-bottom-right {
  bottom: 21px;
  right: 17px;
}

.wfq-floating-badge#wfq-floatingicon-bottom-left {
  left: 22px;
  transform: rotate(90deg) translate(-73%, 0px);
  transform-origin: left;
}

.wfq-floating-badge#wfq-floatingicon-bottom-right {
  right: 21px;
  transform: rotate(-90deg) translate(73%, 0px);
  transform-origin: right;
}

.wfq-floating-badge#wfq-floatingicon-mid-left {
  left: 22px;
  transform-origin: left;
  transform: rotate(90deg) translate(-50%, 0px);
}

.wfq-floating-badge#wfq-floatingicon-mid-right {
  right: 21px;
  transform-origin: right;
  transform: rotate(-90deg) translate(50%, 0px);
}

.wfq-collectionIcon,
.wfq-custom-collection-icon {
  display: block;
  cursor: pointer;
}

.wfq-icon-top-right {
  top: 10px;
  z-index: 10;
  right: 10px;
}

.wfq-icon-top-left {
  top: 10px;
  z-index: 10;
  left: 10px;
}

.wfq-icon-bottom-right {
  right: 10px;
  z-index: 10;
}

.wfq-icon-bottom-left {
  left: 10px;
  z-index: 10;
}

.wfq-collection-icon-default {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 10;
}

/*FADE IN**/
.wfq-animated-fade-in {
  animation: wfqfadeIn 1s ease-in-out;
  transition: transform 0.2s, background-color 0.3s;
}

.wfq-animated-fade-in span {
  transition: transform 0.2s;
}

.wfq-animated-fade-in:hover {
  transform: scale(1.1);
}

.wfq-animated-fade-in:active {
  transform: scale(0.95);
}

@keyframes wfqfadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/** wfqPULSE EFFECT **/
.wfq-animated-advanced {
  animation: wfqpulse 1.5s infinite;
  transition: transform 0.2s, background-color 0.3s;
}

.wfq-animated-advanced span {
  transition: transform 0.2s;
}

.wfq-animated-advanced:hover {
  animation: wfqbounce 0.5s;
}

@keyframes wfqpulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes wfqbounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/** SLIDE IN AND GLOW**/
.wfq-animated-unique {
  animation: wfqslideIn 1s ease-out;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.wfq-animated-unique span {
  position: relative;
  z-index: 1;
}

.wfq-animated-unique::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-out, height 0.4s ease-out;
  z-index: 0;
}

.wfq-animated-unique:hover {
  box-shadow: 0 0 35px rgba(255, 87, 51, 0.7);
}

.wfq-animated-unique:active::before {
  width: 200px;
  height: 200px;
}

@keyframes wfqslideIn {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

/** SLIDE UP **/
.wfq-animated-pure {
  position: relative;
  overflow: hidden;
  animation: wfqslideUpReveal 1s ease-out;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.wfq-animated-pure span {
  position: relative;
  z-index: 1;
}

.wfq-animated-pure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.wfq-animated-pure:hover {
  animation: wfqshake 0.5s;
}

.wfq-animated-pure:active {
  transform: scale(0.95);
  animation: wfqexpand 0.2s forwards;
}

.wfq-animated-pure:hover::before {
  opacity: 1;
}

@keyframes wfqslideUpReveal {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

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

@keyframes wfqshake {
  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-10px);
  }

  40%,
  80% {
    transform: translateX(10px);
  }
}

@keyframes wfqexpand {
  100% {
    transform: scale(1);
  }
}

/** POP IN  **/
.wfq-animated-pop-in {
  position: relative;
  overflow: hidden;
  animation: wfqpopIn 0.8s ease-out;
  transition: transform 0.3s ease;
}

.wfq-animated-pop-in span {
  position: relative;
  z-index: 1;
}

.wfq-animated-pop-in:hover {
  animation: wfqverticalWiggle 0.6s;
}

.wfq-animated-pop-in:active {
  animation: wfqpulse 0.4s infinite;
}

@keyframes wfqpopIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes wfqverticalWiggle {
  0%,
  100% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(5px);
  }

  75% {
    transform: translateY(-5px);
  }
}

@keyframes wfqpulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/** SNAKE **/
.wfq-animated-snake {
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  animation: wfqsnakeBorder 3s linear infinite, wfqpopIn 0.8s ease-out;
}

.wfq-animated-snake span {
  position: relative;
  z-index: 1;
}

@keyframes wfqpopIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/** MODAL **/
.wfq-modal {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.wfq-modal {
  display: none;
}

#wfq-modal .wfq-modal-content {
  min-height: 400px;
  margin: 5% auto;
  position: relative;
}

.wfq-quotes-page .wfq-modal-content {
  min-height: 400px;
}

.wfq-login-box h3 {
  font-size: 16px;
}

.wfq-powered-by-text span {
  cursor: pointer;
  padding: 5px;
  font-weight: 600;
  color: inherit;
}

.wfq-powered-by-text span:hover {
  color: blue;
}

#wfq-modal .wfq-modal-content .wfq-close,
.wfq-sidenav-box .wfq-drawer-close {
  position: absolute;
  right: 15px;
  top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: url("wislist-close-icon.svg") center no-repeat;
  border: none;
  z-index: 3;
  cursor: pointer;
}

.wfq-sidenav-box .wfq-drawer-close {
  right: 26px;
  top: 10px;
}

#wfq-inner-content,
#wfq-page-inner-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  justify-content: space-between;
  margin-top: 20px;
  gap: 5px;
  padding: 10px;
}

.wfq-selected-fields .selected-field,
.wfq-custom-text-field {
  position: relative;
}

.wfq-selected-fields .wfq-text-field label {
  width: 100%;
}

.wfq-selected-fields .wfq-text-field {
  display: flex;
  align-items: self-start;
  justify-content: flex-start;
  column-gap: 5px;
  flex-direction: column;
  font-weight: 500;
}

.wfq-selected-fields .selected-field {
  margin-bottom: 15px;
}

.wfq-text-field input[type="text"],
.wfq-text-field input[type="email"],
.wfq-text-field input[type="phone"],
.wfq-text-field input[type="number"],
.wfq-text-field input[type="date"],
.wfq-text-field input[type="file"],
.wfq-text-field textarea,
.wfq-text-field .wfq-file-upload,
.wfq-text-field select,
.wfq-custom-input-wrapper input[type="text"] {
  background: transparent;
  border-color: #9e9c9c;
  border: 1px solid #9e9c9c;
  outline: none;
  padding: 12px 10px;
  font-size: 14px;
  display: block;
  flex: 1 1;
  width: 100%;
  min-width: 0;
  margin: 0;
}

.wfq-text-field input.wfq-hide-file {
  display: none;
}

.wfq-text-field .wfq-file-upload {
  font-weight: normal;
  cursor: pointer;
}

.selected-button {
  margin-top: 10px;
}

.selected-button button,
.wfq-custom-input-wrapper button.wfq-addMoreBtn {
  border-width: 0px 0px 3px 0px;
  max-width: max-content;
  width: max-content;
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3ms ease-in-out;
  cursor: pointer;
  font-weight: 700;
}

.wfq-flex-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.wfq-basket-empty a {
  text-decoration: none;
}

#wfq-modal .wfq-modal-content .wfq-product-content-sec,
.wfq-quotes-page .wfq-modal-content .wfq-product-content-sec,
#wfq-drawer-inner-content .wfq-product-content-sec,
.wfq-false-product {
  padding-left: 10px;
  text-align: left;
  position: relative;
}

#wfq-modal .wfq-modal-content .wfq-product-content-sec .wfq-discount-price,
#wfq-modal .wfq-modal-content .wfq-product-content-sec .wfq-sale-price,
.wfq-quotes-page
  .wfq-modal-content
  .wfq-product-content-sec
  .wfq-discount-price,
.wfq-quotes-page .wfq-modal-content .wfq-product-content-sec .wfq-sale-price,
#wfq-drawer-inner-content .wfq-product-content-sec .wfq-discount-price,
#wfq-drawer-inner-content .wfq-product-content-sec .wfq-sale-price {
  font-size: 15px;
  letter-spacing: 0;
  line-height: 20px;
  font-weight: 600;
  display: inline-block;
  margin: 0;
}

#wfq-modal .wfq-modal-content .wfq-product-content-sec .wfq-sale-price,
.wfq-quotes-page .wfq-modal-content .wfq-product-content-sec .wfq-sale-price,
#wfq-drawer-inner-content .wfq-product-content-sec .wfq-sale-price {
  text-decoration: line-through;
  color: grey;
}

#wfq-modal .wfq-modal-content .wfq-product-selected-variants,
#wfq-modal .wfq-modal-content .wfq-vendor,
#wfq-modal .wfq-modal-content .wfq-sku,
#wfq-modal .wfq-modal-content .wfq-sub-total,
#wfq-modal .wfq-modal-content .wfq-total-price,
.wfq-quotes-page .wfq-modal-content .wfq-product-selected-variants,
.wfq-quotes-page .wfq-modal-content .wfq-vendor,
.wfq-quotes-page .wfq-modal-content .wfq-sku,
.wfq-quotes-page .wfq-modal-content .wfq-sub-total,
.wfq-quotes-page .wfq-modal-content .wfq-total-price,
#wfq-drawer-inner-content .wfq-product-selected-variants,
#wfq-drawer-inner-content .wfq-vendor,
#wfq-drawer-inner-content .wfq-sku,
#wfq-drawer-inner-content .wfq-sub-total,
#wfq-drawer-inner-content .wfq-total-price,
.wfq-false-product,
.wfq-option-select p,
.wfq-quantity-div {
  font-size: 12px;
  line-height: 16px;
  color: inherit;
  letter-spacing: 0;
  margin: 0 0 5px;
}

#wfq-drawer-inner-content .wfq-product-info {
  margin-bottom: 15px;
}

#wfq-modal .wfq-modal-content .wfq-product-option-price,
.wfq-quotes-page .wfq-modal-content .wfq-product-option-price,
#wfq-drawer-inner-content .wfq-product-option-price {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin: 0 0 5px;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 20px;
  font-weight: 600;
}

#wfq-modal .wfq-modal-content h3,
#wfq-modal .wfq-modal-content h3.wfq-title a,
.wfq-quotes-page .wfq-modal-content h3,
.wfq-quotes-page .wfq-modal-content h3.wfq-title a,
#wfq-drawer-inner-content h3,
#wfq-drawer-inner-content h3.wfq-title a {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-align: left;
  padding: 0;
  color: inherit;
}

#wfq-modal .wfq-modal-content h3.wfq-title,
.wfq-quotes-page .wfq-modal-content h3.wfq-title,
#wfq-drawer-inner-content h3.wfq-title {
  margin: 0 0 5px;
  min-height: auto;
}

#wfq-modal .wfq-modal-content h3.wfq-title a,
.wfq-quotes-page .wfq-modal-content h3.wfq-title a,
#wfq-drawer-inner-content h3.wfq-title a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.wfq-quantity-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#wfq-modal .wfq-modal-content .wfq-quantity-div,
.wfq-quotes-page .wfq-modal-content .wfq-quantity-div {
  justify-content: flex-start;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0;
  color: inherit !important;
}

#wfq-modal .wfq-modal-content .wfq-product-info,
.wfq-quotes-page .wfq-modal-content .wfq-product-info,
#wfq-drawer-inner-content .wfq-product-info {
  display: grid;
  grid-template-columns: 1fr 4fr;
  position: relative;
}

.wfq-cursor-not-allowed {
  cursor: not-allowed;
}

#wfq-modal .wfq-modal-content .wfq-sale-text,
.wfq-quotes-page .wfq-modal-content .wfq-sale-text,
#wfq-drawer-inner-content .wfq-sale-text {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  padding: 6px 15px;
  text-align: center;
  background: #000;
  border-radius: 0;
  color: #fff;
}

#wfq-modal .wfq-modal-content .wfq-total-price,
.wfq-quotes-page .wfq-modal-content .wfq-total-price,
#wfq-drawer-inner-content .wfq-total-price {
  font-size: 14px;
  padding: 5px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

#wfq-modal .wfq-modal-content .wfq-outer-product-info,
.wfq-quotes-page .wfq-modal-content .wfq-outer-product-info {
  padding: 10px;
  max-height: 1000px;
  overflow-y: auto;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
  scroll-behavior: smooth;
}

#wfq-modal .wfq-modal-content .wfq-popup-heading h2,
.wfq-quotes-page .wfq-modal-content .wfq-popup-heading h2,
#wfq-modal .wfq-modal-content .wfq-popup-heading p,
.wfq-quotes-page .wfq-modal-content .wfq-popup-heading p,
#wfq-drawer-inner-content .wfq-popup-heading h2,
#wfq-drawer-inner-content .wfq-popup-heading p {
  margin: 0;
}

.wfq-popup-heading p {
  font-size: 12px;
}

.wfq-popup-heading {
  padding-bottom: 10px;
}

#wfq-drawer-inner-content .wfq-popup-heading {
  padding: 30px 0px 20px;
  position: fixed;
  z-index: 2;
  margin-right: 15px;
  top: 0;
}

.wfq-delete-icon-box {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  cursor: pointer;
}

#wfq-inner-content .wfq-delete-icon-box,
#wfq-page-inner-content .wfq-delete-icon-box {
  position: absolute;
  right: 2px;
  top: 2px;
}

#wfq-drawer-inner-content .wfq-delete-icon-box {
  position: absolute;
  width: 25px;
  height: 25px;
  right: 5px;
  top: 0px;
}

#wfq-modal .wfq-modal-content .wfq-deleteIcon,
.wfq-quotes-page .wfq-modal-content .wfq-deleteIcon,
#wfq-drawer-inner-content .wfq-deleteIcon,
#wfq-drawer-inner-content .wfq-arrows,
.wfq-custom-input-wrapper .wfq-delete-btn {
  background: url(delete.svg) center/16px no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.wfq-no-img {
  background: url(no-image.jpeg) center/100% no-repeat;
  width: 150px;
  height: 70px;
}

.wfq-collapsible-box {
  max-height: 1000rem;
  overflow: hidden;
  transition: max-height 1s ease;
}

.wfq-collapsible-box.wfq-collapsed {
  max-height: 0;
}

.wfq-sidenav-box::-webkit-scrollbar-track {
  width: 0.5px !important;
  background-color: red !important;
}

.wfq-sidenav-box::-webkit-scrollbar-thumb {
  width: 0.5px !important;
}

.wfq-sidenav-box::-webkit-scrollbar {
  width: 0.5px !important;
}

#wfq-drawer-inner-content .wfq-arrows {
  background: url(arrow-up.svg) center/16px no-repeat;
  margin-right: 15px;
}

#wfq-drawer-inner-content .wfq-arrow-down {
  transform: rotate(180deg);
}

#wfq-drawer-inner-content h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

#wfq-drawer-inner-content .wfq-deleteIcon,
.wfq-custom-input-wrapper .wfq-delete-btn {
  background-size: 14px;
  width: 14px;
  height: 14px;
}

.wfq-outer-product-info::-webkit-scrollbar {
  width: 8px;
}

.wfq-outer-product-info::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.wfq-outer-product-info::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
  transition: background 0.3s;
}

.wfq-outer-product-info::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.wfq-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  grid-column: 1 / -1;
  min-height: 400px;
}

.wfq-required-star {
  color: red;
}

.wfq-loader .wfq-loader-icon {
  background: url(loading.svg) center / 90px no-repeat;
  width: 90px;
  height: 90px;
}

.wfq-loader span {
  font-size: 14px;
}

.toast-top-left,
.toast-top-middle,
.toast-top-right,
.toast-bottom-left,
.toast-bottom-middle,
.toast-bottom-right {
  position: fixed;
  z-index: 9999;
  animation: slideToast 1s ease-out;
}

.toast-top-left {
  top: 30px;
  left: 20px;
}

.toast-top-middle {
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.toast-top-right {
  top: 30px;
  right: 20px;
}

.toast-bottom-left {
  bottom: 30px;
  left: 20px;
}

.toast-bottom-middle {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.toast-bottom-right {
  bottom: 30px;
  right: 20px;
}

/* Toast Animation */
@keyframes slideToast {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Specific Animation Directions */
.toast-top-left {
  animation-name: slideFromLeft;
}

.toast-top-middle {
  animation-name: slideFromTop;
}

.toast-top-right {
  animation-name: slideFromRight;
}

.toast-bottom-left {
  animation-name: slideFromLeft;
}

.toast-bottom-middle {
  animation-name: slideFromBottom;
}

.toast-bottom-right {
  animation-name: slideFromRight;
}

@keyframes slideFromLeft {
  from {
    left: -100%;
  }

  to {
    left: 20px;
  }
}

@keyframes slideFromTop {
  from {
    top: -100%;
  }

  to {
    top: 40px;
  }
}

@keyframes slideFromRight {
  from {
    right: -100%;
  }

  to {
    right: 20px;
  }
}

@keyframes slideFromBottom {
  from {
    bottom: -100%;
  }

  to {
    bottom: 40px;
  }
}

/* Toast Exit Animations */
@keyframes slideTopLeftOut {
  from {
    left: 20px;
  }

  to {
    left: -100%;
  }
}

@keyframes slideTopMiddleOut {
  from {
    top: 40px;
  }

  to {
    top: -100%;
  }
}

@keyframes slideTopRightOut {
  from {
    right: 20px;
  }

  to {
    right: -100%;
  }
}

/* @keyframes slideBottomLeftOut {
    from {
        bottom: 20px;
        left: 20px;
    }

    to {
        bottom: -100px;
        left: 20px;
    }
} */

@keyframes slideBottomMiddleOut {
  from {
    bottom: 40px;
  }

  to {
    bottom: -100%;
  }
}

/* @keyframes slideBottomRightOut {
    from {
        bottom: 20px;
        right: 20px;
    }

    to {
        bottom: -100px;
        right: 20px;
    }
} */

.wfq-basket-empty,
.wfq-no-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  grid-column: 1 / -1;
}

#wfq-drawer-inner-content .wfq-basket-empty,
#wfq-drawer-inner-content .wfq-no-form {
  min-height: 200px;
}

.wfq-no-form {
  grid-column: auto;
}

.wfq-success-msg-box {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 25px 0;
}

.wfq-success-container {
  position: relative;
  width: 200px;
  height: 200px;
  background-size: 200px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: wfqPopInOut 2s infinite;
}

@keyframes wfqPopInOut {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.wfq_cart_to_basket .wfq-btn-txt {
  display: flex;
}

.wfq_cart_to_basket {
  max-height: 40px;
}

.wfq-button .wfq-loading,
.wfq_cart_to_basket .wfq-loading,
.wfq-next-button .wfq-loading {
  pointer-events: none !important;
}

.wfq-button .wfq-loading:after,
.wfq_cart_to_basket .wfq-loading:after,
.wfq-next-button .wfq-loading:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 5px;
  border: 2px solid transparent;
  border-top-color: #fff;
  border-radius: 50%;
  animation: wfqButtonSpin 1s linear infinite;
}

@keyframes wfqButtonSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.wfq-powered-by-text {
  text-align: center;
  margin-bottom: 0;
}

.wfq-drawer-overlay {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 6;
  opacity: 0.5;
}

.wfq-sidenav-box {
  height: 100%;
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  width: 385px;
  padding-top: 60px;
}

.wfq-sidenav-box {
  width: 450px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.wfq-sidenav-box .wfq-product-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.wfq-login-box,
.wfq-popup-heading {
  grid-column: 1/-1;
}

#wfq-inner-content .wfq-login-box,
#wfq-drawer-inner-content .wfq-login-box,
#wfq-page-inner-content .wfq-login-box {
  min-height: 200px;
  align-content: center;
}

#wfq-inner-content .wfq-login-box h3,
#wfq-drawer-inner-content .wfq-login-box h3,
#wfq-page-inner-content .wfq-login-box h3 {
  text-align: center;
}

.wfq-islogin-buttons,
.wfq-quote-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

#wfq-custombasket-icon,
.wfq_cart_to_basket {
  margin: 5px 0;
}

.wfq-login-span {
  cursor: pointer;
  text-decoration: underline;
  position: relative;
  z-index: 99;
}

.wfq-quotes-button {
  position: relative;
  z-index: 9;
}

.wfq-quotes-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
}

.wfq-footer-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.wfq-footer-section a.a-main {
  text-decoration: none;
}

/** NEW DESIGN **/
.wfq-product-table {
  border: 1px solid #ccc;
  border-bottom: none;
  border-spacing: unset;
}

.wfq-product-table thead th,
.wfq-product-table tbody td {
  min-width: 60px;
  padding: 5px;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.wfq-modal-product-image img {
  border: 1px solid #ccc;
}

.wfq-quantity-div input {
  height: 30px;
  max-width: 80px;
  background: transparent;
  border: 1px solid #ccc;
  text-align: center;
}

.wfq-quantity-div input:focus-visible {
  box-shadow: none;
  outline-offset: unset;
}

.wfq-select-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  margin: 0 0 5px;
}

.wfq-select-box select {
  height: 25px;
  color: inherit;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-left: 0;
}

.wfq-sidenav-box {
  padding: 0px 0px 0px 20px;
}

#wfq-drawer-inner-content .wfq-footer-section {
  padding: 0 13px 9px 0px;
  width: 100%;
}

#wfq-drawer-inner-content #wfq-custom-form .selected-button {
  position: fixed;
  bottom: 0;
  z-index: 9;
  background: white;
  width: 100%;
  border-top: 1px solid #a09e9e;
}

#wfq-drawer-inner-content {
  overflow-y: scroll;
  height: 100%;
  padding: 10px 20px 0 0;
}

/* #wfq-drawer-inner-content::-webkit-scrollbar {
    width: 8px;
} */

#wfq-drawer-inner-content .wfq-quantity-div {
  justify-content: flex-end;
}

#wfq-drawer-inner-content .wfq-drawer-inner-box {
  display: flex;
  justify-content: space-between;
  padding: 0 16px 0 0;
}

#wfq-drawer-inner-content .wfq-selected-fields {
  margin-bottom: 70px;
}

#wfq-drawer-inner-content .wfq-outer-product-info {
  padding-top: 15rem;
}

#wfq-drawer-inner-content #wfq-custom-form {
  padding: 0;
}

.wfq-product-table {
  font-size: 14px;
}

.wfq-quote-form .selected-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.wfq-quote-form .selected-field select {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="black"><polygon points="5,7 15,7 10,12"/></svg>')
    no-repeat right 5px center;
  background-size: 20px;
}

#wfq-custom-form select:focus-visible {
  box-shadow: none;
}

.wfq-input-set {
  display: grid;
  grid-template-columns: 6fr 2fr 1fr;
  gap: 5px;
  margin-bottom: 10px;
  align-items: center;
}

.wfq-label-row {
  display: grid;
  grid-template-columns: 6fr 2fr 1fr;
  gap: 5px;
}

.wfq-step-form .wfq-header-steps {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.wfq-header-steps .wfq-step-button {
  outline: transparent;
  border: transparent;
  padding: 10px;
  border-radius: 10px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wfq-header-steps .wfq-step-button span {
  border-radius: 5px;
  font-size: 13.5px;
  font-weight: 500 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wfq-header-steps .wfq-step-button.wfq-normal-tab .wfq-tab-number {
  background-color: #ececec;
  border: 1px solid #71739a;
  color: #71739a;
  height: 36px;
  width: 36px;
}

.wfq-header-steps .wfq-step-button.wfq-active-tab .wfq-tab-number {
  height: 36px;
  width: 36px;
}

.wfq-step-form .wfq-footer-box {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: auto;
  width: 70%;
}

.wfq-step-form .wfq-footer-box button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55%;
  font-size: 14px;
  cursor: pointer;
  margin: 0px;
}

.wfq-review-user-wrapper {
  padding: 10px;
}

.wfq-user-review {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 10px;
  border: 1px solid;
}

.wfq-step-form {
  display: flex;
  flex-direction: column;
  height: 80vh;
  max-height: 90vh;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.wfq-quotes-page .wfq-step-form {
  height: 100%;
  max-height: 100%;
}

.wfq-step-form .wfq-header-steps,
.wfq-step-form .wfq-pagination-container {
  flex-shrink: 0;
  background-color: #f0f0f0;
  padding: 1rem;
  position: sticky;
  z-index: 1;
}

.wfq-step-form .wfq-header-steps {
  top: 0;
}

.wfq-step-form .wfq-pagination-container {
  bottom: 0;
}

.wfq-step-form #wfq-inner-content,
.wfq-step-form #wfq-page-inner-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.wfq-next-button:disabled,
.wfq-disable-btn {
  opacity: 0.5;
  cursor: not-allowed;
}

.wfq-phone-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wfq-phone-wrapper select {
  max-width: max-content;
}

.wfq-success-msg-box p {
  text-align: center;
}

.wfq-review-user-wrapper .wfq-user-info-span {
  display: flex;
  flex-direction: column;
}

.wfq-custom-dropdown {
  position: relative;
  width: fit-content;
  overflow: visible;
}

.wfq-selected-country {
  border: 1px solid #9e9c9c;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-color: #9e9c9c;
  padding: 10px;
  line-height: 16px;
  font-size: 14px;
}

.wfq-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  max-width: 100vw;
  background: #fff;
  border: 1px solid #9e9c9c;
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

#wfq-country-search {
  width: 100%;
  box-sizing: border-box;
  padding: 6px;
  border: none;
  border-bottom: 1px solid #9e9c9c;
  background: transparent;
  color: white;
}

.wfq-country-list {
  max-height: 150px;
  overflow-y: auto;
}

.wfq-country-option {
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}

.wfq-country-option:hover {
  background-color: #cec9c9;
}

.wfq-dial {
  opacity: 0.6;
  margin-left: 5px;
}

.wfq-dropdown-below {
  top: 100%;
  bottom: auto;
  margin-top: 4px;
}

.wfq-dropdown-above {
  bottom: 100%;
  top: auto;
  margin-bottom: 4px;
}

.wfq-checkbox-label {
  display: flex;
  align-items: center;
}

.wfq-basket-empty {
  gap: 10px;
}

.wfq-extra-prop {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.wfq-extra-prop p {
  margin: 4px;
}

.wfq-heading-wrapper .wfq-wfq-page-title,
.wfq-heading-wrapper p {
  margin: 5px 0;
  text-align: center;
}

.wfq-text-field {
  position: relative;
}

.wfq-text-field .wfq-floating-label {
  position: absolute;
  top: 50%;
  left: 12px;
  transition: all 0.2s ease;
  pointer-events: none;
  transform: translateY(-50%);
}

.wfq-text-field.wfq-has-value .wfq-floating-label {
  top: 0px;
  left: 8px;
  font-size: 12px;
  padding: 0 4px;
}

.wfq-phone-field .wfq-text-field .wfq-floating-label,
.wfq-phone-field .wfq-text-field.wfq-has-value .wfq-floating-label {
  left: 105px;
}

/** MEDIA QUERIES**/
@media screen and (max-width: 1199px) {
  #wfq-modal .wfq-modal-content,
  .wfq-quotes-page .wfq-modal-content,
  #wfq-drawer-inner-content {
    width: 100%;
    max-width: calc(100vw - 30px) !important;
  }

  #wfq-drawer-inner-content {
    padding: 0 0;
  }

  #wfq-drawer-inner-content::-webkit-scrollbar {
    width: 8px;
  }

  .wfq-sidenav-box {
    padding: 10px 10px 0px 20px;
  }
}

@media screen and (max-width: 989px) {
  #wfq-modal .wfq-modal-content .wfq-close,
  .wfq-sidenav-box .wfq-drawer-close {
    right: 10px;
    top: 10px;
    background-size: 20px;
  }

  #wfq-modal .wfq-modal-content .wfq-product-content-sec .wfq-discount-price,
  #wfq-modal .wfq-modal-content .wfq-product-content-sec .wfq-sale-price,
  .wfq-quotes-page
    .wfq-modal-content
    .wfq-product-content-sec
    .wfq-discount-price,
  .wfq-quotes-page .wfq-modal-content .wfq-product-content-sec .wfq-sale-price,
  #wfq-drawer-inner-content .wfq-product-content-sec .wfq-discount-price,
  #wfq-drawer-inner-content .wfq-product-content-sec .wfq-sale-price {
    font-size: 16px;
    line-height: 20px;
  }

  #wfq-modal .wfq-modal-content h3.wfq-title a,
  .wfq-quotes-page .wfq-modal-content h3.wfq-title a,
  #wfq-drawer-inner-content h3.wfq-title a {
    margin: 0 0 2px;
  }

  #wfq-drawer-inner-content .wfq-outer-product-info {
    padding-top: 12.2rem;
  }

  #wfq-drawer-inner-content .wfq-selected-fields {
    margin-bottom: 60px;
  }

  #wfq-inner-content,
  #wfq-page-inner-content {
    grid-template-columns: 1fr;
  }

  #wfq-modal .wfq-modal-content .wfq-close,
  .wfq-sidenav-box .wfq-drawer-close {
    right: 10px;
    top: 10px;
  }

  .wfq-sidenav-box .wfq-drawer-close {
    right: 12px;
  }

  #wfq-drawer-inner-content .wfq-arrows {
    margin-right: 0;
  }

  #wfq-modal .wfq-modal-content h3.wfq-title,
  .wfq-quotes-page .wfq-modal-content h3.wfq-title,
  #wfq-drawer-inner-content h3.wfq-title {
    padding-right: 25px;
  }

  .wfq-success-container {
    position: relative;
    width: 150px;
    height: 150px;
    background-size: 150px;
  }

  .wfq-sidenav-box {
    width: 400px;
    padding: 15px;
    max-width: calc(100vw - 30px) !important;
  }
}

@media screen and (max-width: 749px) {
  #wfq-modal .wfq-modal-content h3,
  #wfq-modal .wfq-modal-content h3.wfq-title a,
  .wfq-quotes-page .wfq-modal-content h3,
  .wfq-quotes-page .wfq-modal-content h3.wfq-title a,
  #wfq-drawer-inner-content h3,
  #wfq-drawer-inner-content h3.wfq-title a {
    font-size: 14px;
    line-height: 16px;
  }

  .wfq-product-table .wfq-tbl-sno,
  .wfq-product-table .wfq-tbl-qty,
  .wfq-product-table .wfq-table-index {
    display: none;
  }

  #wfq-modal .wfq-modal-content .wfq-product-info,
  .wfq-quotes-page .wfq-modal-content .wfq-product-info,
  #wfq-drawer-inner-content .wfq-product-info {
    grid-template-columns: 1.5fr 4fr;
  }

  #wfq-modal .wfq-modal-content h3.wfq-title,
  .wfq-quotes-page .wfq-modal-content h3.wfq-title {
    padding-right: 0;
  }

  .wfq-popup-heading {
    padding: 0;
  }

  #wfq-modal .wfq-modal-content .wfq-outer-product-info,
  .wfq-quotes-page .wfq-modal-content .wfq-outer-product-info {
    padding: 0;
  }

  .wfq-product-table {
    border: none;
  }

  .wfq-tbl-qty,
  .wfq-tbl-qty-data {
    order: 4;
  }

  .wfq-heading-tr {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid;
    margin: 0 0 20px;
  }

  tr.wfq-pro-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: relative;
    margin: 0 0 10px;
  }

  td.wfq-tbl-img-data {
    flex: 50%;
  }

  td.wfq-tbl-qty-data {
    order: 4;
  }

  td.wfq-no-price-qty {
    position: absolute;
    bottom: 0;
  }

  td.wfq-tbl-ttl-data {
    text-align: right !important;
  }

  .wfq-product-table thead th,
  .wfq-product-table tbody td {
    border-bottom: none;
  }

  #wfq-modal .wfq-modal-content .wfq-total-price,
  .wfq-quotes-page .wfq-modal-content .wfq-total-price,
  #wfq-drawer-inner-content .wfq-total-price {
    font-size: 12px;
  }

  #wfq-page-inner-content {
    padding: 0;
  }

  #wfq-inner-content #wfq-custom-form,
  #wfq-page-inner-content #wfq-custom-form {
    padding: 10px 0;
  }

  #wfq-inner-content .wfq-tbl-ttl-data .wfq-delete-icon-box,
  #wfq-page-inner-content .wfq-tbl-ttl-data .wfq-delete-icon-box {
    position: inherit;
    margin: 0 0 0 auto;
    right: 0;
  }

  th.wfq-tbl-item {
    text-align: left !important;
  }

  th.wfq-tbl-ttl {
    text-align: right !important;
  }

  #wfq-inner-content .wfq-delete-icon-box,
  #wfq-page-inner-content .wfq-delete-icon-box {
    position: relative;
  }
}

@media screen and (max-width: 480px) {
  #wfq-modal .wfq-modal-content,
  .wfq-quotes-page .wfq-modal-content,
  #wfq-drawer-inner-content {
    padding: 10px !important;
  }

  #wfq-modal .wfq-modal-content .wfq-close,
  .wfq-sidenav-box .wfq-drawer-close {
    right: 8px;
    top: 8px;
    width: 20px;
    height: 20px;
    background-size: 20px;
  }

  .wfq-sidenav-box .wfq-drawer-close {
    right: 13px;
  }

  #wfq-modal .wfq-modal-content h3.wfq-title a,
  .wfq-quotes-page .wfq-modal-content h3.wfq-title a,
  #wfq-drawer-inner-content h3.wfq-title a {
    margin: 0 0 5px;
  }

  .wfq-success-container {
    position: relative;
    width: 90px;
    background-size: 90px;
    height: 90px;
  }

  #wfq-drawer-inner-content .wfq-selected-fields {
    margin-bottom: 50px;
  }

  .wfq-header-steps .wfq-step-button.wfq-normal-tab {
    display: none;
  }

  .wfq-review-user-wrapper .wfq-user-review {
    grid-template-columns: 1fr;
  }

  .wfq-review-user-wrapper .wfq-user-info-span {
    border-bottom: 1px solid gray;
  }

  .wfq-review-user-wrapper {
    padding: 0;
  }

  h2 {
    font-size: 20px;
  }
}
