.quantity-widget
{
	width: 110px;
    display: flex;
    justify-content: space-evenly;
    background-color: var(--risalto-beige-light);
    border-radius: 7px;
    overflow: hidden;
    align-items: center;
}

.quantity-widget form
{
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.quantity-widget button
{
    box-sizing: border-box;
	width: 100%;
	height: 100%;
    outline: none;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: inherit;
	text-align: center;
    padding: unset;
    margin-bottom: 3px;
    color: #000;
}

.quantity-widget button:disabled
{
    color: light-dark(rgba(16, 16, 16, 0.3), rgba(255, 255, 255, 0.3));
}

.quantity-widget span
{
	outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-radius: 3px;
    width: 40px;
    padding: 0;
    background-color: transparent;
    border: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-widget form,
.quantity-widget span
{
    height: 46px;
}

@media (min-width:360px)
{
	.quantity-widget
    {
	    width: 127px;
	}
}

@media (min-width:670px)
{
    .quantity-widget form,
    .quantity-widget span
    {
        height: 50px;
    }
}
