#fastAddToCartPopup {
    display: block;
}
#fastAddToCartPopup.notVisible{
    display: none;
}

.buyContainer {
    display: block;
    width: 90%;
    height: 30px;
    line-height: 30px;
    left: 5%;
    float: left;
    position: absolute;
}

.buyText {
    width: 100%;
    height: 30px;
    float: left;
    /* background: #4a4a4a; */
    text-align: center;
    /* color: white; */
}

.fastBuyContainer {
    display: none;
}

.fastBuyContainer.visible {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 90%;
    left: 5%;
    height: 30px;
    position: absolute;
    line-height: 30px;
    bottom: -30px;
}

.productViewContainer:hover .fastBuyContainer {
    bottom: 13px;
}

.fastBuySelectContainer {
    display: flex;
    width: 48%;
    position: relative;
    justify-content: space-between;
}

.fastBuySelectContainer,
.fastBuyAddToCart {
    font-size: 12px;
}

.fastBuyContainer .productQuantityFastBuy {
    text-align: center;
}

.fastBuyAddToCart {
    line-height: 30px;
    width: 48%;
    text-align: center;
    /* color: white; */
    display: block;
    position: relative;
    box-sizing: border-box;
    /* background: #4a4a4a; */
}

.addedToCartBadge.visible {
    display: block;
}

.addedToCartBadge {
    display: none;
    border-radius: 100%;
    /* color: #fff; */
    /* background: #4a4a4a; */
    width: 22px;
    height: 22px;
    position: absolute;
    right: 4.2%;
    top: 46px;
}

.addedToCartBadge::before {
    content: "";
    background-image: url(../../files/cartIcon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 24%;
    left: 25%;
}

.noStockAlert {
    font-size: 9px;
    top: -9px;
    overflow: hidden;
}

.noStockAlert.open {
    bottom: -2px;
}

.noStockAlert::before {
    background-size: 9px;
    width: 10px;
    height: 10px;
    left: 7%;
}

.productQuantityFastBuy {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.fastBuyContainer .productQuantityFastBuy {
    text-align: center;
}

.fastBuyContainer .fastBuyMinusSign,
.fastBuyContainer .fastBuyPlusSign {
    margin-right: unset;
    width: 40%;
}

.fastBuyMinusSign,
.fastBuyPlusSign {
    z-index: 1;
    text-align: center;
}

