/**
* 2007-2021 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2021 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
.ecommaddtocart_productlist {
    display: flex;
    justify-content: center;
    width: 100%;
}

.ecommaddtocart_productlist .contentbuttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 80%;

}

.ecommaddtocart_productlist .contentbuttons .product-quantity {
    width: 110px;
    display: flex;
}

.ecommaddtocart_productlist .contentbuttons .product-quantity > div {
    display: flex;
    height: 50px;
}

.ecommaddtocart_productlist .contentbuttons .product-quantity > div .input-group {
    width: 38px;
    padding: 0;
    border: none;
    text-align: center;
    height: 100%;
}

.ecommaddtocart_productlist .contentbuttons .product-quantity > div > .input-group-btn-vertical {
    width: 1px;
    height: 100%;
}

.ecommaddtocart_productlist .contentbuttons .product-quantity > div > .input-group-btn-vertical > * {
    width: 100%;
    padding: 0;
    height: 25px;
    border: none;
    line-height: 27px;
}

.ecommaddtocart_productlist .contentbuttons .product-quantity > div > .input-group-btn-vertical i {
    font-size: 14px;
}

.ecommaddtocart_productlist form .product-quantity {
    padding-right: 10px;
    position: relative;
    width: 58px;
}

.ecommaddtocart_productlist form .product-quantity .nice-select {
    position: absolute;
    top: 0;
    z-index: 11;
    height: 45px;
    border-radius: 0;
    background: #f5f5f5;
    padding-right: 20px;
    width: 50px !important;
    padding-left: 13px;
    text-align: center;
}

.ecommaddtocart_productlist form .product-quantity .current {
    font-size: 16px;
    color: black;
    font-weight: 300;
}

.ecommaddtocart_productlist form {
    display: flex;
}

.ecommaddtocart_productlist form .add-to-cart-productlist {
    width: calc(100% - 110px);
    height: 50px;
    border: none;
    letter-spacing: 0.8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.contentbuttons > div.product-quantity .input-group.bootstrap-touchspin .input-group.ecommaddtocart-quantity {
    background-color: #E6E6E6;
    border-radius: 15px !important;
    margin-right: 20px;
    padding-right: 15px;
}

.contentbuttons > div.product-quantity .input-group.bootstrap-touchspin .input-group-btn-vertical {
    position: absolute;
}

.contentbuttons > div.product-quantity .input-group.bootstrap-touchspin .input-group-btn-vertical > button {
    width: 10px;
    left: 40px;
}

.contentbuttons > div.product-quantity .input-group.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    top: 25px;
}

.contentbuttons > button.add-to-cart-productlist {
    width: 95%;
    background-color: black;
    border: none;
    padding: 10px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    color: white;
    height: 50px;
    transition: all 0.15s ease-in, opacity 0.15s linear;
}


#add-to-cart-or-refresh > div > div > div.ecommaddtocart_productlist > div > button:hover {
    background-color: #FA952A;
    color: black;
}

@media (max-width: 767px) {
    .contentbuttons > div.product-quantity .input-group.bootstrap-touchspin .input-group-btn-vertical > button {
        left: 33px;
    }

    #add-to-cart-or-refresh > div > div > div.ecommaddtocart_productlist > div > div > div > span.input-group-btn-vertical > button {
        width: 35px;
    }
}