h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 0;
}
.input-spinner .form-input {
    border-left: none;
    border-right: none
}
.card-product .btn-primary,
.card-product .btn-secondary {
    width: 100%;
}
.card-product input {
    border-color: var(--fc-gray-300) !important;
}

.btn-dark {
    --fc-btn-color: #fff;
    --fc-btn-bg: #1e3e33;
    --fc-btn-border-color: #1e3e33;
    --fc-btn-hover-color: #fff;
    --fc-btn-hover-bg: #284e41;
    --fc-btn-hover-border-color: #284e41;
    --fc-btn-focus-shadow-rgb: 38, 64, 75;
    --fc-btn-active-color: #fff;
    --fc-btn-active-bg: #284e41;
    --fc-btn-active-border-color: #284e41;
    --fc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    --fc-btn-disabled-color: #fff;
    --fc-btn-disabled-bg: #1e3e33;
    --fc-btn-disabled-border-color: #1e3e33;
}

.btn-primary {
    box-shadow: 0 3px #145421;
}

.btn-secondary {
    box-shadow: 0 3px #000;
}

.btn-light:not(.btn-sm, .calc-percentage) {
    box-shadow: 0 3px #999999;
}

.btn-white {
    box-shadow: 0 3px #000;
}

.btn-light-primary {
    box-shadow: 0 3px #91b191;
}

.btn-danger {
    box-shadow: 0 3px #931e1e;
}

.btn-warning {
    box-shadow: 0 3px #9b7b1a;
}

.bg-light-success {
    background: #daeede !important;
}

.placeholder-shimmer {
    border-radius: 4px;
    background: #f0f3f2;
    position: relative;
    overflow: hidden;
    color: transparent;
    display: block;
}
.placeholder-shimmer::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, transparent 0%, #ffffff 50%, transparent 100%);
    animation: shimmer 1.2s infinite;
}
@keyframes shimmer {
    100% {
        left: 100%;
    }
}

.offcanvas-backdrop {
    background: rgb(0 0 0 / 29%);
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1040;
    backdrop-filter: blur(5px);
}
.offcanvas-backdrop.show {
    opacity: 1;
}

.modal-backdrop {
    background: rgb(0 0 0 / 29%);
    backdrop-filter: blur(5px);
}
.modal-backdrop.show {
    opacity: 1;
}
.ellipsis {
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.btn-soft-info:focus {
    background-color: rgba(1, 107, 248, .125);
    color: #016bf8;
}

.input-spinner .button-minus,
.input-spinner .button-plus {
    width: 30%;
    --fc-btn-border-radius: .5rem;
}

.input-spinner .quantity-field {
    width: 40% !important;
}

input[type=password] {
    letter-spacing: 3px;
}