/* item quantity */
.item-quantity-input {
    width: 40px;
    height: 45px;
    background-color: #fff;
    border: #000 1px solid;
    font-size: 16px;
    font-weight: var(--font-weight);
    text-align: center;
    border-width: 1px 0px 1px;
    border-radius: 0;
}

.item-quantity-input:focus {
    outline: 0;
}

input[type="number"].item-quantity-input::-webkit-inner-spin-button,
input[type="number"].item-quantity-input::-webkit-outer-spin-button {
    display: none;
}

.item-quantity-group {
    display: inline-flex;
    width: 100%;
    margin-top: 10px;
    position: relative;
    align-items: center;
    font-weight: var(--font-weight);

    .delete-icon {
        display: none;
        position: absolute;
        right: -20px;
        width: 12px;
        border: 0px;
        cursor: pointer;
    }

    .quantity-loader,
    .quantity-check {
        display: none;
        position: absolute;
        right: 40px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .quantity-loader {
        animation: rotate 1s infinite linear;
        transform-origin: center;
        width: 15px;
        height: 15px;
    }

    .quantity-check {
        width: 19px;
        height: 15px;
    }


    &.small {
        width: 90px;

        .item-quantity-input {
            width: 30px;
            height: 34px;
            font-size: 16px;
        }

        .item-quantity-btn {
            width: 30px;
            height: 34px;
            line-height: 30px;
            font-size: 18px;

            &.item-quantity-minus {
                padding-left: 9px;
                line-height: 31px;
            }

            &.item-quantity-plus {
                padding-right: 8px;
            }
        }

        .quantity-loader,
        .quantity-check {
            background-size: cover;
            z-index: 1;
        }

        .quantity-loader {
            right: 25px;
            width: 10px;
            height: 10px;
        }

        .quantity-check {
            right: 24px;
            width: 10px;
            height: 8px;
        }
    }
}

.product-list-item {
    .item-quantity-group {

        .quantity-loader,
        .quantity-check {
            display: none;
            position: absolute;
            right: 30px;
        }
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.item-quantity-btn {
    width: 40px;
    height: 45px;
    line-height: 42px;
    color: #555;
    font-size: 16px;
    font-weight: var(--font-weight);
    text-align: center;
    border: #000 1px solid;
    cursor: pointer;
    user-select: none;
    flex: auto;
    border-radius: 0px;
    background: none;


    &.item-quantity-minus {
        border-width: 1px 0px 1px 1px;
        text-align: left;
        padding-left: 15px;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }

    &.item-quantity-plus {
        border-width: 1px 1px 1px 0px;
        text-align: right;
        padding-right: 15px;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }
}

@media(max-width:1124px) {

    .item-quantity-group.small {
        width: 100%;
    }
}