
/** Logo Branding */
.branding{
    background: url(../img/logo-ecs.svg) no-repeat;
}

.sft-loading-overlay .branding{
    background: url(../img/logo-ecs-white.svg) no-repeat;
}

.sft-authentication-aside-graphic{
    background-image: url(../img/illustrations/scan-terminal.png);
}

/** Input Style For profit input */
.profit .form-control-solid,
.profit .input-group-text{
    background-color: #dbeaf1 !important;
    font-size: 11px;
    line-height: 2rem;
    border:none
}

[data-bs-theme=dark] .profit .form-control-solid,
[data-bs-theme=dark] .profit .input-group-text{
    background-color: #03293a !important;
}

/** Input Style For final sale */
.final-sale .form-control-solid,
.final-sale .input-group-text{
    background-color: var(--bs-info-bg-subtle) !important;
    font-size: 11px;
    line-height: 2rem;
    border:none
}

.responsive-chart-small{
    height: 375px;
}

.card-icon{
    width: 130px;
    border: none;
}

.card-icon .card-header{
    background: none;
    border: none;
}

.card-icon .card-title{
    font-size: 14px;
}

.card-icon .card-header img{
    width: 35px;
}

.card-allergens .card-header img{
    width: 50px;
}

/** State breadcrumb */
.state-breadcrumb{
	background: var(--bs-warning-bg-subtle);
	width: 100%;
    overflow: hidden;
    font-size: 11px;
    line-height: 18px;
}

.state-breadcrumb-cancelled{
    background: var(--bs-danger-bg-subtle);
}

.state-breadcrumb li{
	padding: 10px 0px 10px 10px;
    height: 76px;
    overflow: hidden;
}

.state-breadcrumb .complete{
	background-color: var(--bs-success-bg-subtle);
}

.state-breadcrumb :nth-last-child(1 of .complete)::before{
    content: '';
    float: right;
    position: relative;
    top: -10px;
    background: var(--bs-warning-bg-subtle);
	border-top: 38px solid transparent;
	border-bottom: 38px solid transparent;
	border-left: 38px solid var(--bs-success-bg-subtle);;
}

.state-breadcrumb-cancelled :nth-last-child(1 of .complete)::before{
    background: var(--bs-danger-bg-subtle);
}

.state-breadcrumb li:last-child::before{
    display: none;
}

.catalog .catalog-sidebar{
    width: 100%;
    max-width: 235px;
}

.catalog .catalog-sidebar .catalog-filter{
    border-right: 1px solid var(--bs-gray-400);
}

.catalog .catalog-sidebar .catalog-filter :first-child hr{
    display: none;
}

.catalog .catalog-cart{
    width: 75px;
    cursor: pointer;
}

.catalog .catalog-cart h1{
    font-size: 42px;
    position: absolute;
}

.catalog .catalog-cart .badge{
    position: absolute;
    margin-left: 30px;
}

.catalog [aria-expanded=true] .collapse-more{
    display: none;
}

.catalog [aria-expanded=false] .collapse-less{
    display: none;
}

.catalog .catalog-article .article-image{
    height: 175px;
}

.catalog .catalog-article .article-cart{
    max-width: 80px;
}

.catalog .catalog-article .article-cart input{
    border-color: var(--bs-primary);
    text-align: center;
}

.catalog .catalog-article .article-cart button{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.catalog .catalog-price > div{
    position: relative;
    margin-top: -50px;
    padding: 5px 10px;
    line-height: 20px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.catalog .catalog-price > div strong{
    font-size: 14px;
}

.catalog .catalog-price > div del{
    font-size: 12px;
    margin-left: 10px;
}

@keyframes overflowInitial {
  to { overflow: initial; }
}

.inventory-progress-chart-wrapper{
    width: 55px;
}

.inventory-progress-chart{
    position: relative;
    background-color: var(--bs-body-bg);
    border-radius: 100%;
    height: 100%;
    aspect-ratio: 1;
    display: grid;
    align-items: center;
}

.inventory-progress-chart .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
            var(--bs-primary) calc(var(--progress) * 1%), /* Filled part */
         var(--bs-body-bg) 0% /* Unfilled part */
    );
}

.inventory-progress-chart .progress-percentage{
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    background-color:  var(--bs-body-bg);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    font-size: 12px;
}