:root {
  --wf-font-scale-xl: calc((100vw - 1600px) * 0.01);
}

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

.wfq-expired-tag,
.wfq-custom-option-error {
  color: red !important;
  font-weight: 800 !important;
}

p.wfq-custom-option-error {
  margin: 5px 0;
}

.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: 99999;
  position: fixed;
  cursor: pointer;
  padding: 8px 25px;
}

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

.wfq-floating-badge .wfq-floating-count-span,
.wfq-custom-view-btn .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,
button.wfq-open-e-form,
.wfq-action-box button,
.wfq-date-range input,
.wfq-text-field input[type="date"],
.wfq-form input[type="radio"],
.wfq-form input[type="checkbox"],
.wfq-enquiry-form input[type="checkbox"],
.wfq-enquiry-form input[type="radio"] {
  cursor: pointer;
}

.wfq-form input[type="radio"],
.wfq-form input[type="checkbox"],
.wfq-enquiry-form input[type="checkbox"],
.wfq-enquiry-form input[type="radio"] {
  height: 13px;
  width: 13px;
  padding: 3px;
}

.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%, 0);
  transform-origin: left;
}

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

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

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

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

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

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

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

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

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

.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);
  }
}

.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);
  }
}

.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 rgb(255 87 51 / 0.7);
}

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

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

  to {
    transform: translateX(0);
  }
}

.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);
  }
}

.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);
  }
}

.wfq-animated-snake {
  position: relative;
  overflow: hidden;
  border: 3px solid #fff0;
  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;
  }
}

.wfq-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0 0 0 / 0.4);
}

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

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

.wfq-qty-minus:hover,
.wfq-qty-plus:hover {
  background: #d0cece;
}

.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,
.wfq-popover .wfq-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: 16px;
  padding: 10px;
}

.wfq-step-form #wfq-inner-content,
.wfq-step-form #wfq-page-inner-content {
  margin-top: 0;
}

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

.wfq-selected-fields .wfq-text-field label {
  width: 100%;
  text-align: left;
  outline: none;
  gap: 5px;
  letter-spacing: 0;
  line-height: 1.1;
}

.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 {
  outline: none;
  padding: 8px 10px;
  font-size: 12px;
  display: block;
  flex: 1 1;
  width: 100%;
  min-height: 40px;
  margin: 0;
}

.wfq-text-field input[type="phone"] {
  padding: 8px 10px;
}

.wfq-modal,
.wfq-hide-add-field {
  display: none;
}

.wfq-c-price-error {
  display: none;
}

.wfq-file-wrapper {
  position: relative;
}

.wfq-text-field input.wfq-hide-file {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  bottom: 0;
  cursor: pointer;
}

.wfq-remove-file {
  position: absolute;
  top: 10px;
  right: -10px;
  border-radius: 50%;
  padding: 5px 7px;
  background: #fff;
  color: #000;
  cursor: pointer;
}

.wfq-remove-file:hover {
  transform: scale(1.1);
  background-color: #dbdbdb;
  color: red;
}

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

.selected-button button,
.wfq-custom-input-wrapper button.wfq-addMoreBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3ms ease-in-out;
  cursor: pointer;
}

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

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

.wfq-quantity-div input.wfq-quant-update::-webkit-outer-spin-button,
.wfq-quantity-div input.wfq-quant-update::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.wfq-quantity-div input.wfq-quant-update {
  -moz-appearance: textfield;
  appearance: textfield;
}

.wfq-product-selected-variants,
.wfq-vendor,
.wfq-sku,
.wfq-sub-total,
.wfq-total-price,
.wfq-c-sub-total,
.wfq-false-product,
.wfq-option-select p,
.wfq-quantity-div,
.wfq-c-price-div,
.wfq-extra-prop p,
.wfq-c-price-div label,
.wfq-c-price-error {
  color: inherit;
  letter-spacing: 0;
  margin: 0;
}

.wfq-quantity-div span {
  width: 30px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  font-size: 20px;
  transition: background 0.2s ease;
  margin: 0;
}

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

.wfq-product-option-price {
  letter-spacing: 0;
  font-weight: 600;
}

#wfq-modal .wfq-modal-content h3,
.wfq-quotes-page .wfq-modal-content h3,
#wfq-drawer-inner-content h3,
h3.wfq-title a {
  letter-spacing: 0;
  text-align: left;
  padding: 0;
  color: inherit;
}

h3.wfq-title {
  margin: 0;
  min-height: auto;
}

h3.wfq-title a {
  display: inline-block;
  text-decoration: none;
  width: 100%;
}

.wfq-quantity-div {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b6b5b5;
  border-radius: 4px;
  overflow: hidden;
  max-width: max-content;
  height: 30px;
  margin: auto;
}

#wfq-modal .wfq-modal-content .wfq-quantity-div,
.wfq-quotes-page .wfq-modal-content .wfq-quantity-div,
.wfq-modal-content .wfq-c-price-div {
  letter-spacing: 0;
  color: inherit !important;
}

