/*Mouse Scroll Down Animation
------------------------------*/
.mouse {
  width: 50px;
  height: 90px;
  border: 3px solid var(--bg-light);
  border-radius: 60px;
  position: relative;
}
.mouse::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-light);
  border-radius: 50%;
  opacity: 1;
  animation: wheel 2s infinite;
  -webkit-animation: wheel 2s infinite;
}
@keyframes wheel {
  to {
    opacity: 0;
    top: 60px;
  }
}
@-webkit-keyframes wheel {
  to {
    opacity: 0;
    top: 60px;
  }
}
@media (max-width: 767px) {
  .mouse-scroll-wrapper {
    position: absolute !important;
  }
}
/*End of Mouse Scroll Down Animation*/
/*Bricks Content Gap for Product Descriptions
---------------------------------------------*/
.brxe-product-content {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-s);
}
/*End of Bricks Content Gap*/
/* Woocommerce Product Price Colour Adjustment
-----------------------------------------------*/
.fb-single-product__price .price del, .fb-single-product__price .price > span {
  color: var(--text-dark);
  font-weight: 700;
}
/* Wp Data Table */
div .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable th, .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody td, .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable th, .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody td {
  background-color: transparent !important;
}
