.labelTitle {
    font-weight: 400 !important;
}

.star-align {
    display: flex;
    align-items: center;
}

.star-gap {
    gap: 0.5rem !important;
}

.custom-text-input {
    border-radius: 5px;
    font-weight: 400;
    outline: none;
    width: 100%;
    padding: 17px 24px;
    background-color: transparent !important;
    border: 1px solid rgb(238, 241, 242);
    color: grey;
    line-height: 1;
}

.custom-title {
    font-size: 1.25rem !important;
}

.custom-text-input:focus {
    box-shadow: none;
}

.custom-alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.custom-alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.custom-btn {
    position: relative;
    border-radius: 5px;
    border: 1px solid transparent;
    font-weight: 500;
    font-family: var(--body-font);
    color: hsl(var(--white)) !important;
    z-index: 1;
    line-height: 1;
    padding: 13px 24px;
}

.custom-btn-success {
    color: #fff !important;
    background-color: #198754;
    border-color: #198754;
}
    .custom-btn-success:hover {
        background-color: #218838;
    }
.custom-btn-danger {
    color: #fff !important;
    background-color: #dc3545;
    border-color: #dc3545;
}
    .custom-btn-danger:hover {
        background-color: #c82333;
    }
.custom-btn-secondary {
    color: #fff !important;
    background-color: #6c757d;
    border-color: #6c757d;
}

.custom-mb-2 {
    margin-block-end: 0.225rem !important;
}
.custom-mb-10 {
    margin-block-end: 0.65rem !important;
}
.custom-mb-20 {
    margin-block-end: 1.25rem !important;
}

.custom-mt-2 {
    margin-block-start: 0.225rem !important;
}
.custom-mt-10 {
    margin-block-start: 0.65rem !important;
}
.custom-mt-20 {
    margin-block-start: 1.25rem !important;
}

.custom-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

    .custom-header .custom-btn-close {
        padding: .5rem .5rem;
        margin: -.5rem -.5rem -.5rem auto;
    }

.custom-btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center / 1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5;
}
.custom-header-text {
    font-weight: 400!important;
    font-size: 21px!important;
}
.bg-label-success {
    background-color: #dff7e9 !important;
    color: #28c76f !important;
}
.bg-label-primary {
    background-color: #eae8fd !important;
    color: #7367f0 !important;
}
.bg-label-warning {
    background-color: #fff1e3 !important;
    color: #ff9f43 !important;
}
.bg-label-danger {
    background-color: #fce5e6 !important;
    color: #ea5455 !important;
}
.custom-badge {
    display: inline-block;
    padding: 0.49em 1em;
    font-size: 0.81em;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}
.rounded-25 {
    border-radius:25px!important;
}
#productCart .cart-inputs {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

#productCart .cart-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    height: 45px;
}

#productCart .cart-qty-btn {
    background: transparent;
    border: none;
    color: #6c757d;
    font-size: 0.7rem;
    cursor: pointer;
    padding: 0.3rem;
}

    #productCart .cart-qty-btn:hover {
        color: #000;
    }

#productCart .cart-qty-input {
    width: 3rem;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #212529;
}

    #productCart .cart-qty-input:focus {
        outline: none;
    }