#wfq-drawer-inner-content .wfq-product-info {
  display: grid;
  grid-template-columns: 1fr 4fr;
}

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

.wfq-total-price {
  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: 0px;
  position: relative;
}

.wfq-popup-heading h2,
.wfq-popup-heading p {
  margin: 0;
}

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

.wfq-delete-icon-box {
  width: 30px;
  height: 30px;
  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: 0;
  bottom: 0;
}

#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) top center/100% no-repeat;
  aspect-ratio: 1 / 0.8;
  border-radius: 4px;
}

.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 .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,
.wfq-error,
.wfq-c-price-error {
  color: red;
  font-weight: bold !important;
}

.wfq-c-price-error {
  font-weight: 700;
  text-align: left;
}

.wfq-loader .wfq-loader-icon {
  background: url(loading.svg) center / 90px no-repeat;
  width: 90px;
  height: 90px;
  animation: wfqSpin 2s linear infinite;
}

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

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

.toast-top-left,
.toast-top-middle,
.toast-top-right,
.toast-bottom-left,
.toast-bottom-middle,
.toast-bottom-right {
  position: fixed;
  z-index: 99999;
  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;
}

@keyframes slideToast {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.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;
  }
}

@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 slideBottomMiddleOut {
  from {
    bottom: 40px;
  }

  to {
    bottom: -100%;
  }
}

.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-e-box {
  min-height: 300px;
  align-content: center;
}

.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,
.wfq-review-information .wfq-quantity-div,
.wfq-disable-btn {
  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 #fff0;
  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;
}

.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: 8px;
}

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

.wfq-login-box {
  min-height: 200px;
  align-content: center;
}

.wfq-login-box h3,
.wfq-e-box p {
  text-align: center !important;
}

.wfq-islogin-buttons,
.wfq-quote-btn-icon,
.wfq-drawer-flex {
  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: 2;
}

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

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

.wfq-btn-box > div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wfq-btn-box {
  flex-wrap: wrap;
}

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

.wfq-product-table {
  border-radius: 10px;
  width: 100%;
  display: block;
  overflow: hidden;
}

.wfq-loading-dot {
  font-size: 2.4rem;
  font-weight: bolder;
  line-height: 10px;
}

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

.wfq-quantity-div input,
.wfq-c-price-div input {
  height: 25px;
  max-width: 80px;
  background: #ffffff;
  border: 1px solid #ccc;
  text-align: center;
  border-radius: 4px;
  margin: 0;
}

.wfq-c-price-div input:not(.wfq-quant-update) {
  min-width: 80px !important;
  height: 34px;
  margin: 0;
}

.wfq-quantity-div input.wfq-quant-update {
  border: none !important;
  width: 30px !important;
  min-width: 30px;
  border-radius: 0 !important;
  min-height: 34px !important;
  padding: 0px !important;
}

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

.wfq-quantity-div input.wfq-quant-update:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

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

.wfq-drawer-flex {
  justify-content: flex-start;
  margin-bottom: 8px;
  align-items: center !important;
}

.wfq-drawer-inner-box .wfq-select-box,
.wfq-drawer-flex {
  align-items: flex-start;
  flex-wrap: wrap;
}

.wfq-cutoff-price {
  color: gray;
  text-decoration: line-through;
}

.wfq-select-box select {
  height: 30px;
  min-height: 30px !important;
  color: inherit;
  width: 100%;
  text-overflow: unset;
  white-space: nowrap;
  overflow: hidden;
  margin-left: 0;
  background-position: right 5px center !important;
  border-radius: 4px;
  text-transform: capitalize;
}

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

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

#wfq-drawer-inner-content #wfq-custom-form .selected-button {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9;
  background: #fff;
  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 .wfq-quantity-div {
  justify-content: flex-start;
  max-width: max-content;
  margin: 0;
}

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

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

#wfq-drawer-inner-content #wfq-custom-form {
  padding: 20px 10px;
}

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

.wfq-quote-form .selected-field select {
  background-image: 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>");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 16px;
}

#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: end;
}

.wfq-label-row {
  display: block;
}

.wfq-step-form .wfq-header-steps {
  display: flex;
  justify-content: flex-start;
  border-radius: 12px 12px 0 0;
}

.wfq-header-steps .wfq-step-button {
  padding: 5px 10px;
  border-radius: 6px;
  background-color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.wfq-step-form .wfq-footer-box button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
}

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

.wfq-user-info-address,
.wfq-user-info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid;
  border-radius: 10px;
}

.wfq-user-info-section {
  border: none;
  padding: 0;
}

.wfq-user-info-section,
.wfq-user-info-section h3 {
  grid-column: 1/-1;
}

.wfq-user-info-section h3 {
  margin: 4px 0;
}

