.light-gray-text {
    color: #aaa;
}

input.code-input {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

input[name="amount"] {
    padding: 0 5px;
}
.success {
    background: #00987f;
    color: #fff;
}

button.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
button.flex img {
    margin-inline-end: auto;
}

button.flex span {
    margin-inline-end: auto;
}

.button-icon {
    width: 25px;
    padding-inline-end: 5px;
}

.button-icon.invert {
    filter: invert(1);
}

#action-bar {
    display: none;
}

.btn-warning:disabled,
.btn-warning.disabled {
    color: #fff;
}

.bg-gray {
    background-color: var(--bs-gray-100);
}

.highlighted-added-product {
    border-left: 4px solid var(--bs-teal);
}

.loader {
    align-items: center;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    transition: opacity 0.2s linear;
    width: 100%;
    z-index: 9999;
    opacity: 1;
    transform: opacity 1s linear;
}

.blurred {
    filter: blur(4px);
    -webkit-filter: blur(4px);
}

.lds-grid {
    display: inline-block;
    position: relative;
    width: 100px;
    height: 100px;
}

.lds-grid div {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bs-primary);
    animation: lds-grid 1.2s linear infinite;
}

.lds-grid div:nth-child(1) {
    top: 8px;
    left: 8px;
    animation-delay: 0s;
}

.lds-grid div:nth-child(2) {
    top: 8px;
    left: 40px;
    animation-delay: -0.4s;
}

.lds-grid div:nth-child(3) {
    top: 8px;
    left: 74px;
    animation-delay: -0.8s;
}

.lds-grid div:nth-child(4) {
    top: 40px;
    left: 8px;
    animation-delay: -0.4s;
}

.lds-grid div:nth-child(5) {
    top: 40px;
    left: 40px;
    animation-delay: -0.8s;
}

.lds-grid div:nth-child(6) {
    top: 40px;
    left: 74px;
    animation-delay: -1.2s;
}

.lds-grid div:nth-child(7) {
    top: 74px;
    left: 8px;
    animation-delay: -0.8s;
}

.lds-grid div:nth-child(8) {
    top: 74px;
    left: 40px;
    animation-delay: -1.2s;
}

.lds-grid div:nth-child(9) {
    top: 74px;
    left: 74px;
    animation-delay: -1.6s;
}

@keyframes lds-grid {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.form-error {
    border-color: #A66;
}

.alert {
    position: absolute;
    top: 0%;
    left: 2%;
    width: 96%;
}

.sticky-form {
    margin-bottom: 60px;
}

.product-item.highlighted {
    background: yellow;
}

.fridge-qr-code {
    width: 60%;
    margin: 0 auto;
    max-width: 100%;
}

.info-box {
    font-weight: bold;
    background: orange;
    border-radius: 5px;
    padding: 5px;
}

@media (min-width: 768px) {  
    .error-alarm {
        width: 96%;
    }
}

@media (min-width: 992px) {
    .not-sticky-lg {
        position: relative !important;
    }

    .sticky-form {
        margin-bottom: 10px;
    }
}