.woocommerce div.product form.cart div.quantity:not(.hidden),
.quantity:not(.hidden)
{
    height: 50px;

    .screen-reader-text
    {
        display: none;
    }

    &.custom
    {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: auto;
        margin: 0 23px 0 0;

        @media #{$xmedium-down} {
            margin-right: 15px;
        }

        input[type="number"] {
            -moz-appearance: textfield;
        }

        .plus-btn,
        .minus-btn
        {
            width: 16px;
            height: 16px;
            font-size: 16px;

            i
            {
                vertical-align: top;
                top: -2px;
                position: relative;

                &:before
                {
                    top: -1px;
                    position: relative;
                }
            }

            &:hover
            {
                opacity: .4;
            }
        }

        .plus-btn .spk-icon-plus
        {
            &:before
            {
                content: '\e912';
            }
        }

        .minus-btn .spk-icon-minus
        {
            &:before
            {
                content: '\e913';
            }
        }

        input.custom-qty
        {
            width: 45px;
            height: 50px;
            border: none;
            display: inline-block;
            text-align: center;
            font-weight: bold;
            outline: none;
            margin-bottom: 0;
            font-size: 16px;
            background: transparent;
            padding: 7px 8px;

            &::-webkit-inner-spin-button,
            &::-webkit-outer-spin-button {
              -webkit-appearance: none;
              margin: 0;
            }

            &:focus
            {
                background: transparent;
            }
        }
    }

    &.default
    {
        margin: 0 23px 0 0;

        @media #{$xmedium-down} {
            margin-right: 15px;
        }

        .default-qty
        {
            background: none;
            border-top: 0;
            border-left: 0;
            border-right: 0;
            border-bottom: 2px solid;
            display: block;
            font-size: 16px;
            font-weight: bold;
            float: left;
            height: 50px;
            margin-bottom: 0;
            width: 60px;
            text-align: center;
            padding-right: 0;
        }
    }
}