.wfq-step-form {
  display: flex;
  flex-direction: column;
  height: 80vh;
  max-height: 90vh;
  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;
  padding: 10px;
  position: sticky;
  z-index: 1;
}

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

.wfq-step-form .wfq-pagination-container {
  bottom: 0;
  border-radius: 0 0 12px 12px;
}

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

.wfq-step-form #wfq-page-inner-content {
  min-height: 400px;
}

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

.wfq-phone-wrapper {
  display: flex;
}

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

.wfq-success-msg-box p {
  text-align: center;
  margin: 15px 0 !important;
}

.wfq-review-user-wrapper .wfq-user-info-span {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #cfcccc;
}

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

.wfq-province-wrapper .wfq-custom-dropdown {
  width: 100%;
}

.wfq-selected-country {
  border: 1px solid #9e9c9c;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  height: 100%;
}

.wfq-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  background: #fff;
  border: 1px solid #9e9c9c;
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 10;
  box-shadow: 0 4px 8px rgb(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: #fff0;
  color: #fff;
}

.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-dropdown-right {
  left: 0;
  right: auto;
}

.wfq-dropdown-left {
  right: 0;
  left: auto;
}

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

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

.wfq-custom-anchor {
  color: #000;
}

.wfq-extra-prop p {
  word-wrap: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
  margin: 4px 4px 0 0;
}

.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%);
  color: #afadad;
  z-index: 9;
}

.wfq-text-field.wfq-has-value .wfq-floating-label {
  top: 0;
  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;
}

.wfq-customer-portal-list-container {
  width: 100%;
  margin: auto;
  overflow-x: auto;
}

.wfq-customer-portal-list-container table {
  width: 100%;
  border-spacing: 0px;
}

.wfq-customer-portal-list-container h1,
.wfq-customer-portal-list-container p,
.wfq-portal-heading p {
  margin: 8px 0;
}

.wfq-customer-portal-list-cell:not(.wfq-action-box) {
  min-width: 70px;
  text-align: center;
  padding: 4px;
  gap: 10px;
  width: max-content;
}

.wfq-customer-portal-list-cell.wfq-action-box {
  padding: 4px;
  width: auto;
}

.wfq-customer-portal-list-cell .wfq-action-box-btns {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin-left: auto;
}

.wfq-quote-status {
  border-radius: 16px;
}

.wfq-badge.wfq-draft-order {
  background-color: #c7a6ff !important;
  color: indigo;
}

.wfq-draft-order .wfq-status-dot {
  background: indigo;
  padding: 0px !important;
}

.wfq-badge.wfq-read {
  background-color: #99d6ff !important;
  color: #004c99;
}

.wfq-read .wfq-status-dot {
  background: #004c99;
  padding: 0px !important;
}

.wfq-badge.wfq-created {
  background-color: #ffd966 !important;
  color: #7a5e00;
}

.wfq-created .wfq-status-dot {
  background: #7a5e00;
  padding: 0px !important;
}

.wfq-badge.wfq-ordered {
  background-color: #8be28e !important;
  color: #0f5132;
}

.wfq-ordered .wfq-status-dot {
  background: #0f5132;
  padding: 0px !important;
}

.wfq-badge.wfq-in-progress {
  background-color: #ffc266 !important;
  color: #8a3c00;
}

.wfq-in-progress .wfq-status-dot {
  background: #8a3c00;
  padding: 0px !important;
}

.wfq-badge.wfq-declined {
  background-color: #ff9a99 !important;
  color: #7d1714;
}

.wfq-declined .wfq-status-dot {
  background: #7d1714;
  padding: 0px !important;
}

.wfq-badge.wfq-cancelled {
  background-color: #cccccc !important;
  color: #333;
}

.wfq-cancelled .wfq-status-dot {
  background: #333;
  padding: 0px !important;
}

.wfq-badge.wfq-sent {
  background-color: #e0f7fa !important;
  color: #006064 !important;
}

.wfq-sent .wfq-status-dot {
  background: #006064;
  padding: 0px !important;
}

.wfq-action-box.wfq-Center {
  justify-content: center;
}

.wfq-pdf-action-button {
  background-image: url(./pdf-btn.svg);
  height: 34px;
  width: 34px;
  background-repeat: no-repeat;
  background-size: 34px;
  background-position: center;
  cursor: pointer;
  display: block !important;
}

.wfq-portal-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 5px auto;
}

.wfq-portal-pagination button:focus-visible {
  outline: #fff0;
  border: #fff0;
}

.wfq-portal-pagination .wfq-arrow {
  background-repeat: no-repeat;
  height: 36px !important;
  width: 36px !important;
  cursor: pointer;
  border-radius: 4px;
  padding: 8px;
  background-size: 10px;
  background-position: center;
  border: 1px solid #cccccc;
}

.wfq-portal-pagination .wfq-previous-page {
  background-image: url(./previous.png);
}

.wfq-portal-pagination .wfq-next-page {
  background-image: url(./next.png);
}

