.fastAddToCartContainer {
    --fast-add-height: 36px;
    --fast-add-gap: 5px;
    --fast-add-radius: 8px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    height: var(--fast-add-height);
    margin-top: 10px;
    font-weight: 400;
}

.buyContainer {
    display: block;
    width: 100%;
    height: var(--fast-add-height);
    line-height: var(--fast-add-height);
    left: 0;
    font-weight: 400;
    bottom: 0;
    background: var(--secondary);
    color: var(--button-font-color);
    border-radius: var(--fast-add-radius);
    border: 1px solid var(--secondary);
    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;
}

.fastAddToCartContainer>.buyContainer:not(.notAvailable) {
    display: none;
}

.buyContainer:hover {
    background: #075d9e;
    color: var(--button-font-color);
    border-color: #075d9e;
}

.notAvailable.buyContainer {
    background: var(--lighter-base);
    color: var(--base);
    border: 1px solid var(--lighter-base);
    cursor: not-allowed;
}

.buyText {
    width: 100%;
    height: var(--fast-add-height);
    line-height: var(--fast-add-height);
    font-weight: 400;
    float: left;
    text-align: center;
    font-size: var(--body-font-size);
}

.fastBuyContainer.visible,
.fastAddToCartContainer>.buyContainer:not(.notAvailable)+.fastBuyContainer {
    display: flex;
    align-items: center;
    position: absolute;
    font-size: var(--body-font-size);
    font-weight: 400;
    height: var(--fast-add-height);
    line-height: var(--fast-add-height);
    left: 0;
    width: 100%;
    min-width: 0;
    gap: var(--fast-add-gap);
    justify-content: space-between;
    bottom: 0;
}

.fastAddToCartContainer>.notAvailable+.fastBuyContainer {
    display: none;
}

.productViewContainer:hover .fastBuyContainer {
    bottom: 0;
}

.fastBuySelectContainer {
    display: flex;
    width: auto;
    min-width: 50px;
    flex: 0 1 44%;
    height: var(--fast-add-height);
    font-size: var(--body-font-size);
    position: relative;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #c9c9c9;
    border-radius: var(--fast-add-radius);
    overflow: hidden;
    box-sizing: border-box;
    background: var(--base-aux);
}

.fastBuyAddToCart {
    line-height: var(--fast-add-height);
    height: var(--fast-add-height);
    border-radius: var(--fast-add-radius);
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    text-align: center;
    color: var(--button-font-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    position: relative;
    font-weight: 300;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    background: var(--secondary);
    border: 1px solid var(--secondary);
    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;
}

.fastBuyAddToCart:hover {
    background: #075d9e;
    color: var(--button-font-color);
    border-color: #075d9e;
}

.fastBuyAddToCart::before {
    content: "";
    width: 13px;
    height: 13px;
    display: block;
    flex: 0 0 auto;
    background-image: url(../../files/cart.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.fastBuyMinusSign,
.fastBuyPlusSign {
    z-index: 1;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--base);
    line-height: var(--fast-add-height);
    cursor: pointer;
}

.fastBuyContainer .fastBuyMinusSign,
.fastBuyContainer .fastBuyPlusSign {
    width: 26px;
    flex: 0 0 26px;
}

.fastBuyContainer .productQuantityFastBuy {
    position: static;
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    height: var(--fast-add-height);
    line-height: var(--fast-add-height);
    border: 0;
    background: transparent;
    color: var(--base);
    font-size: 11px;
    font-weight: 400;
    box-sizing: border-box;
    padding: 0;
    outline: none;
    text-align: center;
}

.addedToCartBadge {
    background: var(--secondary);
}

@media screen and (max-width: 768px) {
    .fastBuyAddToCart {
        font-size: 10px;
        font-weight: 300;
    }

    .fastAddToCartContainer {
        margin-top: 0;
    }

    .fastBuyContainer .fastBuyMinusSign,
    .fastBuyContainer .fastBuyPlusSign {
        width: 24px;
        flex: 0 0 22px;
    }
}