﻿.flyout-cart .count {
  position: relative;
}

  .flyout-cart .count a {
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
  }

    .flyout-cart .count a i {
      margin-right: 5px;
      font-size: 20px;
      font-weight: 500;
      vertical-align: middle;
    }

      .flyout-cart .count a i.icon-shopping-cart-1:before {
        content: "\e979";
      }

  .flyout-cart .count .close-flyout-cart {
    float: right;
    font-weight: 300;
    font-size: 28px;
    position: absolute;
    right: 10px;
    top: 20px;
    transform: translateY(-50%);
  }

.flyout-cart .flyoutcart-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.buy-quantity-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

  .buy-quantity-wrapper .buynow-btn {
    width: calc(50% - 3px);
    margin-right: 0;
    padding: 6px 3px;
    background: var(--secondary-color);
    color: var(--white);
    border: 0;
    text-transform: capitalize;
    border-radius: 5px;
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
  }

@media (min-width: 556px) {
  .buy-quantity-wrapper .buynow-btn {
    border-radius: 10px;
    padding: 12px 5px;
    font-size: 14px;
  }
}

.buy-quantity-wrapper .qty-wrapper {
  width: calc(50% - 5px);
  display: flex;
  position: relative;
  margin: auto;
}

  .buy-quantity-wrapper .qty-wrapper .qty-input {
    width: 100%;
    height: 24px;
    border: 1px solid #E7E7E7;
    text-align: center;
    border-radius: 6px;
  }

@media (min-width: 556px) {
  .buy-quantity-wrapper .qty-wrapper .qty-input {
    height: 40px;
  }
}

.buy-quantity-wrapper .qty-wrapper button {
  border: none;
  background: var(--white);
  color: var(--black);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  cursor: pointer;
}

@media (min-width: 556px) {
  .buy-quantity-wrapper .qty-wrapper button {
    width: 30px;
    height: 30px;
    background: #E3EAF5;
    font-size: 20px;
  }
}

.buy-quantity-wrapper .qty-wrapper button.btn-decrease {
  left: 4px;
}

.buy-quantity-wrapper .qty-wrapper button.btn-increase {
  right: 4px;
}

.product-details-page .buynow-wrapper {
  display: none;
}