.wfq-portal-pagination .wfq-pagination-action-page {
  border: 1px solid #000;
  outline: #fff;
  border-radius: 4px;
  width: 27px;
  height: 27px;
  cursor: pointer;
  font-size: 12px;
}

.wfq-portal-pagination .wfq-pagination-dots {
  border: #fff0;
  outline: #fff0;
  display: flex;
  align-items: center;
  gap: 1.5px;
}

.wfq-pagination-dots span {
  height: 10px;
  width: 10px;
  background-color: #000;
  border-radius: 50%;
  cursor: pointer;
}

.wfq-customer-portal-list-cell .wfq-option-select span {
  height: max-content;
  white-space: normal;
  padding: 0 5px 5px 0;
}

.wfq-approve-box {
  min-height: 50vh;
  align-content: center;
}

.wfq-approve-box,
.wfq-approve-box h2,
.wfq-approve-box p {
  text-align: center;
}

.wfq-approve-box .wfq-loader {
  min-height: auto;
}

.wfq-ship-add,
.wfq-bill-add {
  margin: 4px 0;
}

.wfq-address-box input[type="checkbox"] {
  margin-left: 0;
}

h3.wfq-ship-add,
h3.wfq-bill-add,
.wfq-e-box p {
  font-size: 18px !important;
  font-weight: 600 !important;
}

.wfq-enquiry-form {
  align-content: center;
}

.wfq-enquiry-form p.enquiry-empty-form {
  text-align: center;
  font-size: 20px;
}

form.wfq-enquiry-form {
  padding: 0;
  margin-top: 15px;
}

div.wfq-enquiry-form .pb-15 p {
  margin: 0;
}

.enquiry-empty-form {
  min-height: 300px;
  align-content: center;
}

.quick-order-list__table .wfq-quotes-button {
  margin: 0 0 0 15px !important;
}

.wfq-quote-detail .wfq-customer-portal-list-cell {
  max-width: 200px !important;
  padding: 10px 16px !important;
}

.wfq-quote-detail tr th:nth-child(1),
.wfq-quote-detail tr td:nth-child(1) {
  text-align: left !important;
}

.wfq-quote-detail tr th:nth-child(4),
.wfq-quote-detail tr td:nth-child(4),
.wfq-f-end {
  text-align: right !important;
}

.wfq-o-box {
  margin-top: 10px;
}

.wfq-amount-section .wfq-amount-row {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f2f2f2;
}

.wfq-success-para,
.wfq-expire-para {
  width: max-content;
  padding: 2px 5px;
}

.wfq-expire-para {
  padding: 2px 5px;
}

.wfq-customer-portal-list-cell .wfq-product-content-sec p {
  margin: 0;
}

.wfq-quote-detail {
  max-width: 1280px !important;
}

.wfq-hidden-select-div,
.quick-order-list__total a.quick-order-list__button,
.wfq-hide-icon,
.wfq-c-input-heading {
  display: none !important;
}

.wfq-c-input-heading {
  text-align: left;
}

div.wfq-enquiry-form:has(> button.wfq-cart-button-style) {
  padding: 0;
  margin: 10px 0;
}

.wfq-enquiry-form h2.Polaris-Text--root {
  margin: 0 !important;
}

.wfq-heading-tr {
  background: transparent;
}

table.wfq-customer-portal-list .wfq-heading-tr {
  background: #f2f2f2;
}

.wfq-date-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.metafield-rich_text_field ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.metafield-rich_text_field ul li {
  position: relative;
  padding-left: 10px;
  line-height: 1.4;
  padding-bottom: 5px;
}

.metafield-rich_text_field ul li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000000;
}

.wfq-main-Modal-form {
  max-width: 100%;
}

.wfq-custom-input-wrapper {
  margin: 15px 0;
}

.wfq-popup-heading1 h2 {
  align-items: center;
  display: flex;
  gap: 5px;
  justify-content: flex-start;
}

.wfq-popup-heading1 p,
.wfq-popup-heading p {
  margin: 0;
  padding-left: 0;
  width: 100%;
}

.wfq-comment-input {
  margin-top: 20px;
  padding: 20px 16px;
}

.wfq-comment-input textarea {
  width: 100%;
}

.wfq-comment-input button {
  margin-left: auto;
}

.wfq-comment-item {
  background-color: #f2f6f7;
  border-radius: 10px;
  min-height: 40px;
  padding: 14px 16px;
  margin-top: 10px;
}

.wfq-info-m-badge {
  background-color: #000;
  color: #fff;
  padding: 4px 9px;
  font-size: 12px;
  border-radius: 4px;
  width: max-content;
  display: flex;
  align-items: center;
  text-transform: capitalize;
}

.wfq-comment-date {
  font-size: 12px;
}

#wfq-comment-list-item {
  margin-top: 0;
  padding: 6px 0 0;
}

