@keyframes wpcsb-spinner {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes wpcsb-spinner {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.wpcsb-wrapper {
  z-index: 999;
  width: 100%;
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  transition: all 0.2s;
  transform: translate3d(0, 100%, 0);

  &.wpcsb-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  &.wpcsb-wrapper-top {
    transform: translate3d(0, -100%, 0);
    top: 0;
    bottom: auto;
    border-width: 0 0 1px 0;
    -webkit-box-shadow: 0 10px 10px rgb(0 0 0 / 5%);
    box-shadow: 0 10px 10px rgb(0 0 0 / 5%);

    &.wpcsb-active {
      transform: translate3d(0, 0, 0);
    }
  }

  .wpcsb-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 15px;
    background-color: #ffffff;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: #e5e5e5;
    -webkit-box-shadow: 0 -10px 10px rgb(0 0 0 / 5%);
    box-shadow: 0 -10px 10px rgb(0 0 0 / 5%);

    .wpcsb-product {
      width: 100%;
      max-width: 1170px;
      display: flex;
      align-items: center;
      justify-content: space-between;

      .wpcsb-product-info {
        display: flex;
        align-items: center;
        flex-grow: 1;

        .wpcsb-product-image {
          width: 48px;
          flex: 0 0 48px;
          margin-right: 10px;

          img {
            width: 100%;
            height: auto;
          }
        }

        .wpcsb-product-data {
          flex-grow: 1;
          display: flex;
          align-items: center;
          justify-content: space-between;

          > div {
            margin-right: 10px;
          }
        }

        .wpcsb-product-name {
          flex-grow: 1;
        }

        .wpcsb-product-btn {
          .woosq-btn, .woosc-btn, .woosw-btn {
            margin-right: 5px;
          }
        }
      }

      .wpcsb-product-action {
        .wpcsb-add-to-cart {
          display: flex;
          align-items: center;

          > div {
            margin-left: 5px;
          }
        }

        .single_add_to_cart_button {
          margin-bottom: 0;
        }

        .variations_form {
          margin: 0;
          display: flex;
          align-items: center;

          .variations {
            margin: 0;
            width: auto;

            td {
              padding: 5px;
            }
          }

          .reset_variations {
            position: absolute;
          }

          .single_variation_wrap {
            .single_variation, .woosq-btn, .woosc-btn, .woosw-btn {
              display: none !important;
            }

            .woocommerce-variation-add-to-cart {
              display: flex;
              align-items: center;

              > * {
                margin-left: 5px;
              }
            }
          }
        }
      }
    }
  }
}

.wpcsb-disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

@media screen and (max-width: 767px) {
  .wpcsb-wrapper .wpcsb-container .wpcsb-product {
    flex-direction: column;
  }

  .wpcsb-wrapper .wpcsb-container .wpcsb-product-action {
    margin-top: 10px;
  }
}