﻿/* Chrome, Safari, Edge, Opera */
.adjust_input::-webkit-outer-spin-button,
.adjust_input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.adjust_input[type=number] {
    -moz-appearance: textfield;
}

.adjust_input:focus, .adjust_btn:focus {
    outline: none;
}


.adjustable_input-wrapper {
    display: flex;
    /* grid-template-columns: repeat(3, minmax(35px, 1fr)); */
    height: 34px;
    width: 120px;
    flex-direction: row;
    justify-content: center;
}

.confirm-order-adjustable_input-wrapper {
    align-items: center;
}

.adjust_btn-wrapper {
    height: 100%;
    width: 100%;
}

    .adjust_btn-wrapper .adjust_btn.disabled {
        pointer-events: none;
    }

.adjust_btn {
    height: 100%;
    width: 100%;
    cursor: pointer;
    color: #E1E1E1;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    transition: transform 100ms ease;
    padding: 0;
}

.thin-minus-icon {
    width: 14px; /* Width of the minus sign */
    height: 1.7px; /* Thickness of the minus sign */
    background-color: #000000; /* Color of the line */
    display: inline-block;
}

.thin-plus-icon {
    position: relative;
    width: 14px; /* Width of the plus sign */
    height: 14px; /* Height of the plus sign */
}

    /* Horizontal line */
    .thin-plus-icon::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1.1px; /* Thickness of the horizontal line */
        background-color: #000000;
        transform: translateY(-50%);
    }

    /* Vertical line */
    .thin-plus-icon::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        width: 1.1px; /* Thickness of the vertical line */
        height: 100%;
        background-color: #000000;
        transform: translateX(-50%);
    }

.adjust_btn.active {
    color: var(--text-second-color);
}

    .adjust_btn.active:hover {
        background-color: var(--text-second-color);
        color: #fff;
    }

.adjust_btn--decrease.active:active {
    transform: translateY(3px);
}

.adjust_btn--increase.active:active {
    transform: translateY(-3px);
}

.adjust_input, .adjust_btn {
    border: solid 1px #9B9B9B;
}



.adjust_input {
    border-left: 0;
    border-right: 0;
    color: #212226;
    font-size: 1em;
    text-align: center;
    max-width: 45%;
    border-radius: unset;
}

.adjust_btn--decrease {
    border-radius: 5px 0px 0px 5px;
}

.adjust_btn--increase {
    border-radius: 0px 5px 5px 0px;
}

@media only screen and (max-width: 1024px) {
    .adjust_btn--increase.active:active {
        transform: unset;
    }
    .adjust_btn--decrease.active:active {
        transform: unset;
    }
}