#wfq-comment-list-item p,
.wfq-comments-wrapper p.wfq-error {
  margin: 0;
}

#wfq-drawer-inner-content .wfq-c-price-div {
  margin: 0;
}

.wfq-c-price-div.wfq-margin {
  margin-bottom: 10px !important;
}

.wfq-clickbtn-loading {
  pointer-events: none;
  filter: blur(1px);
  opacity: 0.6;
}

.wfq-msg-modal {
  align-content: center;
}

.wfq-msg-modal .wfq-modal-content {
  width: 55%;
  min-height: 40px !important;
  text-align: center !important;
}

.wfq-msg-modal #wfq-inner-content {
  grid-template-columns: 1fr !important;
  margin: 0;
}

.wfq-quotes-page .wfq-modal-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 15px;
}

.wfq-modal-content p:empty {
  padding: 0 !important;
  margin: 0 !important;
}

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

.wfq-empty-table .wfq-product-table,
.wfq-empty-table .wfq-total-price,
.wfq-empty-heading {
  display: none;
}

.wfq-empty-heading {
  font-weight: bold !important;
  font-size: 16px !important;
}

.wfq-empty-table .wfq-footer-section {
  justify-content: center;
}

.wfq-empty-table .wfq-empty-heading {
  text-align: center !important;
  display: block;
}

#wfq-inner-content h2,
#wfq-page-inner-content h2,
#wfq-drawer-inner-content h2,
.wfq-o-box h3 {
  margin-bottom: 0px;
}

.wfq-customer-portal-list,
.wfq-comments-wrapper textarea {
  margin-top: 5px !important;
}

.wfq-pro-info[data-parantpid] .wfq-modal-product-image img {
  width: 60%;
}

.wfq-pro-info[data-parantpid] .wfq-modal-product-image a {
  display: flex;
  justify-content: flex-end;
}

#wfq-drawer-inner-content .wfq-footer-section.wfq-custom-box {
  flex-direction: column-reverse;
  padding-right: 0;
}

#wfq-drawer-inner-content .wfq-custom-box .wfq-total-price {
  width: 100%;
}

.wfq-main-Modal-form {
  position: relative;
}

#wfq-drawer-inner-content #wfq-custom-form .selected-button {
  padding: 15px;
}

.wfq-product-option-price .wfq-hide-price-span {
  display: block;
  max-width: 170px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.wfq-tbl-ttl-data .wfq-hide-price-span {
  display: block;
  width: 100px;
  height: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.selected-field.wfq-phone-wrapper {
  display: block;
}

.wfq-hide-price-span {
  width: max-content;
  margin: 0;
  margin-bottom: 6px;
}

.wfq-step-form .wfq-header-steps:nth-child(2) {
  display: none !important;
}

.wfq-round-svg {
  background-image: url("round-sort-vertical.svg");
  background-size: 20px !important;
  height: 20px !important;
  width: 20px !important;
  background-repeat: no-repeat !important;
}

.wfq-product-info div:empty:not(.wfq-deleteIcon) {
  display: none !important;
}

.wfq-heading-tr th.wfq-customer-portal-list-cell {
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  padding: 10px 16px;
}

.wfq-heading-tr th.wfq-customer-portal-list-cell:first-of-type {
  border-top-left-radius: 4px !important;
}

.wfq-heading-tr th.wfq-customer-portal-list-cell:last-of-type {
  border-top-right-radius: 4px !important;
}

.wfq-sort-btn {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
  border: none;
  width: max-content;
  background: transparent;
  cursor: pointer;
}

.wfq-status-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
}

.wfq-badge {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  width: max-content;
  margin: auto;
  position: relative;
  padding: 12px 16px 12px 24px;
  min-width: auto;
  line-height: 100%;
  text-transform: capitalize;
}

.wfq-form input::placeholder,
.wfq-form textarea::placeholder,
.wfq-form select::placeholder {
  color: #a0a0a0;
  opacity: 1;
}

.wfq-popover .wfq-selected-variants p,
.wfq-popover .wfq-extra-prop p,
.wfq-popover .wfq-title,
.wfq-popover .wfq-vendor,
.wfq-popover .wfq-sku {
  margin: 0;
}

.wfq-popover .wfq-selected-variants {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

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

.wfq-quotes-page #wfq-page-inner-content h2 {
  margin: 0;
}

.wfq-quotes-page {
  padding-top: 35px;
  padding-bottom: 30px;
}

.wfq-customer-portal-list-container table tr td.wfq-customer-portal-list-cell {
  padding: 15px 5px 15px;
  border-bottom: 1px solid #cccccc33;
}

.wfq-fw {
  font-weight: 600;
}

.wfq-badge:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  left: 8px;
  top: 50%;
  transform: translate(2px, -3px);
}

.wfq-badge.wfq-draft-order:before {
  background-color: indigo;
}

.wfq-badge.wfq-sent:before {
  background-color: #006064;
}

