.fastAddToCartContainer {
    float: left;
    position: relative;
    width: 100%;
    height: 48px;
    margin-top: 10px;
}

.buyContainer {
    display: block;
    width: calc(100% - 2px);
    height: 46px;
    font-weight: 400;
    line-height: 46px;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--secondary);
    color: var(
    --base-aux);
    border: 1px solid var(--secondary);
    transition: all 0.3s ease-out;
    -moz-transition: all 0.2s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.2s ease-out;
}

.notAvailable.buyContainer:hover {
    background: #D9D9D9;
    color: #6B6B6B;
    border:1px solid #6B6B6B;
}
.noStockAlert {
    font-size: 9px;
    top: -9px;
    overflow: hidden;
    display: none;
}

.buyContainer:hover {
    background: #fff;
    color: var(--secondary);
}
.buyText {
    width: 100%;
    height: 46px;
    line-height: 46px;
    float: left;
    /* background: #4a4a4a; */
    text-align: center;
    /* color: white; */
    font-size: 14px;
    font-weight: 400;
}
.fastBuyContainer.visible {
    font-size: 14px;
    font-weight: 700;
    height: 46px;
    line-height: 46px;
    left: 0;
    width: 100%;
    justify-content: space-between;
    bottom: 1px;
}
.productViewContainer:hover .fastBuyContainer {
    bottom: 1px;
}
.fastBuySelectContainer {
    display: flex;
    width: 40%;
    position: relative;
    justify-content: space-between;
    border: 1px solid #4D4D4D;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
}
.fastBuySelectContainer,
.fastBuyAddToCart {
    font-size: 14px;
}
.fastBuyAddToCart {
    line-height: 45px;
    height: 46px;
    border-radius: 10px;
    width: 55%;
    text-align: center;
    color: #fff;
    display: block;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    box-sizing: border-box;
    background: var(--secondary);
    border: 1px solid var(--secondary);
    transition: all 0.3s ease-out;
    -moz-transition: all 0.2s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.2s ease-out;
}
.fastBuyAddToCart:hover {
    color: var(--secondary);
    background: #fff;
}
.fastBuyMinusSign,
.fastBuyPlusSign {
    z-index: 1;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}
#fastAddToCartPopup {
    color: var(--base-aux);
    background: var(--secondary);
    width: 7%;
    padding: 8px 25px 8px 25px;
    position: absolute;
    right: 0px;
    margin-top: 46px;
}
@media screen and (max-width: 768px){
#fastAddToCartPopup {
    width: 35%;
    margin-top: 15px;
}
}