/* Кнопка В корзину */
.aw_add_to_cart_button {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: #553285;
  text-align: center;
  border-radius: 8px;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.33;
  height: 50px;
  color: #fcfdff;
  outline: none;
  bottom: 0;
  margin-top: 14px;
}
.aw_cartcalc {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.aw_cartcalc .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  width: 48px;
  height: 50px;
  background: #553285;
  position: relative;
  border-radius: 8px;
  border: none;
  outline: none;
  flex-shrink: 0;
  font-size: 0;
}
.aw_cartcalc .aw_qty {
  box-sizing: border-box;
  display: block;
  padding: 12px;
  gap: 8px;
  flex-grow: 1;
  height: 50px;
  width: 100%;
  background: #fcfdff;
  border: 1.5px solid #e7e4ed;
  border-radius: 8px;
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #39393b;
}
.aw_cartcalc .aw_decrease::before,
.aw_cartcalc .aw_increase::before,
.aw_cartcalc .aw_increase::after {
  display: flex;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -8px;
  height: 2px;
  width: 16px;
  border-radius: 2px;
  background-color: #fff;
}
.aw_cartcalc .aw_increase::after {
  transform: rotate(90deg);
}