.wfq-badge.wfq-ordered:before {
  background-color: #0f5132;
}

.wfq-badge.wfq-cancelled:before {
  background-color: #333;
}

.wfq-badge.wfq-declined:before {
  background-color: #7d1714;
}

.wfq-badge.wfq-in-progress:before {
  background-color: #8a3c00;
}

.wfq-badge.wfq-created:before {
  background-color: #7a5e00;
}

.wfq-badge.wfq-read:before {
  background-color: #004c99;
}

button.wfq-pagination-action-page.wfq-active {
  background: #222222;
  border-color: #222222;
}

.wfq-portal-pagination .wfq-pagination-action-page {
  border: 1px solid #cccc;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 12px;
  background: transparent;
}

.wfq-portal-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 30px auto 0;
}

.wfq-quote-detail td.wfq-customer-portal-list-cell .wfq-modal-product-image,
.wfq-quote-detail td.wfq-customer-portal-list-cell .wfq-no-img {
  max-width: 160px;
  width: 100%;
}

.wfq-quote-detail td.wfq-customer-portal-list-cell .wfq-product-info {
  align-items: center;
  display: flex;
  gap: 10px;
}

.wfq-customer-portal-list-container
  table.wfq-quote-detail
  tr
  td.wfq-customer-portal-list-cell:nth-child(3) {
  font-weight: 400;
}

.wfq-f-end {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.wfq-comments-wrapper textarea {
  margin-top: 15px !important;
  padding: 11px 16px;
  margin-bottom: 6px;
  outline: none;
  padding: 8px 10px;
  font-size: 12px;
  display: block;
  flex: 1 1;
  width: 100%;
  min-height: 40px;
  background: transparent;
}

.wfq-comment-header strong {
  text-transform: uppercase;
}

p.wfq-comment-text {
  text-transform: capitalize;
}

.wfq-comment-date {
  font-size: 13px;
}

.efq-status-detail {
  align-items: center;
  display: flex;
  gap: 10px;
}

.efq-status-detail .wfq-badge {
  margin: 0;
}

#wfq-modal .wfq-modal-content .wfq-heading-tr .wfq-modal-product-image {
  width: 92px;
}

p.wfq-vendor,
p.wfq-sku {
  text-transform: capitalize;
}

.wfq-quantity-div {
  height: 34px;
  border: 1px solid #cccccc;
}

.wfq-quantity-div .wfq-qty-plus,
.wfq-quantity-div .wfq-qty-minus {
  background: #eeeeee;
}

.wfq-footer-section {
  margin-top: 10px;
}

#wfq-custom-form {
  padding: 10px 16px;
  border-radius: 12px;
}

.wfq-custom-input-wrapper input:focus-visible,
.wfq-selected-fields input:focus-visible,
.wfq-selected-fields textarea:focus-visible {
  box-shadow: none !important;
}

.wfq-radio-btns {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.wfq-radio-btns input {
  margin: 0;
}

.wfq-radio-btns label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wfq-form .wfq-selected-fields .wfq-button button {
  width: 100%;
  max-width: 100%;
}

p.wfq-sub-total,
P.wfq-c-sub-total {
  font-weight: 600;
}

.wfq-sidenav-box .wfq-product-content-sec {
  padding-left: 0;
}

#wfq-drawer-inner-content .wfq-footer-section.wfq-custom-box .wfq-flex-box,
#wfq-drawer-inner-content
  .wfq-footer-section.wfq-custom-box
  button.wfq-cart-button-style {
  width: 100%;
}

.wfq-sidenav-box .wfq-select-box {
  gap: 5px;
  margin: 0 0 8px;
}

.wfq-sidenav-box .wfq-modal-product-image,
.wfq-sidenav-box .wfq-no-img {
  width: 80px;
}

.wfq-custom-input-wrapper button.wfq-addMoreBtn.wfq-cart-button-style {
  height: 41px;
}

.wfq-step-form .wfq-product-table thead th,
.wfq-step-form .wfq-product-table tbody td {
  min-width: 120px;
}

select:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.wfq-form h2,
.wfq-popup-heading h2,
.wfq-review-user-wrapper h2 {
  margin: 0;
}

#wfq-modal .wfq-modal-content div.wfq-heading-tr,
.wfq-modal-content #wfq-page-inner-content div.wfq-heading-tr {
  display: flex;
  align-items: center;
  text-align: left;
  width: 100%;
  justify-content: space-between;
}

#wfq-modal .wfq-modal-content .wfq-heading-tr .wfq-tbl-item,
.wfq-modal-content #wfq-page-inner-content .wfq-heading-tr .wfq-tbl-item {
  width: 100%;
  max-width: 320px;
}

#wfq-modal .wfq-modal-content .wfq-heading-tr div:not(:first-of-type),
.wfq-modal-content
  #wfq-page-inner-content
  .wfq-heading-tr
  div:not(:first-of-type),
#wfq-modal
  .wfq-modal-content
  .wfq-pro-info
  .wfq-pro-info-item:not(.wfq-product-info),
.wfq-modal-content
  #wfq-page-inner-content
  .wfq-pro-info
  .wfq-pro-info-item:not(.wfq-product-info) {
  text-align: center;
  width: 100%;
  max-width: 180px;
  flex: 1;
}

.wfq-pro-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}

.wfq-sidenav-box .wfq-pro-info {
  align-items: start;
}

.wfq-product-table .wfq-product-info {
  width: 100%;
  max-width: 320px;
}

.wfq-modal-content .wfq-product-info .wfq-tbl-img-data {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 0.3fr 1fr;
  column-gap: 16px;
}

.wfq-product-table .wfq-product-info .wfq-modal-product-image,
.wfq-product-table .wfq-product-info .wfq-no-img {
  position: relative;
  overflow: hidden;
  min-width: 60px;
}

.wfq-product-content-sec,
.wfq-false-product {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  height: 100%;
}

.wfq-product-table .wfq-product-content-sec,
.wfq-product-table .wfq-false-product {
  justify-content: start;
}

.wfq-quotes-button {
  margin-top: 10px;
}

.wfq-text-field .wfq-checkbox-label input {
  margin-left: 0;
}

label:has(input[type="radio"]),
label:has(input[type="checkbox"]) {
  align-items: start;
}

.wfq-select-box select {
  text-align: left;
  text-align-last: left;
}

.wfq-select-box select option {
  text-align: left;
}

@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 0 20px;
  }

  button.wfq-quote-action-button,
  button.wfq-payment-action-button {
    font-size: 12px;
    padding: 8px 10px;
  }

  .wfq-customer-portal-list-container
    table
    tr
    td.wfq-customer-portal-list-cell
    .wfq-badge {
    position: relative;
    padding: 8px 10px 8px 20px;
    min-width: auto;
    line-height: 100%;
    text-transform: capitalize;
    font-size: 12px;
  }

  .wfq-customer-portal-list-container
    table
    tr
    td.wfq-customer-portal-list-cell
    .wfq-badge:before {
    width: 6px;
    height: 6px;
  }
}

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

  #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;
  }

  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 (max-width: 900px) {
  .wfq-customer-portal-list-cell:not(.wfq-action-box) {
    min-width: 110px;
  }

  .wfq-quote-detail td.wfq-customer-portal-list-cell .wfq-modal-product-image {
    width: auto;
  }

  .wfq-quote-detail
    td.wfq-customer-portal-list-cell
    .wfq-modal-product-image
    img {
    max-width: max-content;
    width: auto;
    height: revert-rule;
  }

  .wfq-quote-detail .wfq-product-info {
    gap: 0;
  }

  .wfq-product-content-sec h3.wfq-title {
    margin: 0;
  }

  .wfq-customer-portal-list-cell .wfq-product-content-sec p {
    margin: 0;
    line-height: 110% !important;
  }

  .wfq-quote-detail .wfq-customer-portal-list-cell {
    padding: 8px 12px !important;
    text-align: center !important;
  }

  .wfq-amount-section .wfq-amount-row {
    padding: 8px 12px !important;
    gap: 20px;
  }

  .wfq-form .wfq-button button,
  .wfq-custom-input-wrapper button.wfq-addMoreBtn,
  .wfq-cart-button-style,
  .wfq-quote-action-button,
  .wfq-payment-action-button,
  .wfq-pagination-action-page.wfq-active {
    font-size: 12px;
    padding: 8px 20px;
  }

  .wfq-quotes-page #wfq-page-inner-content h2 {
    margin: 0;
    font-size: 18px !important;
  }

  .wfq-comment-item {
    padding: 10px 12px;
    margin-top: 10px;
  }

  .wfq-comment-input {
    margin-top: 15px;
    padding: 15px 12px;
  }
}

@media (max-width: 768px) {
  .wfq-quote-detail {
    width: 100% !important;
  }

  .wfq-quote-detail .wfq-customer-portal-list-cell {
    max-width: 100% !important;
  }

  .wfq-quote-detail td {
    padding: 6px 0;
    text-align: left !important;
  }

  .wfq-quote-detail .wfq-product-info {
    display: flex;
    gap: 10px;
  }

  .wfq-quote-detail .wfq-modal-product-image img,
  .wfq-modal-product-image .wfq-no-img {
    max-width: 60px;
    height: 60px;
    width: 50px;
  }

  .wfq-quote-detail td.wfq-customer-portal-list-cell .wfq-no-img {
    width: 92px;
    max-width: 92px;
  }
}

@media screen and (max-width: 749px) {
  #wfq-modal .wfq-modal-content .wfq-heading-tr div:not(:first-of-type),
  .wfq-modal-content
    #wfq-page-inner-content
    .wfq-heading-tr
    div:not(:first-of-type) {
    display: block;
  }

  #wfq-modal .wfq-modal-content .wfq-quantity-div,
  .wfq-quotes-page .wfq-modal-content .wfq-quantity-div {
    justify-content: flex-start;
  }

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

  .wfq-product-table th.wfq-tbl-ttl {
    text-align: left !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 {
    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-modal .wfq-modal-content .wfq-outer-product-info,
  .wfq-quotes-page .wfq-modal-content .wfq-outer-product-info {
    padding: 0;
  }

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

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

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

  #wfq-inner-content #wfq-custom-form,
  #wfq-page-inner-content #wfq-custom-form {
    padding: 20px 15px;
  }

  #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-select-box {
    align-items: flex-start;
  }

  #wfq-modal .wfq-modal-content .wfq-c-price-div,
  #wfq-modal .wfq-modal-content .wfq-quantity-div {
    margin: 0;
  }

  .wfq-sub-total {
    margin-top: 20px;
  }

  .wfq-portal-pagination .wfq-arrow {
    height: 30px !important;
    width: 30px !important;
  }

  .wfq-portal-pagination .wfq-pagination-action-page {
    width: 30px;
    height: 30px;
  }

  .wfq-customer-portal-list-container
    table
    .wfq-heading-tr
    th.wfq-customer-portal-list-cell {
    padding: 10px 5px;
  }

  .wfq-customer-portal-list-container
    table
    tr
    td.wfq-customer-portal-list-cell {
    padding: 10px 0 10px;
  }

  .wfq-portal-pagination {
    margin: 16px auto 0;
  }

  .wfq-flex-box,
  .wfq-comment-header {
    flex-wrap: wrap;
    row-gap: 0;
    justify-content: space-between;
  }

  #wfq-drawer-inner-content .wfq-footer-section.wfq-custom-box .wfq-flex-box,
  #wfq-drawer-inner-content
    .wfq-footer-section.wfq-custom-box
    button.wfq-cart-button-style {
    gap: 8px;
  }

  .wfq-footer-section .wfq-flex-box {
    row-gap: 8px;
  }

  .wfq-footer-section .wfq-flex-box button.wfq-cart-button-style {
    width: 100%;
  }

  .wfq-review-user-wrapper .wfq-selected-fields {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .wfq-step-form .wfq-selected-fields .selected-field {
    margin: 0 0 5px;
  }

  p.wfq-sub-total {
    font-weight: 600;
    margin: 0;
  }

  .wfq-c-price-div input {
    margin: 0;
    height: 34px;
  }

  .wfq-heading-tr {
    display: none;
  }

  table.wfq-customer-portal-list .wfq-heading-tr {
    display: contents;
  }

  .wfq-step-form .wfq-header-steps,
  .wfq-step-form #wfq-inner-content {
    padding-left: 0;
    padding-right: 0;
  }

  .wfq-c-price-div label {
    margin: 0 0 2px;
    text-transform: capitalize;
  }

  .wfq-product-option-price {
    line-height: 100%;
  }
}

@media screen and (max-width: 670px) {
  .wfq-dropdown-list {
    width: 220px;
  }

  #wfq-modal .wfq-modal-content .wfq-heading-tr .wfq-tbl-item,
  .wfq-modal-content #wfq-page-inner-content .wfq-heading-tr .wfq-tbl-item {
    max-width: 650px;
  }

  #wfq-modal .wfq-modal-content .wfq-heading-tr div:not(:first-of-type),
  .wfq-modal-content
    #wfq-page-inner-content
    .wfq-heading-tr
    div:not(:first-of-type) {
    display: none;
  }

  #wfq-modal
    .wfq-modal-content
    .wfq-pro-info
    .wfq-pro-info-item:not(.wfq-product-info),
  .wfq-modal-content
    #wfq-page-inner-content
    .wfq-pro-info
    .wfq-pro-info-item:not(.wfq-product-info) {
    padding: 10px 2px;
    width: max-content;
    flex: unset;
    max-width: 80px;
  }

  .wfq-modal-content .wfq-product-info {
    max-width: 650px;
  }

  .wfq-pro-info {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 480px) {
  .wfq-modal-content .wfq-product-info .wfq-tbl-img-data {
    grid-template-columns: 0.5fr 1fr;
  }

  .wfq-modal-content .wfq-product-info .wfq-tbl-img-data {
    column-gap: 1rem;
  }

  .wfq-footer-section {
    flex-direction: column;
  }

  #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-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;
  }

  .wfq-step-form .wfq-footer-box {
    justify-content: center;
  }

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

  .wfq-pro-info {
    padding: 5px;
  }

  .wfq-date-range {
    gap: 5px;
    flex-wrap: wrap;
  }

  .wfq-date-range.wfq-only-date input {
    width: 100% !important;
    flex: 0 0 100% !important;
  }

  .wfq-product-content-sec,
  .wfq-false-product {
    width: 100%;
  }
}
